This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 363ebb453b [BF16] Support ndarray.asnumpy() to bfloat16 tensor
natively using ml_dtypes (#17739)
add 64dae9de9b [Relax][PyTorch] Support elu, celu, selu ops for
ExportedProgram importer (#17738)
add 6b89f9537c [Codegen][CUDA] Fix codegen of cast among vector bfloat16,
fp8 and fp4 (#17741)
add cd92392d34 [Refactor] Clean up Relay references in the codebase
(#17733)
No new revisions were added by this update.
Summary of changes:
cmake/config.cmake | 6 +-
cmake/modules/CUDA.cmake | 6 +-
cmake/modules/contrib/ArmComputeLib.cmake | 2 +-
cmake/modules/contrib/BNNS.cmake | 3 +-
cmake/modules/contrib/DNNL.cmake | 7 +-
cmake/modules/contrib/Mrvl.cmake | 5 -
cmake/modules/contrib/TensorRT.cmake | 2 +-
docs/arch/index.rst | 8 +-
docs/arch/pass_infra.rst | 18 +--
include/tvm/ir/transform.h | 10 +-
include/tvm/ir/type.h | 4 +-
include/tvm/meta_schedule/builder.h | 4 +-
include/tvm/target/virtual_device.h | 4 +-
include/tvm/topi/transform.h | 4 +-
python/gen_requirements.py | 6 +-
python/setup.py | 6 -
python/tvm/__init__.py | 2 +-
python/tvm/contrib/cutlass/build.py | 4 +-
python/tvm/contrib/mrvl.py | 2 +-
.../msc/framework/tensorflow/frontend/translate.py | 2 +-
.../msc/framework/torch/frontend/translate.py | 2 +-
python/tvm/ir/transform.py | 2 +-
python/tvm/ir/type.py | 2 +-
python/tvm/meta_schedule/builder/builder.py | 4 +-
python/tvm/relax/dpl/pattern.py | 5 +-
.../frontend/torch/exported_program_translator.py | 3 +
python/tvm/testing/utils.py | 42 ------
python/tvm/tir/analysis/analysis.py | 4 -
rust/tvm-rt/src/module.rs | 2 +-
src/ir/transform.cc | 2 +-
src/node/structural_equal.cc | 4 +-
src/relax/backend/contrib/cutlass/codegen.cc | 2 +-
src/relax/ir/dataflow_pattern.cc | 3 +-
src/relax/ir/dataflow_pattern_functor.cc | 2 +-
src/relax/ir/transform.cc | 1 -
src/runtime/const_loader_module.cc | 5 +-
src/runtime/contrib/dnnl/dnnl.cc | 1 -
src/runtime/contrib/dnnl/dnnl_json_runtime.cc | 2 +-
src/runtime/contrib/mrvl/mrvl_hw_runtime.cc | 4 +-
src/runtime/contrib/mrvl/mrvl_runtime.cc | 4 +-
src/runtime/contrib/tensorrt/tensorrt_builder.cc | 4 +-
src/runtime/contrib/tensorrt/tensorrt_ops.cc | 4 +-
src/runtime/contrib/tensorrt/tensorrt_ops.h | 7 +-
src/support/scalars.h | 4 +-
src/target/llvm/codegen_hexagon.cc | 2 +-
src/target/llvm/codegen_llvm.cc | 2 +-
src/target/source/codegen_cuda.cc | 58 +++++---
src/target/source/literal/cuda_half_t.h | 151 +++++++++++++++------
tests/lint/cpplint.sh | 1 -
.../python/codegen/test_target_codegen_cuda_fp8.py | 49 +++++--
.../contrib/test_hexagon/test_meta_schedule.py | 138 +------------------
.../contrib/test_hexagon/test_relax_integration.py | 2 +
.../relax/test_frontend_from_exported_program.py | 123 +++++++++++++++++
.../test_transform_merge_composite_functions.py | 3 -
tests/python/tvmscript/test_tvmscript_roundtrip.py | 3 +-
55 files changed, 392 insertions(+), 360 deletions(-)