You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/11/16 00:01:17 UTC

[tvm] branch nightly-docker-update updated (4ce2e82ea1 -> 4806d9088e)

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 4ce2e82ea1 [ci][docker] Nightly Docker image update
     add 3aa16f72dd [Codegen] Fix CUDA codegen for int64 Ramp (#13382)
     add 647be2b425 [MetaSchedule] Add `from-target` Defaults for LLVM VNNI Targets (#13383)
     add 034dc67d03 [TFLite] Enable int64 biases for int16 quantized operators (#12042)
     add 4fd34b1bad [Fix][Warning] tvm.target.create() deprecated (#13391)
     add 41b7a45083 feat: fix pylint issues for conftest (#13386)
     add 24790d1d56 [RUNTIME][ALIGNMENT] Configurable kAllocAlignment if needed (#13307)
     add 72c60ad78a [AOT][FIX] Handle device contexts properly in CreateFunctionMetadata (#13392)
     add 8c30bda738 [MetaSchedule] Support schedules with cache read in RewriteLayout (#13384)
     add 42f9a766ff [TOPI] Add padding for dense/batch matmul for x86 vnni (#13385)
     add bac450a645 [Hexagon] Use VTCM while scheduling conv2d op (#13388)
     add aa0c0db71b [tvm4j] Fix tvm4j build on MacOS (#13370)
     add 557f1a9ded [docs] Add some more release process docs (#13351)
     add 4f4b4edafd [TOPI][Hexagon] Implement quantized adaptive_avg_pool1d for hexagon (#13282)
     add 2bb3382c89 [OpenCL] Introduce OpenCL wrapper to TVM (#13362)
     add 4806d9088e [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   (4ce2e82ea1)
            \
             N -- N -- N   refs/heads/nightly-docker-update (4806d9088e)

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:
 .gitmodules                                        |   3 +
 3rdparty/OpenCL-Headers                            |   1 +
 CMakeLists.txt                                     |   5 +
 Jenkinsfile                                        |  20 +-
 LICENSE                                            |   1 +
 apps/android_camera/app/src/main/jni/Android.mk    |   1 +
 .../android_camera/app/src/main/jni/make/config.mk |   2 +-
 apps/android_camera/app/src/main/jni/tvm_runtime.h |   2 +
 apps/android_deploy/README.md                      |  34 +-
 apps/android_deploy/app/src/main/jni/Android.mk    |   3 +-
 .../android_deploy/app/src/main/jni/make/config.mk |   2 +-
 apps/android_deploy/app/src/main/jni/tvm_runtime.h |   3 +
 apps/android_rpc/README.md                         |  32 +-
 apps/android_rpc/app/src/main/jni/Android.mk       |   3 +-
 apps/android_rpc/app/src/main/jni/make/config.mk   |   2 +-
 apps/android_rpc/app/src/main/jni/tvm_runtime.h    |   1 +
 apps/cpp_rpc/README.md                             |  10 +-
 apps/howto_deploy/prepare_test_libs.py             |   2 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 cmake/config.cmake                                 |   6 +-
 cmake/modules/OpenCL.cmake                         |  30 +-
 cmake/utils/FindOpenCL.cmake                       |   2 +-
 docs/contribute/release_process.rst                |  27 +-
 .../deploy_models/deploy_model_on_android.py       |   5 +-
 include/tvm/meta_schedule/mutator.h                |   2 +
 include/tvm/meta_schedule/postproc.h               |   2 +
 include/tvm/meta_schedule/schedule_rule.h          |   2 +
 include/tvm/runtime/device_api.h                   |   8 +
 jvm/native/osx-x86_64/pom.xml                      |   4 +-
 python/tvm/relay/frontend/tflite.py                |   6 +-
 python/tvm/topi/hexagon/qnn/__init__.py            |   1 +
 python/tvm/topi/hexagon/qnn/adaptive_avg_pool1d.py | 120 +++++
 python/tvm/topi/hexagon/utils.py                   |   7 +
 python/tvm/topi/x86/dense_alter_op.py              |  35 +-
 src/meta_schedule/mutator/mutator.cc               |   2 +
 src/meta_schedule/postproc/postproc.cc             |   8 +
 src/meta_schedule/postproc/rewrite_layout.cc       | 159 ++++--
 src/meta_schedule/schedule_rule/schedule_rule.cc   |  45 ++
 .../space_generator/space_generator.cc             |  11 +
 src/relay/backend/aot/create_function_metadata.cc  |   3 +-
 src/relay/qnn/op/convolution_transpose.cc          |  10 +-
 src/relay/qnn/op/dense.cc                          |  10 +-
 src/relay/qnn/op/requantize.cc                     |   5 +-
 src/runtime/opencl/opencl_module.cc                |   2 +-
 .../runtime/opencl/opencl_wrapper}/README.md       |  12 +-
 .../opencl/opencl_wrapper/opencl_wrapper.cc        | 574 +++++++++++++++++++++
 src/target/source/codegen_cuda.cc                  |   4 +-
 src/te/operation/create_primfunc.cc                |   9 +-
 tests/cpp-runtime/opencl/opencl_timer_test.cc      |   4 +-
 tests/lint/pylint.sh                               |   1 +
 tests/python/conftest.py                           |  37 +-
 .../test_ethosn/test_convert_equivalents.py        |   4 +-
 .../python/contrib/test_hexagon/infrastructure.py  |   9 +
 .../metaschedule_e2e/test_resnet50_int8.py         |   5 +-
 .../test_hexagon/topi/test_adaptive_avg_pool1d.py  | 185 +++++++
 tests/python/frontend/tflite/test_forward.py       |  23 +
 .../relay/aot/test_aot_create_function_metadata.py |   2 +-
 tests/python/relay/test_op_level1.py               |   7 +-
 tests/python/relay/test_op_level10.py              |  16 +-
 tests/python/relay/test_op_qnn_requantize.py       | 495 ++++++++++--------
 tests/python/topi/python/test_topi_transform.py    |   1 +
 .../test_meta_schedule_postproc_rewrite_layout.py  | 276 ++++++++++
 tests/python/unittest/test_te_create_primfunc.py   |   1 +
 tests/scripts/task_build_adreno_bins.sh            |   1 +
 64 files changed, 1886 insertions(+), 439 deletions(-)
 create mode 160000 3rdparty/OpenCL-Headers
 create mode 100755 python/tvm/topi/hexagon/qnn/adaptive_avg_pool1d.py
 copy {apps/extension => src/runtime/opencl/opencl_wrapper}/README.md (73%)
 create mode 100644 src/runtime/opencl/opencl_wrapper/opencl_wrapper.cc
 create mode 100755 tests/python/contrib/test_hexagon/topi/test_adaptive_avg_pool1d.py