This is an automated email from the ASF dual-hosted git repository.
junrushao pushed a change to branch unity
in repository https://gitbox.apache.org/repos/asf/tvm.git
omit ff90673c0f [Unity] [Bugfix] Fix KeyError:'None' in layer_norm
implementation (#15871)
add 646d3a2c5e [TFLite][Frontend] Support quantized Pow (#15798)
add a38053e92e [Script] Fix miscs of make_notes.py (#15859)
add b8abff9789 [VM] Memory Manager moved up to runtime (#15833)
add 7a1f7d0b5a [Docker] Upgrade oneflow to v0.8.0 (#15862)
add e754bc2325 [Relay][Bugfix] Fix conv transpose with default strides in
ONNX frontend (#15868)
add 958c27123a [Fix] Remove duplicated words from comments, NFC (#15873)
add e89b39e55b Bump pillow from 9.2.0 to 10.0.1 in /apps/microtvm (#15865)
add 6f04fdab5a Bump pillow from 9.3.0 to 10.0.1 in /apps/microtvm/cmsisnn
(#15866)
add ec92ea960d Bump pillow from 9.3.0 to 10.0.1 in /apps/microtvm/ethosu
(#15867)
add fa4aeee64e [CI] Update ci-gpu image (#15836)
add dc53a6c29a [Arith] Simplify the result of non-divisible floordiv
(#15881)
add b9a02b1e84 Merge remote-tracking branch 'apache-upstream/main' into
apache-upstream-unity
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 (ff90673c0f)
\
N -- N -- N refs/heads/unity (b9a02b1e84)
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:
CMakeLists.txt | 1 +
apps/android_camera/app/src/main/jni/tvm_runtime.h | 1 +
apps/android_deploy/app/src/main/jni/tvm_runtime.h | 1 +
apps/android_rpc/app/src/main/jni/tvm_runtime.h | 1 +
apps/bundle_deploy/runtime.cc | 1 +
apps/howto_deploy/tvm_runtime_pack.cc | 1 +
apps/microtvm/cmsisnn/requirements.txt | 117 +++++++++---------
apps/microtvm/ethosu/requirements.txt | 117 +++++++++---------
apps/microtvm/poetry.lock | 131 ++++++++++-----------
apps/microtvm/pyproject.toml | 2 +-
ci/jenkins/docker-images.ini | 2 +-
docker/install/ubuntu_install_oneflow.sh | 2 +-
docs/Doxyfile | 2 +-
docs/conf.py | 4 +-
golang/src/tvm_runtime_pack.cc | 1 +
include/tvm/runtime/device_api.h | 8 ++
include/tvm/runtime/logging.h | 2 +-
.../tvm/runtime/{vm => memory}/memory_manager.h | 45 +++----
include/tvm/runtime/ndarray.h | 2 +-
include/tvm/runtime/packed_func.h | 2 +-
include/tvm/runtime/vm/vm.h | 9 +-
include/tvm/tir/expr.h | 2 +-
include/tvm/tir/stmt.h | 2 +-
python/tvm/relax/frontend/torch/fx_translator.py | 9 +-
python/tvm/relay/frontend/oneflow.py | 12 +-
python/tvm/relay/frontend/onnx.py | 4 +-
python/tvm/relay/frontend/tflite.py | 2 -
python/tvm/relay/op/contrib/clml.py | 2 +-
python/tvm/relay/transform/memory_plan.py | 2 +-
python/tvm/runtime/ndarray.py | 2 +-
python/tvm/te/hybrid/__init__.py | 2 +-
python/tvm/te/schedule.py | 2 +-
python/tvm/topi/arm_cpu/qnn.py | 2 +-
src/arith/const_fold.h | 4 +-
src/arith/iter_affine_map.cc | 9 ++
src/arith/product_normal_form.h | 4 +-
src/relay/backend/vm/compiler.h | 2 +-
src/relay/collage/partition_rule.h | 2 +-
src/relay/transforms/combine_parallel_op_batch.h | 2 +-
src/runtime/c_runtime_api.cc | 16 ++-
src/runtime/crt/aot_executor/aot_executor.c | 2 +-
src/runtime/graph_executor/graph_executor.cc | 3 +-
src/runtime/graph_executor/graph_executor.h | 4 +
src/runtime/{vm => memory}/memory_manager.cc | 59 ++++++----
src/runtime/{vm => memory}/naive_allocator.h | 29 ++---
src/runtime/{vm => memory}/pooled_allocator.h | 20 ++--
src/runtime/vm/vm.cc | 14 ++-
src/target/source/ptx.h | 2 +-
src/tir/analysis/control_flow_graph.h | 2 +-
src/tir/schedule/error.h | 2 +-
src/tir/transforms/unroll_loop.cc | 2 +-
.../runtime/{vm => memory}/memory_manager_tests.cc | 39 +++---
.../contrib/test_arm_compute_lib/infrastructure.py | 2 +-
.../test_hexagon/conv2d/test_conv2d_conv2d.md | 2 +-
.../test_hexagon/test_benchmark_elemwise_add.py | 2 +-
tests/python/frontend/coreml/test_forward.py | 4 +-
tests/python/frontend/onnx/test_forward.py | 9 ++
tests/python/frontend/tflite/test_forward.py | 13 +-
tests/python/relax/test_frontend_from_fx.py | 36 ------
tests/python/relay/test_pass_plan_devices.py | 2 +-
.../python/unittest/test_arith_iter_affine_map.py | 34 ++++++
.../unittest/test_tir_transform_remove_no_op.py | 2 +-
tests/scripts/release/make_notes.py | 4 +-
web/src/environment.ts | 2 +-
64 files changed, 448 insertions(+), 376 deletions(-)
rename include/tvm/runtime/{vm => memory}/memory_manager.h (82%)
rename src/runtime/{vm => memory}/memory_manager.cc (76%)
rename src/runtime/{vm => memory}/naive_allocator.h (78%)
rename src/runtime/{vm => memory}/pooled_allocator.h (88%)
rename tests/cpp/runtime/{vm => memory}/memory_manager_tests.cc (86%)