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 602133e6b9 [bugfix][Relay] Fix softplus in paddlepaddle frontend
(#14845)
add b4c1c3870f [CUDA] Fixed the call of the min function in the schedule
for cuda (#14751)
add 265c098fcb Add v0.12.0 docs (#14851)
add 58434d16f0 [TFLite][Frontend] Generate name when tensor name is
missing (#14819)
add 5566c3e2b6 [COMMUNITY] Anirudh Sundar Subramaniam -> Committer (#14853)
add b6d7ce6a8a [LLVM] Use Var annotation in LetStmt for pointer type
(#14570)
add 0274930e4a [microNPU][ETHOSU] Fix Softmax quantization parameters
(#14774)
add eb1ea972b3 [QNN] Implement 'qnn.softmax' (#14536)
No new revisions were added by this update.
Summary of changes:
CONTRIBUTORS.md | 1 +
docs/conf.py | 2 +-
.../backend/contrib/ethosu/softmax_rewriter.py | 28 ++--
python/tvm/relay/frontend/tflite.py | 9 +-
python/tvm/relay/op/__init__.py | 1 +
python/tvm/relay/op/op.py | 21 +++
python/tvm/relay/qnn/op/qnn.py | 4 +
.../transform/fake_quantization_to_integer.py | 18 ++-
python/tvm/relay/transform/transform.py | 11 +-
python/tvm/topi/cuda/scatter.py | 2 +-
src/relay/qnn/op/softmax.cc | 154 +++++++++++++++++++++
.../transforms/fake_quantization_to_integer.cc | 73 +++++++---
src/relay/transforms/pattern_utils.h | 4 +
src/target/llvm/codegen_cpu.cc | 42 +++---
src/target/llvm/codegen_llvm.cc | 23 ++-
tests/python/contrib/test_cmsisnn/test_networks.py | 27 ++++
tests/python/contrib/test_ethosu/test_codegen.py | 2 +-
tests/python/relay/test_any.py | 23 +++
.../test_pass_fake_quantization_to_integer.py | 48 +++++++
tests/scripts/request_hook/request_hook.py | 1 +
20 files changed, 428 insertions(+), 66 deletions(-)
create mode 100644 src/relay/qnn/op/softmax.cc