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

moreau pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    omit eb6dc25  Jenkinsfile changes for #7333.
     add 0d303b4  [Parser] Fix tokenizing inf (#7370)
     add f7e05c3  Improve op_type missing message (#7384)
     add 0bd259a  [COMMUNITY] @hzfan -> reviewer (#7360)
     add 3635945  Refactor Dynamic to Static (#7368)
     add 0ab9c95  [Relay][Passes] Iterative A-normal Traversals (#7374)
     add de0ab4c  Fix missing round(), floor(), ceil() for target C lowering 
(#7382)
     add da42924  [FFI] Improve error messages when array/map types do not 
match in function calls (#7330)
     add 618ef9e  [TOPI] Add einsum operator (#6370)
     add 2e8133d  [TFLite] Added check for dynamic range quantization (#7114)
     add 1de98be  Generate requirements.txt from Python spec (#7289)
     add 30c110c  [Bugfix][AutoScheduler] Fail to register ComputeDAG when 
deserializing tasks (#7395)
     add 9aec474  [CI] Temporary increase ci timeout (#7403)
     add f1b9663  [RPC] Replace timestamp with counter (#7389)
     add c118b08  Support negative pad values (#7375)
     add 38c9eb1  Fix Bug in Bilinear Interpolation and Add Deform Conv to PT 
FrontEnd (#7397)
     add d8313d0  [AutoScheduler] Support early_stopping per task (#7377)
     add 132cf6b  [CI] Add back the tests after timeout adjusted (#7408)
     add 91e07e1  [Relay][Frontend][Onnx] Refactor where importer to support 
dynamic shapes. (#7394)
     add 4df530d  Add cuda tags and unit test (#7410)
     add fc08430  check for dynamic rank before accessing value (#7414)
     add 1f846f0  [VM] Minor refactor for C++ memory alloc (#7413)
     add 9daf3fe  Fix AutoScheduler for anaconda python (#7387)
     add 33f30af  Fix compilation when Arm FP16 extensions are enabled (#7386)
     add 5103bb6  Jenkinsfile changes for #7333. (#7388)
     add 0e7e2dc  [µTVM] Add VMWare to Reference VM instructions (#7221)
     add c789a29  Generate JUnitXML from pytest (#7407)
     add 79b6ef7  [FIX,CMAKE] Only compile runtime files once (#7417)
     new 27bed74  Enable JUnit parsing for Python tests

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   (eb6dc25)
            \
             N -- N -- N   refs/heads/ci-docker-staging (27bed74)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                                     |  11 +-
 CONTRIBUTORS.md                                    |   1 +
 Jenkinsfile                                        |  12 +-
 apps/microtvm/reference-vm/base-box-tool.py        |  68 +-
 apps/microtvm/reference-vm/zephyr/Vagrantfile      |  10 +
 .../zephyr/base-box/Vagrantfile.packer-template    |   7 +
 .../microtvm/reference-vm/zephyr/base-box/setup.sh |  24 +-
 include/tvm/ir/op.h                                |   2 +-
 include/tvm/node/container.h                       |  31 +-
 include/tvm/relay/expr_functor.h                   |   4 +
 include/tvm/runtime/packed_func.h                  |  73 +-
 include/tvm/topi/detail/tensor_utils.h             |  95 ++-
 include/tvm/topi/einsum.h                          | 943 +++++++++++++++++++++
 include/tvm/topi/tags.h                            |   1 +
 python/.gitignore                                  |   1 +
 python/gen_requirements.py                         | 615 ++++++++++++++
 python/setup.py                                    |  40 +-
 python/tvm/auto_scheduler/search_task.py           |  13 +-
 python/tvm/auto_scheduler/task_scheduler.py        |  47 +-
 python/tvm/auto_scheduler/workload_registry.py     |  18 +-
 python/tvm/relay/frontend/onnx.py                  |  48 +-
 python/tvm/relay/frontend/pytorch.py               |  27 +
 python/tvm/relay/frontend/tflite.py                |  34 +-
 python/tvm/rpc/tracker.py                          |  10 +-
 python/tvm/topi/__init__.py                        |   1 +
 python/tvm/topi/einsum.py                          |  44 +
 .../tvm/topi/testing/deformable_conv2d_python.py   |  26 +-
 python/tvm/topi/testing/roi_align_python.py        |  34 +-
 python/tvm/topi/vision/rcnn/roi_align.py           |   4 +-
 src/ir/expr.cc                                     |   6 +-
 src/parser/tokenizer.h                             |  61 +-
 src/relay/analysis/util.cc                         |  12 +
 src/relay/ir/expr_functor.cc                       |  22 +
 src/relay/op/device_copy.cc                        |  73 --
 src/relay/op/dyn/tensor/transform.cc               |   5 +-
 src/relay/op/memory/memory.cc                      |  83 +-
 src/relay/{ir/base.cc => op/memory/memory.h}       |  43 +-
 src/relay/op/nn/pad.cc                             |   9 +-
 src/relay/op/tensor/reduce.cc                      |   6 +-
 src/relay/op/vm/vm.cc                              |  49 +-
 include/tvm/relay/op.h => src/relay/op/vm/vm.h     |  23 +-
 src/relay/transforms/de_duplicate.cc               |  20 +-
 src/relay/transforms/dynamic_to_static.cc          | 155 ++--
 src/relay/transforms/fold_constant.cc              |  44 +-
 src/relay/transforms/fuse_ops.cc                   |  52 +-
 src/relay/transforms/memory_alloc.cc               |  57 +-
 src/relay/transforms/pattern_utils.h               |   4 +
 src/relay/transforms/type_infer.cc                 |  70 +-
 src/runtime/contrib/sort/sort.cc                   |   2 +-
 src/target/intrin_rule.cc                          |   6 +
 src/target/tag.cc                                  | 266 +++++-
 src/target/target_kind.cc                          |   3 +
 src/topi/transform.cc                              |   5 +
 tests/python/contrib/test_cudnn.py                 |   3 +-
 tests/python/frontend/onnx/test_forward.py         |  17 +-
 tests/python/frontend/pytorch/test_forward.py      |  88 +-
 tests/python/frontend/tflite/test_forward.py       |  21 +
 tests/python/relay/test_ir_parser.py               |  14 +-
 tests/python/relay/test_op_level2.py               |  51 +-
 tests/python/relay/test_op_level5.py               |  71 +-
 tests/python/relay/test_pass_dynamic_to_static.py  |  44 +-
 .../{test_topi_matmul.py => test_topi_einsum.py}   |  57 +-
 .../unittest/test_auto_scheduler_compute_dag.py    |   2 +-
 .../python/unittest/test_auto_scheduler_measure.py |  39 +
 tests/python/unittest/test_gen_requirements.py     | 220 +++++
 .../python/unittest/test_target_codegen_c_host.py  |  87 +-
 tests/python/unittest/test_target_target.py        |  20 +
 tests/python/unittest/test_te_autodiff.py          |   4 +
 tests/scripts/setup-pytest-env.sh                  |  16 +-
 .../{task_ci_setup.sh => task_ci_python_setup.sh}  |   0
 tests/scripts/task_python_arm_compute_library.sh   |   5 +-
 tests/scripts/task_python_ethosn_tests.sh          |   4 +-
 tests/scripts/task_python_frontend.sh              |  14 +-
 tests/scripts/task_python_frontend_cpu.sh          |   6 +-
 tests/scripts/task_python_integration.sh           |  23 +-
 tests/scripts/task_python_integration_gpuonly.sh   |   1 +
 tests/scripts/task_python_microtvm.sh              |   3 +-
 tests/scripts/task_python_nightly.sh               |   2 +-
 tests/scripts/task_python_topi.sh                  |   2 +-
 tests/scripts/task_python_unittest.sh              |  10 +-
 tests/scripts/task_python_unittest_gpuonly.sh      |   1 +
 tests/scripts/task_python_vta_fsim.sh              |   6 +-
 tests/scripts/task_python_vta_tsim.sh              |   6 +-
 tutorials/micro/micro_reference_vm.py              |  12 +-
 84 files changed, 3503 insertions(+), 666 deletions(-)
 create mode 100644 include/tvm/topi/einsum.h
 create mode 100755 python/gen_requirements.py
 create mode 100644 python/tvm/topi/einsum.py
 delete mode 100644 src/relay/op/device_copy.cc
 copy src/relay/{ir/base.cc => op/memory/memory.h} (55%)
 copy include/tvm/relay/op.h => src/relay/op/vm/vm.h (67%)
 copy tests/python/topi/python/{test_topi_matmul.py => test_topi_einsum.py} 
(52%)
 create mode 100644 tests/python/unittest/test_gen_requirements.py
 copy tests/scripts/{task_ci_setup.sh => task_ci_python_setup.sh} (100%)

Reply via email to