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 428400c6e0 [COMMUNITY] Cheng Wen -> Reviewer (#14153)
add 1043136c9f [Runtime] Fix high RAM usage when saving / loading
paramters of big models (#14147)
add e9cf04e0e4 [Relay][Frontend] Span Filling PyTorch (#14050)
add 6c04ac52bd [TRT][BYOC] allow strided_slice ops on selected dimensions
(#14142) (#14144)
add 69acdfb042 [ONNX][TOPI] Add `DFT` operator (#13999)
No new revisions were added by this update.
Summary of changes:
include/tvm/relay/attrs/transform.h | 11 +
python/tvm/relay/expr.py | 2 +-
python/tvm/relay/frontend/common.py | 4 +
python/tvm/relay/frontend/onnx.py | 111 ++++++++
python/tvm/relay/frontend/pytorch.py | 221 +++++++++++++---
python/tvm/relay/frontend/qnn_torch.py | 4 +-
python/tvm/relay/op/_transform.py | 14 +
python/tvm/relay/op/contrib/tensorrt.py | 3 +-
python/tvm/relay/op/strategy/cuda.py | 11 +
python/tvm/relay/op/strategy/generic.py | 26 ++
python/tvm/relay/op/transform.py | 27 ++
python/tvm/runtime/__init__.py | 7 +-
python/tvm/runtime/params.py | 49 +++-
python/tvm/topi/__init__.py | 2 +-
python/tvm/topi/cuda/__init__.py | 2 +-
python/tvm/topi/cuda/{stft.py => signal.py} | 96 +++++++
python/tvm/topi/{stft.py => signal.py} | 82 ++++++
src/relay/op/tensor/transform.cc | 49 ++++
src/runtime/file_utils.cc | 12 +
tests/python/frontend/onnx/test_forward.py | 78 +++++-
tests/python/frontend/pytorch/qnn_test.py | 24 +-
tests/python/frontend/pytorch/test_forward.py | 284 ++++++++++++++++++++-
tests/python/frontend/pytorch/test_fx_quant.py | 7 +-
tests/python/frontend/pytorch/test_lstm.py | 6 +-
.../frontend/pytorch/test_object_detection.py | 6 +-
tests/python/frontend/pytorch/test_rnns.py | 16 +-
tests/python/topi/python/test_topi_dft.py | 88 +++++++
tests/python/unittest/test_runtime_graph.py | 16 +-
28 files changed, 1193 insertions(+), 65 deletions(-)
rename python/tvm/topi/cuda/{stft.py => signal.py} (60%)
rename python/tvm/topi/{stft.py => signal.py} (62%)
create mode 100644 tests/python/topi/python/test_topi_dft.py