You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/07/02 00:23:53 UTC

[tvm] branch last-successful updated (55dcd5f195 -> 1787cca3f9)

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 55dcd5f195 [ci] Don't skip index-triggered builds (#11915)
     add d2a14a6880 [BYOC] Switch TensorRT BYOC integration to IRModule-at-a-time using RelayToTIR hook (#11979)
     add 286a51921d [LLVM] Remove use of deprecated PointerType::getPointerElementType() (#11984)
     add 1787cca3f9 [Relay] [PyTorch] Add aten::tril and aten::triu (#11890)

No new revisions were added by this update.

Summary of changes:
 include/tvm/runtime/module.h                       |   2 +-
 .../meta_schedule/testing/custom_builder_runner.py |   7 +-
 python/tvm/relay/frontend/pytorch.py               |  27 +++
 python/tvm/relay/op/contrib/tensorrt.py            | 191 +++++++--------
 src/relay/backend/contrib/codegen_c/codegen.cc     |  10 +-
 src/relay/backend/contrib/cutlass/codegen.cc       |  10 +-
 src/relay/backend/contrib/tensorrt/codegen.cc      | 265 ++++++++++++---------
 .../contrib/{cutlass => tensorrt}/codegen.h        |  23 +-
 src/relay/backend/contrib/tensorrt/target.cc       |  31 ++-
 src/relay/transforms/compiler_function_utils.cc    |  16 +-
 src/relay/transforms/compiler_function_utils.h     |  15 +-
 src/runtime/const_loader_module.cc                 |  24 +-
 src/runtime/contrib/json/json_runtime.h            |   2 +
 src/runtime/contrib/tensorrt/tensorrt_builder.cc   |  27 ++-
 src/runtime/contrib/tensorrt/tensorrt_builder.h    |  10 +-
 src/runtime/contrib/tensorrt/tensorrt_ops.cc       |   4 +-
 src/runtime/contrib/tensorrt/tensorrt_runtime.cc   |  14 +-
 src/target/llvm/codegen_cpu.cc                     |  87 +++----
 src/target/llvm/codegen_cpu.h                      |   5 +-
 src/target/metadata_module.cc                      |   2 -
 tests/python/contrib/test_tensorrt.py              | 172 ++++++-------
 tests/python/contrib/test_tensorrt_int8_exp.py     |  23 +-
 tests/python/frontend/pytorch/test_forward.py      |  81 ++++++-
 23 files changed, 637 insertions(+), 411 deletions(-)
 copy src/relay/backend/contrib/{cutlass => tensorrt}/codegen.h (61%)