This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git


 discard 5f0dfcd  Revert "[CPP] Remove static line based object reg in favor of 
ObjectDef (#116)"
     add df04392  [CMake] Enable automatic cmake config discovery (#124)
     add a97b7c6  [TEST] Fix the tensor loading order in test (#128)
     add fc2630f  feat: Add a method to define initializer (#127)
     add 9829dec  chore: cleanup old DLPack related defs (#129)
     add f679fe5  [ABI] Refactor the TVMFFIEnvTensorAllocator to align with 
DLPack (#131)
     add d183a95  [DLL] Explicit link libtvm_ffi_testing from cython (#132)
     add 4206f16  [CORE] Use new for singleton to prevent de-alloc order issues 
(#133)
     add 2002e28  chore(build): Fix Windows Build (#134)
     add f0145b4  Fix comments about initialization method (#137)
     add ef54bda  [fix] Change Py_DECREF to Py_DecRef and make function static 
members (#138)
     add 78d3c42  chore: Upgrade Python dependency (#135)
     add 33b3768  [CMAKE] Hide symbols from libbacktrace (#139)
     add 59c91c1  [TEST] Add testcase about subclassing an ffi.Function (#140)
     add af9fc06  chore: enable issues (#141)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5f0dfcd)
            \
             N -- N -- N   refs/heads/dev (af9fc06)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                      |   6 +
 .github/workflows/ci_test.yml                  |   2 +-
 CMakeLists.txt                                 |  10 +-
 cmake/Utils/AddLibbacktrace.cmake              |   8 +-
 docs/guides/cpp_guide.md                       |   2 +-
 docs/guides/packaging.md                       |   3 -
 docs/guides/python_guide.md                    |  12 +-
 examples/packaging/CMakeLists.txt              |   7 +-
 examples/packaging/README.md                   |   1 +
 examples/quick_start/CMakeLists.txt            |   8 +-
 examples/quick_start/README.md                 |   1 +
 include/tvm/ffi/base_details.h                 |   4 +
 include/tvm/ffi/c_api.h                        |  18 ---
 include/tvm/ffi/container/tensor.h             |  61 +++-------
 include/tvm/ffi/error.h                        |   2 +-
 include/tvm/ffi/extra/c_env_api.h              |  28 +++--
 include/tvm/ffi/object.h                       |  51 +++++----
 include/tvm/ffi/reflection/registry.h          | 113 +++++++++++++------
 pyproject.toml                                 |  29 ++++-
 python/tvm_ffi/__init__.py                     |  16 ++-
 python/tvm_ffi/_optional_torch_c_dlpack.py     | 148 +++++++++++++------------
 python/tvm_ffi/cython/base.pxi                 |  18 +--
 python/tvm_ffi/cython/tvm_ffi_python_helpers.h |  35 ++----
 python/tvm_ffi/libinfo.py                      |   4 +-
 python/tvm_ffi/module.py                       |  27 +++++
 python/tvm_ffi/testing.py                      |   6 -
 rust/tvm-ffi-macros/src/utils.rs               |   2 +-
 rust/tvm-ffi-sys/src/c_env_api.rs              |  10 +-
 src/ffi/container.cc                           |   1 -
 src/ffi/extra/env_context.cc                   |  62 ++++++++---
 src/ffi/object.cc                              |  33 ++++--
 src/ffi/testing/testing.cc                     |  18 ++-
 tests/cpp/CMakeLists.txt                       |   2 +-
 tests/cpp/extra/test_c_env_api.cc              |  86 ++++++++++++++
 tests/cpp/test_object.cc                       |   4 +-
 tests/cpp/test_reflection.cc                   |   6 +-
 tests/cpp/test_tensor.cc                       |  25 ++---
 tests/python/test_dlpack_exchange_api.py       |   8 +-
 tests/python/test_function.py                  |  34 ++++++
 tests/python/test_load_inline.py               |  40 ++++---
 40 files changed, 599 insertions(+), 352 deletions(-)
 create mode 100644 tests/cpp/extra/test_c_env_api.cc

Reply via email to