This is an automated email from the ASF dual-hosted git repository.
zhic pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.
from 69e4f44 add git diff filter (#6484)
add 4c5f0c0 [BYOC][ETHOSN] Introduce further operator support (#6355)
No new revisions were added by this update.
Summary of changes:
python/tvm/relay/op/contrib/ethosn.py | 117 +++++++
src/relay/backend/contrib/ethosn/codegen.cc | 207 ++++++++++++
src/relay/backend/contrib/ethosn/codegen_ethosn.h | 8 +
src/relay/backend/contrib/ethosn/ethosn_api.cc | 352 +++++++++++++++++++++
src/relay/backend/contrib/ethosn/ethosn_api.h | 71 ++++-
src/runtime/contrib/ethosn/ethosn_runtime.cc | 8 +
src/runtime/contrib/ethosn/ethosn_runtime.h | 5 +
tests/python/contrib/test_ethosn/infrastructure.py | 74 ++++-
tests/python/contrib/test_ethosn/test_addition.py | 116 +++++++
tests/python/contrib/test_ethosn/test_conv2d.py | 20 +-
.../contrib/test_ethosn/test_depth_to_space.py | 69 ++++
.../contrib/test_ethosn/test_fullyconnected.py | 155 +++++++++
tests/python/contrib/test_ethosn/test_networks.py | 175 ++++++++++
tests/python/contrib/test_ethosn/test_pooling.py | 123 +++++++
tests/python/contrib/test_ethosn/test_relu.py | 70 ++++
tests/python/contrib/test_ethosn/test_reshape.py | 81 +++++
tests/python/contrib/test_ethosn/test_sigmoid.py | 97 ++++++
.../python/contrib/test_ethosn/test_topologies.py | 122 ++++++-
18 files changed, 1846 insertions(+), 24 deletions(-)
create mode 100644 tests/python/contrib/test_ethosn/test_addition.py
create mode 100644 tests/python/contrib/test_ethosn/test_depth_to_space.py
create mode 100644 tests/python/contrib/test_ethosn/test_fullyconnected.py
create mode 100644 tests/python/contrib/test_ethosn/test_networks.py
create mode 100644 tests/python/contrib/test_ethosn/test_pooling.py
create mode 100644 tests/python/contrib/test_ethosn/test_relu.py
create mode 100644 tests/python/contrib/test_ethosn/test_reshape.py
create mode 100644 tests/python/contrib/test_ethosn/test_sigmoid.py