This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from c6516a534f [TIR] Allow string/buffer arguments to Schedule
cache_read/write (#12661)
add aa6c7123d0 [ETHOSN] Fix tests pylint errors (#12649)
add 38ba8c0bb6 [Relay] Extract intermediate node by its expression ID
(#12646)
No new revisions were added by this update.
Summary of changes:
python/tvm/relay/analysis/analysis.py | 38 ++++++
src/relay/analysis/extract_intermediate_expr.cc | 88 ++++++++++++++
tests/lint/pylint.sh | 1 +
tests/python/contrib/test_ethosn/infrastructure.py | 50 ++++----
.../python/contrib/test_ethosn/test_concatenate.py | 10 +-
.../test_ethosn/test_constant_duplication.py | 10 +-
tests/python/contrib/test_ethosn/test_conv2d.py | 18 +--
.../contrib/test_ethosn/test_depth_to_space.py | 4 +
.../contrib/test_ethosn/test_fullyconnected.py | 25 ++--
.../python/contrib/test_ethosn/test_leaky_relu.py | 2 +
tests/python/contrib/test_ethosn/test_mean.py | 2 +
tests/python/contrib/test_ethosn/test_multiply.py | 3 +
tests/python/contrib/test_ethosn/test_networks.py | 13 +--
.../contrib/test_ethosn/test_partition_params.py | 24 ++--
tests/python/contrib/test_ethosn/test_pooling.py | 8 +-
tests/python/contrib/test_ethosn/test_relu.py | 4 +
.../python/contrib/test_ethosn/test_requantize.py | 5 +
tests/python/contrib/test_ethosn/test_resize.py | 4 +
tests/python/contrib/test_ethosn/test_sigmoid.py | 11 +-
tests/python/contrib/test_ethosn/test_split.py | 9 +-
tests/python/contrib/test_ethosn/test_tanh.py | 4 +
.../python/contrib/test_ethosn/test_topologies.py | 33 ++++--
.../test_analysis_extract_intermediate_expr.py | 130 +++++++++++++++++++++
23 files changed, 414 insertions(+), 82 deletions(-)
create mode 100644 src/relay/analysis/extract_intermediate_expr.cc
create mode 100644
tests/python/relay/test_analysis_extract_intermediate_expr.py