This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly-docker-update
in repository https://gitbox.apache.org/repos/asf/tvm.git
discard 125446a862 [ci][docker] Nightly Docker image update
add f3359d241f [LLVM] Fix build errors in CodeGenCPU::AddDebugInformation
(#12054)
add fc419df32f [AOT][BUG] Only include extra headers if the constants
array is needed. (#12061)
add fbf80bb386 [microNPU] Add MergeConstants pass (#12029)
add c1706a933e [Collage] PartitionRule (though without
CombinePartitionRule) (#11993)
add 993a8ea094 [Frontend][TFLite] respect out type of Shape op (#11877)
add 6d676badff [QNN] Replace nn.leaky_relu with qnn.leaky_relu (#11930)
add ef5c3ed872 [QNN] Use sigmoid Lookup Table method instead of fallback
to fp32 (#12038)
add 175e3a77b1 [docs][tvmc] Fix ResNet50 model URL (#12040)
add ad44a0fe15 fix some typo in conv2d.py (#12067)
add deda4d5968 [MetaSchedule][Test] Add unittests for DEP (#12071)
add 6536def6f9 [Topi][Hexagon] Implement Cast F32ToF16 and F16ToF32 Slice
Op (#11561)
add b1a3817602 [Relay] Move TOpPattern registration for nn.* to C++
(#12072)
add d07f2fb805 [MetaSchedule][Test] Add unittests for DIL (#12077)
add 1d5d357d69 [Hexagon] Enable broken tests (#12073)
add 3992d2443a [COMMUNITY] Add driazati key for release (#12076)
add 18385d300e [ci][docker] Nightly Docker image update
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (125446a862)
\
N -- N -- N refs/heads/nightly-docker-update (18385d300e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
Jenkinsfile | 14 +-
KEYS | 48 ++
ci/jenkins/Jenkinsfile.j2 | 14 +-
gallery/tutorial/tvmc_command_line_driver.py | 2 +-
gallery/tutorial/tvmc_python.py | 2 +-
.../relay/backend/contrib/ethosu/tir/compiler.py | 4 +
.../tvm/relay/backend/contrib/ethosu/tir/passes.py | 35 ++
python/tvm/relay/frontend/pytorch.py | 2 +-
python/tvm/relay/frontend/qnn_torch.py | 25 +-
python/tvm/relay/frontend/tflite.py | 14 +-
python/tvm/relay/op/nn/_nn.py | 72 +--
python/tvm/topi/hexagon/slice_ops/__init__.py | 6 +
python/tvm/topi/hexagon/slice_ops/cast.py | 143 +++++
python/tvm/topi/hexagon/utils.py | 14 +
python/tvm/topi/nn/conv2d.py | 18 +-
src/relay/backend/contrib/codegen_c/codegen.cc | 11 +-
src/relay/collage/candidate_partition.cc | 258 +++++++++
src/relay/collage/candidate_partition.h | 180 ++++++
src/relay/collage/candidate_set.cc | 76 +++
src/relay/collage/candidate_set.h | 99 ++++
src/relay/{op/vm/vm.h => collage/cost.cc} | 26 +-
src/relay/collage/cost.h | 103 ++++
src/relay/collage/partition_rule.cc | 372 ++++++++++++
src/relay/collage/partition_rule.h | 355 ++++++++++++
src/relay/collage/partition_spec.cc | 87 +++
src/relay/collage/partition_spec.h | 120 ++++
src/relay/op/nn/bitserial.cc | 9 +-
src/relay/op/nn/convolution.cc | 51 +-
src/relay/op/nn/correlation.cc | 3 +-
src/relay/op/nn/nn.cc | 56 +-
src/relay/op/nn/pooling.cc | 16 +
src/relay/op/nn/sparse.cc | 15 +-
src/target/llvm/codegen_cpu.cc | 7 +-
src/tir/contrib/ethosu/passes.cc | 643 ++++++++++++++++++++-
tests/cpp/relay/collage/partition_rule_test.cc | 303 ++++++++++
.../test_ethosu/cascader/test_integration.py | 10 +-
.../contrib/test_ethosu/test_encode_constants.py | 244 +++-----
.../contrib/test_ethosu/test_merge_constants.py | 561 ++++++++++++++++++
tests/python/contrib/test_ethosu/test_networks.py | 14 +-
.../test_ethosu/test_remove_concatenates.py | 3 -
.../contrib/test_ethosu/test_replace_conv2d.py | 24 -
.../contrib/test_ethosu/test_replace_copy.py | 37 +-
tests/python/contrib/test_ethosu/test_scheduler.py | 24 +-
.../python/contrib/test_hexagon/infrastructure.py | 12 +
.../topi/test_add_subtract_multiply.py | 3 -
.../contrib/test_hexagon/topi/test_argmax_slice.py | 3 -
.../contrib/test_hexagon/topi/test_cast_slice.py | 199 +++++++
.../contrib/test_hexagon/topi/test_resize2d.py | 3 -
.../test_hexagon/topi/test_softmax_slice.py | 3 -
tests/python/frontend/tflite/test_forward.py | 12 +-
.../unittest/test_meta_schedule_space_cpu.py | 340 +++++++++++
.../unittest/test_meta_schedule_space_cuda.py | 178 ++++++
52 files changed, 4436 insertions(+), 437 deletions(-)
create mode 100644 python/tvm/topi/hexagon/slice_ops/cast.py
create mode 100644 src/relay/collage/candidate_partition.cc
create mode 100644 src/relay/collage/candidate_partition.h
create mode 100644 src/relay/collage/candidate_set.cc
create mode 100644 src/relay/collage/candidate_set.h
copy src/relay/{op/vm/vm.h => collage/cost.cc} (68%)
create mode 100644 src/relay/collage/cost.h
create mode 100644 src/relay/collage/partition_rule.cc
create mode 100644 src/relay/collage/partition_rule.h
create mode 100644 src/relay/collage/partition_spec.cc
create mode 100644 src/relay/collage/partition_spec.h
create mode 100644 tests/cpp/relay/collage/partition_rule_test.cc
create mode 100644 tests/python/contrib/test_ethosu/test_merge_constants.py
create mode 100644 tests/python/contrib/test_hexagon/topi/test_cast_slice.py