This is an automated email from the ASF dual-hosted git repository.
mbrookhart pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.
from afc29e6 [microNPU][2b] Create CascaderGraphs from TE graphs (#9471)
add f6f252f [TOPI] Support grouped conv1d (#9832)
No new revisions were added by this update.
Summary of changes:
python/tvm/autotvm/task/topi_integration.py | 7 +-
python/tvm/relay/frontend/onnx.py | 21 --
python/tvm/relay/op/strategy/cuda.py | 42 ++--
python/tvm/relay/op/strategy/generic.py | 43 ++++
python/tvm/relay/op/strategy/x86.py | 43 ++--
python/tvm/topi/cuda/conv1d.py | 40 +++-
python/tvm/topi/generic/nn.py | 34 +++
python/tvm/topi/nn/conv1d.py | 120 +++-------
python/tvm/topi/nn/conv2d.py | 315 ++++++++++++---------------
python/tvm/topi/nn/utils.py | 47 ++++
python/tvm/topi/testing/__init__.py | 2 +-
python/tvm/topi/testing/conv1d_ncw_python.py | 14 ++
python/tvm/topi/x86/conv1d.py | 8 +
src/relay/op/nn/convolution.h | 2 +-
tests/python/topi/python/test_topi_conv1d.py | 73 +++++++
15 files changed, 484 insertions(+), 327 deletions(-)