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


    omit 45f9ce9260 [ci][docker] Nightly Docker image update
     add 1115fd9bc2 make injective ops's opt schedule applied to every output 
tensor (#11820)
     add 45568c9963 [TIR] Improved error message if tir.Schedule passed to 
lower/build (#11913)
     add 104883d7dc [HEXAGON] Change arch and do not disable assert (#11858)
     add 7784a421ad [HEXAGON] Add op resize2d for hexagon (#11834)
     add 801e51b211 Fix curand. (#11901)
     add 4a790b6925 [MetaSchedule] Misc minor fix (#11904)
     add 9cf5021385 [microTVM][zephyr] Increase stack size for zephyr 
host-driven AoT tests (#11777)
     add cc6a85bb1c [HEXAGON] Initial clip operator for Hexagon (#11549)
     add e92db864b5 fix unit8 in _convert_dtype_value (#11924)
     add 62b21a18a8 [BYOC] InlineCompilerFunctions helper pass (#11923)
     add 5f9ff8ad6e Add missing headers to llvm_module.cc/.h, NFC (#11925)
     add ae2de20c15 Fix clear-stale-images.sh with multiple worktree. (#11921)
     add 531b5fdef0 [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   (45f9ce9260)
            \
             N -- N -- N   refs/heads/nightly-docker-update (531b5fdef0)

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:
 docker/clear-stale-images.sh                       |   4 +-
 python/tvm/driver/build_module.py                  |  20 ++-
 python/tvm/meta_schedule/builder/local_builder.py  |   2 +-
 python/tvm/meta_schedule/cost_model/xgb_model.py   |   2 +-
 python/tvm/meta_schedule/relay_integration.py      |   2 +-
 python/tvm/meta_schedule/testing/tune_te.py        |   4 +-
 python/tvm/meta_schedule/tune_context.py           |   2 +-
 python/tvm/relay/backend/te_compiler.py            |  10 +-
 python/tvm/relay/frontend/pytorch.py               |   2 +-
 python/tvm/relay/op/contrib/tensorrt.py            |  77 +++------
 python/tvm/relay/transform/transform.py            |  22 +++
 python/tvm/topi/hexagon/__init__.py                |   1 +
 python/tvm/topi/hexagon/resize2d.py                |  81 ++++++++++
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   1 +
 python/tvm/topi/hexagon/slice_ops/clip.py          |  66 ++++++++
 python/tvm/topi/x86/injective.py                   |   7 +-
 src/meta_schedule/schedule_rule/winograd.cc        |  12 +-
 src/relay/transforms/compiler_function_utils.cc    | 175 ++++++++++++++++-----
 src/relay/transforms/compiler_function_utils.h     |  39 +++--
 src/runtime/contrib/curand/curand.cc               |  26 ++-
 src/target/llvm/llvm_module.cc                     |  19 +++
 src/target/llvm/llvm_module.h                      |   7 +-
 tests/micro/zephyr/test_zephyr_aot_exec.py         |   3 +
 .../topi/test_add_subtract_multiply.py             |   4 +-
 .../python/contrib/test_hexagon/topi/test_clip.py  | 128 +++++++++++++++
 .../contrib/test_hexagon/topi/test_resize2d.py     | 169 ++++++++++++++++++++
 .../transform/test_compiler_function_utils.py      |  36 ++++-
 27 files changed, 781 insertions(+), 140 deletions(-)
 create mode 100755 python/tvm/topi/hexagon/resize2d.py
 mode change 100644 => 100755 python/tvm/topi/hexagon/slice_ops/__init__.py
 create mode 100755 python/tvm/topi/hexagon/slice_ops/clip.py
 create mode 100755 tests/python/contrib/test_hexagon/topi/test_clip.py
 create mode 100755 tests/python/contrib/test_hexagon/topi/test_resize2d.py

Reply via email to