This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from d2f9f254d2 Use std::string_view, remove experimental or pre-14
variants, NFC (#12460)
add 073304dadb [TVM PyTorch Integration] libstdc++ CXX11 ABI Compatibility
& boolean tensor support (#12232)
No new revisions were added by this update.
Summary of changes:
apps/pt_tvmdsoop/tests/test_as_torch.py | 7 +-
apps/pt_tvmdsoop/tests/test_boolean_tensor.py | 129 ++++++++++
cmake/modules/contrib/PT_TVMDSOOP.cmake | 68 ++++--
python/tvm/contrib/torch/__init__.py | 25 +-
python/tvm/contrib/torch/module.py | 17 ++
python/tvm/contrib/torch/pytorch_tvm.py | 21 ++
.../torch/pt_call_tvm/RuntimeModuleWrapper.cc | 259 --------------------
.../tvm_module_wrapper/RuntimeModuleWrapperTVM.cc | 266 +++++++++++++++++++++
.../RuntimeModuleWrapperTorch.cc | 215 +++++++++++++++++
.../torch/tvm_module_wrapper/runtime_bridge.h | 116 +++++++++
10 files changed, 844 insertions(+), 279 deletions(-)
create mode 100644 apps/pt_tvmdsoop/tests/test_boolean_tensor.py
delete mode 100644 src/contrib/torch/pt_call_tvm/RuntimeModuleWrapper.cc
create mode 100644
src/contrib/torch/tvm_module_wrapper/RuntimeModuleWrapperTVM.cc
create mode 100644
src/contrib/torch/tvm_module_wrapper/RuntimeModuleWrapperTorch.cc
create mode 100644 src/contrib/torch/tvm_module_wrapper/runtime_bridge.h