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

leandron pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git


 discard 485e910242 Add #12130 PR for testing.
 discard 9d27bd380d Update TensorFlow to release 2.9
     add bd56231325 Use std::optional instead of dmlc::optional, NFC (#12443)
     add 1ba17fe48b [HotFix] Op is not bound to any variables (#12401)
     add 9e42166fe7 [Arith] Parse > and >= bounds in ConstIntBoundAnalyzer 
(#12457)
     add b831b06f36 Expose `Struct/Tuple`-related TVM Builtins (#12452)
     add 29ce66eeb4 Change tir::GetPointerType to return 
std::optional<DataType> (#12458)
     add 1a9faeb77e [TVMScript] Printer IRDocsifier (#12396)
     add 247c54b97d Use std::make_unique instead of std::unique_ptr(new ...), 
NFC (#12459)
     add a1ddfb592f Remove uses of std::iterator, NFC (#12461)
     add 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)
     add bcc7cde95c Expose Missing TIR Builtins to Python (#12466)
     new 1149a225eb Update TensorFlow to release 2.9
     new 01a1034cc5 Add #12130 PR for testing.

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   (485e910242)
            \
             N -- N -- N   refs/heads/ci-docker-staging (01a1034cc5)

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.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 apps/cpp_rpc/win32_process.cc                      |   4 +-
 apps/hexagon_api/CMakeLists.txt                    |   5 +-
 apps/hexagon_launcher/cmake/android/CMakeLists.txt |   2 +-
 apps/hexagon_launcher/cmake/hexagon/CMakeLists.txt |   2 +-
 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 ++++--
 conda/recipe/build.sh                              |   2 +-
 docker/Dockerfile.ci_riscv                         |   3 +
 include/tvm/runtime/container/string.h             |  35 +--
 include/tvm/runtime/logging.h                      |   3 +-
 include/tvm/script/printer/ir_docsifier.h          | 189 +++++++++++++++
 include/tvm/script/printer/traced_object_functor.h |  21 ++
 include/tvm/support/span.h                         |  12 +-
 include/tvm/support/with.h                         |  30 +++
 include/tvm/target/target_kind.h                   |   6 +-
 include/tvm/tir/op.h                               |   1 +
 python/setup.py                                    |   5 +-
 python/tvm/contrib/cutlass/build.py                |   2 +-
 python/tvm/contrib/emcc.py                         |   2 +-
 python/tvm/contrib/torch/__init__.py               |  25 +-
 python/tvm/contrib/torch/module.py                 |  17 ++
 python/tvm/contrib/torch/pytorch_tvm.py            |  21 ++
 python/tvm/rpc/minrpc.py                           |   2 +-
 python/tvm/script/printer/ir_docsifier.py          | 198 +++++++++++++++
 python/tvm/tir/__init__.py                         |   6 +-
 python/tvm/tir/op.py                               | 164 +++++++++++++
 src/arith/const_int_bound.cc                       |  51 ++--
 .../torch/pt_call_tvm/RuntimeModuleWrapper.cc      | 259 --------------------
 .../tvm_module_wrapper/RuntimeModuleWrapperTVM.cc  | 266 +++++++++++++++++++++
 .../RuntimeModuleWrapperTorch.cc                   | 215 +++++++++++++++++
 .../torch/tvm_module_wrapper/runtime_bridge.h      | 116 +++++++++
 src/relay/analysis/call_graph.cc                   |   2 +-
 src/relay/transforms/fold_explicit_padding.cc      |  13 +-
 src/relay/transforms/pattern_utils.h               |  35 ++-
 src/runtime/contrib/edgetpu/edgetpu_runtime.cc     |   2 +-
 src/runtime/contrib/tflite/tflite_runtime.cc       |   2 +-
 .../graph_executor/debug/graph_executor_debug.cc   |   4 +-
 src/runtime/hexagon/rpc/simulator/session.cc       | 113 ++++-----
 src/runtime/rpc/rpc_event_impl.cc                  |   2 +-
 src/runtime/rpc/rpc_pipe_impl.cc                   |   5 +-
 src/runtime/rpc/rpc_socket_impl.cc                 |   8 +-
 src/runtime/thread_pool.cc                         |   9 +-
 src/runtime/vm/profiler/vm.cc                      |   2 +-
 src/runtime/vm/profiler/vm.h                       |   4 +-
 src/script/printer/ir_docsifier.cc                 |  76 ++++++
 src/script/printer/traced_object_functor.cc        |  10 +
 src/target/llvm/codegen_amdgpu.cc                  |   2 +-
 src/target/llvm/codegen_hexagon.cc                 |   2 +-
 src/target/llvm/codegen_nvptx.cc                   |   2 +-
 src/target/llvm/llvm_module.cc                     |   4 +-
 src/te/autodiff/ad_simplify.cc                     |   8 +-
 src/tir/ir/buffer_common.h                         |  16 +-
 src/tir/ir/expr.cc                                 |   8 +-
 src/tir/ir/stmt.cc                                 |   8 +-
 src/tir/op/op.cc                                   |   2 +
 src/tir/transforms/common_subexpr_elim_tools.h     |   5 +-
 src/tir/transforms/inject_ptx_async_copy.cc        |   8 +-
 src/tir/transforms/storage_rewrite.cc              |  17 +-
 tests/cpp/aot_metadata_test.cc                     |   2 +-
 tests/cpp/tvmscript_printer_irdocsifier_test.cc    | 112 +++++++++
 ...tvmscript_printer_traced_object_functor_test.cc |  14 ++
 tests/python/relay/test_pass_annotate_target.py    |   2 +-
 tests/python/relay/test_pass_partition_graph.py    |   2 +-
 tests/python/relay/utils/external_codegen.py       |   2 +-
 .../python/unittest/test_arith_const_int_bound.py  |  29 ++-
 .../python/unittest/test_runtime_module_export.py  |   2 +-
 tests/python/unittest/test_tir_nodes.py            |   6 +
 tests/python/unittest/test_tir_op_types.py         |  50 ++++
 .../unittest/test_tir_transform_storage_rewrite.py |   4 +-
 .../unittest/test_tvmscript_printer_irdocsifier.py | 111 +++++++++
 71 files changed, 2038 insertions(+), 535 deletions(-)
 create mode 100644 apps/pt_tvmdsoop/tests/test_boolean_tensor.py
 create mode 100644 include/tvm/script/printer/ir_docsifier.h
 create mode 100644 python/tvm/script/printer/ir_docsifier.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
 create mode 100644 src/script/printer/ir_docsifier.cc
 create mode 100644 tests/cpp/tvmscript_printer_irdocsifier_test.cc
 create mode 100644 tests/python/unittest/test_tvmscript_printer_irdocsifier.py

Reply via email to