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/12/09 05:02:40 UTC

[tvm] branch nightly updated (22ff38dff8 -> 3af50e0fce)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 22ff38dff8 [docs] Make building the cpu-only docs build explicit (#13315)
     add 6069292ff9 [OpenCL]  Introduction of weights on buffers (#13563)
     add 75fd531124 [bfloat16] Fixed dtype conversion in the arm_cpu injective schedule (#13417)
     add f4cfcafba5 [Adreno] Add global pooling schedule (#13573)
     add 3168e612c7 [Hexagon] Use get_hexagon_target in test, NFC (#13584)
     add 9e7920b581 [Hexagon] Lookup intrinsic by name instead of using enum value (#13583)
     add da2a6379ab [Test] Make tests work with older numpy versions (#13582)
     add c5b8ab2307 [ci][docker] Read docker image tags during CI runs (#13572)
     add 3b001efcc9 [MetaSchedule] Restore `num_threads` parameter in tuning API  (#13561)
     add 8545297a5e [TIR] Add preserve_unit_iters option to blockize/tensorize (#13579)
     add 3af50e0fce [TIR][Transform] Keep the allocate buffers order after update buffer allocation location (#13560)

No new revisions were added by this update.

Summary of changes:
 .../Application.mk => ci/jenkins/docker-images.ini |  28 +--
 ci/jenkins/generated/arm_jenkinsfile.groovy        |  26 +-
 ci/jenkins/generated/cortexm_jenkinsfile.groovy    |  26 +-
 ci/jenkins/generated/cpu_jenkinsfile.groovy        |  26 +-
 ci/jenkins/generated/docker_jenkinsfile.groovy     |  26 +-
 ci/jenkins/generated/gpu_jenkinsfile.groovy        |  26 +-
 ci/jenkins/generated/hexagon_jenkinsfile.groovy    |  26 +-
 ci/jenkins/generated/i386_jenkinsfile.groovy       |  26 +-
 ci/jenkins/generated/lint_jenkinsfile.groovy       |  26 +-
 ci/jenkins/generated/minimal_jenkinsfile.groovy    |  26 +-
 ci/jenkins/generated/riscv_jenkinsfile.groovy      |  26 +-
 ci/jenkins/generated/wasm_jenkinsfile.groovy       |  26 +-
 ci/jenkins/templates/utils/Prepare.groovy.j2       |   2 +-
 ci/jenkins/templates/utils/base.groovy.j2          |  23 +-
 ci/scripts/jenkins/determine_docker_images.py      |  25 +-
 docker/bash.sh                                     |   5 +-
 docs/contribute/ci.rst                             |  34 ++-
 include/tvm/arith/iter_affine_map.h                |   5 +-
 include/tvm/tir/schedule/schedule.h                |  11 +-
 python/tvm/arith/iter_affine_map.py                |  15 +-
 python/tvm/contrib/hexagon/meta_schedule.py        |  21 +-
 python/tvm/contrib/torch/as_torch.py               |   4 +-
 python/tvm/meta_schedule/cost_model/cost_model.py  |   5 +
 python/tvm/meta_schedule/cost_model/xgb_model.py   |   7 +-
 python/tvm/meta_schedule/relay_integration.py      |  12 +-
 python/tvm/meta_schedule/runner/runner.py          |   2 +
 python/tvm/meta_schedule/tir_integration.py        |   8 +-
 python/tvm/meta_schedule/tune.py                   |  12 +-
 python/tvm/relay/op/strategy/adreno.py             |   7 +
 python/tvm/tir/schedule/schedule.py                |  17 +-
 python/tvm/topi/adreno/conv2d_nchw.py              |   5 +-
 python/tvm/topi/adreno/conv2d_nhwc.py              |   5 +-
 python/tvm/topi/adreno/conv2d_winograd_common.py   |   2 +
 python/tvm/topi/adreno/depthwise_conv2d_nchw.py    |   5 +-
 python/tvm/topi/adreno/depthwise_conv2d_nhwc.py    |   5 +-
 python/tvm/topi/adreno/pooling.py                  | 107 ++++++++
 python/tvm/topi/arm_cpu/injective.py               |   3 +-
 python/tvm/topi/nn/winograd_util.py                |   1 +
 python/tvm/topi/testing/depthwise_conv2d_python.py |   2 +-
 src/arith/iter_affine_map.cc                       |  31 ++-
 src/relay/transforms/annotate_texture_storage.cc   |  78 ++++--
 src/tir/schedule/concrete_schedule.cc              |  16 +-
 src/tir/schedule/concrete_schedule.h               |   6 +-
 src/tir/schedule/primitive.h                       |   6 +-
 src/tir/schedule/primitive/blockize_tensorize.cc   |  51 ++--
 src/tir/schedule/schedule.cc                       |   6 +-
 src/tir/schedule/traced_schedule.cc                |  20 +-
 src/tir/schedule/traced_schedule.h                 |   6 +-
 .../plan_update_buffer_allocation_location.cc      |  63 ++++-
 tests/lint/check_file_type.py                      |   2 +
 tests/python/ci/test_ci.py                         |  12 +-
 .../metaschedule_e2e/test_resnet50_int8.py         |  43 ++--
 .../test_hexagon/test_async_dma_pipeline.py        |  13 +-
 tests/python/contrib/test_hexagon/test_launcher.py |   6 +-
 .../contrib/test_hexagon/test_meta_schedule.py     |   7 +-
 .../topi/slice_op/test_conv2d_slice.py             |   4 +-
 tests/python/contrib/test_hexagon/topi/test_pad.py |   2 +-
 tests/python/integration/test_arm_aprofile.py      |  74 ++++++
 .../opencl_texture/test_conv2d_nchw_texture.py     |  20 +-
 .../relay/opencl_texture/test_pool_texture.py      | 135 ++++++++++
 .../python/unittest/test_arith_iter_affine_map.py  |  29 +++
 .../test_meta_schedule_relay_integration.py        |   1 +
 .../test_meta_schedule_schedule_rule_mlt_intrin.py |  30 +--
 .../test_meta_schedule_schedule_rule_mlt_tc.py     |  41 +--
 .../unittest/test_meta_schedule_trace_apply.py     | 278 ++++++++++-----------
 .../python/unittest/test_tir_schedule_blockize.py  |  29 ++-
 ...sform_plan_update_buffer_allocation_location.py |  25 +-
 67 files changed, 1168 insertions(+), 530 deletions(-)
 copy apps/android_deploy/app/src/main/jni/Application.mk => ci/jenkins/docker-images.ini (56%)
 create mode 100644 tests/python/integration/test_arm_aprofile.py
 create mode 100644 tests/python/relay/opencl_texture/test_pool_texture.py