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 d32dea800b [METAL] Update metal runtime to directly store kernel map 
(#14727)
     add f9ae487aee [Keras][Bugfix] fix a bug about alpha attribute in 
LeakyReLU which lead to passes conflict (#14707)
     add c254b75705 [AutoTVM] Added Droplet algorithm in TVM (#14683)
     add 30b34d2521 [TIR] More flexible buffer compaction (#14021)
     add e2e1696c74 [Relay] Handle pad value coming from Tensor instead of 
scalar (#14735)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/transform.h                        |    5 +-
 python/tvm/autotvm/tuner/__init__.py               |    1 +
 python/tvm/autotvm/tuner/droplet_turner.py         |  127 ++
 python/tvm/relay/frontend/keras.py                 |    2 +
 python/tvm/tir/transform/transform.py              |   10 +-
 src/relay/op/nn/pad.cc                             |    2 +-
 src/tir/analysis/block_access_region_detector.cc   |   10 +-
 src/tir/schedule/primitive.h                       |    5 +-
 src/tir/schedule/primitive/block_annotate.cc       |    1 +
 src/tir/transforms/compact_buffer_region.cc        |  487 ++++--
 src/tir/transforms/ir_utils.cc                     |  101 +-
 src/tir/transforms/ir_utils.h                      |   44 +-
 src/tir/transforms/lower_opaque_block.cc           |   34 +-
 tests/python/frontend/keras/test_forward.py        |   19 +
 tests/python/relay/test_op_level2.py               |   19 +
 .../python/unittest/test_autotvm_droplet_tuner.py  |   57 +
 tests/python/unittest/test_tir_buffer.py           |   23 -
 .../test_tir_transform_compact_buffer_region.py    | 1730 +++++++++++---------
 18 files changed, 1696 insertions(+), 981 deletions(-)
 create mode 100644 python/tvm/autotvm/tuner/droplet_turner.py
 create mode 100644 tests/python/unittest/test_autotvm_droplet_tuner.py

Reply via email to