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

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


 discard f91e9d92ee [CI][TEST] Cleanup legacy tests and migrate unity tests to 
main one
     add 2ae5097cd2 [CI] Remove i386 and hexagon from `.asf.yaml` (#18748)
     add c8140643d3 [REFACTOR][S-TIR] Move remaining data structures to s_tir 
(#18743)
     add d129767d71 [Relax] Support constant folding for call_tir with tuple 
outputs (#18736)
     add 4578a61bec [DOC] Fix the loop length in a loop tiling example (#18753)
     add 6f18e4ef77 [CI] Remove i386 and Hexagon from CI pipeline (1) (#18737)
     add 262c6d2e04 [Relax] Migrate NN conv/pooling/grad attrs from 
Array<IntImm> to Array<int64_t> (#18733)
     new 0dbca959d0 [CI][TEST] Cleanup legacy tests and migrate unity tests to 
main one

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   (f91e9d92ee)
            \
             N -- N -- N   refs/heads/ci-cleanup (0dbca959d0)

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:
 .asf.yaml                                          |   2 -
 ci/jenkins/data.py                                 |   8 -
 ci/jenkins/generated/arm_jenkinsfile.groovy        |  24 +-
 ci/jenkins/generated/cpu_jenkinsfile.groovy        |  22 +-
 ci/jenkins/generated/docker_jenkinsfile.groovy     |  76 +-
 ci/jenkins/generated/gpu_jenkinsfile.groovy        |  24 +-
 ci/jenkins/generated/hexagon_jenkinsfile.groovy    | 571 ---------------
 ci/jenkins/generated/i386_jenkinsfile.groovy       | 765 ---------------------
 ci/jenkins/generated/lint_jenkinsfile.groovy       |  24 +-
 ci/jenkins/generated/wasm_jenkinsfile.groovy       |  24 +-
 ci/jenkins/templates/hexagon_jenkinsfile.groovy.j2 |  44 --
 ci/jenkins/templates/i386_jenkinsfile.groovy.j2    |  60 --
 ci/jenkins/templates/utils/base.groovy.j2          |   2 -
 ci/scripts/github/github_tvmbot.py                 |   2 -
 ci/scripts/github/update_branch.py                 |   2 -
 .../tensor_ir/tutorials/tir_transformation.py      |   4 +-
 include/tvm/relax/attrs/nn.h                       |  64 +-
 include/tvm/s_tir/analysis.h                       |  88 +++
 include/tvm/{tir => s_tir}/data_layout.h           |  12 +-
 .../sblock_dependence_info.h}                      |  38 +-
 .../{tir/block_scope.h => s_tir/sblock_scope.h}    |  14 +-
 include/tvm/s_tir/schedule/state.h                 |   2 +-
 include/tvm/{tir => s_tir}/utils.h                 |   8 +-
 include/tvm/tir/analysis.h                         |  53 +-
 include/tvm/topi/einsum.h                          |   1 -
 include/tvm/topi/transform.h                       |   2 +-
 python/tvm/relax/dpl/pattern.py                    |   4 +-
 python/tvm/relax/frontend/onnx/onnx_frontend.py    |   2 +-
 python/tvm/relax/op/_op_gradient.py                |   2 +-
 python/tvm/relax/transform/legalize_ops/nn.py      |  20 +-
 python/tvm/s_tir/__init__.py                       |   4 +-
 python/tvm/s_tir/_ffi_api.py                       |   4 +-
 python/tvm/s_tir/analysis/__init__.py              | 120 ++++
 python/tvm/{arith => s_tir/analysis}/_ffi_api.py   |   4 +-
 python/tvm/s_tir/block_dependence_info.py          |   6 +-
 python/tvm/{tir => s_tir}/data_layout.py           |   4 +-
 ...ependence_info.py => sblock_dependence_info.py} |   6 +-
 .../tvm/s_tir/{block_scope.py => sblock_scope.py}  |   6 +-
 python/tvm/s_tir/schedule/__init__.py              |   2 +-
 python/tvm/s_tir/schedule/state.py                 |   2 +-
 python/tvm/tir/__init__.py                         |   1 -
 python/tvm/tir/analysis/analysis.py                |  97 +--
 python/tvm/topi/utils.py                           |   3 +-
 src/contrib/msc/core/ir/graph.h                    |   2 +-
 src/contrib/msc/core/ir/graph_builder.h            |   2 +-
 src/contrib/msc/core/ir/plugin.h                   |   2 +-
 src/contrib/msc/core/utils.cc                      |   4 +-
 .../msc/framework/tensorrt/transform_tensorrt.cc   |  13 +-
 .../backend/contrib/codegen_json/codegen_json.h    |   6 +-
 src/relax/backend/contrib/nnapi/codegen.cc         |  22 +-
 src/relax/op/nn/convolution.cc                     | 109 +--
 src/relax/op/nn/convolution.h                      |  38 +-
 src/relax/op/nn/pooling.cc                         | 174 ++---
 src/relax/op/nn/pooling.h                          |  10 +-
 src/relax/op/op_common.h                           |   8 +-
 src/relax/op/tensor/grad.cc                        |  24 +-
 src/relax/op/tensor/grad.h                         |  12 +-
 src/relax/transform/fold_constant.cc               |  66 +-
 src/relax/transform/infer_amp_utils.h              |   1 -
 src/relax/transform/infer_layout_utils.h           |   2 +-
 .../analysis/find_anchor_sblock.cc}                |  49 +-
 .../analysis/sblock_access_region_detector.cc}     |  10 +-
 .../analysis/sblock_buffer_access_lca_detector.cc} |   4 +-
 src/{tir/ir => s_tir}/data_layout.cc               |  22 +-
 .../sblock_dependence_info.cc}                     |  40 +-
 src/s_tir/schedule/primitive/blockize_tensorize.cc |   2 +-
 src/s_tir/schedule/utils.h                         |   2 +-
 src/te/operation/create_primfunc.cc                |   2 +-
 src/tir/analysis/stmt_finding.cc                   |  87 ---
 src/tir/ir/block_scope.cc                          |  16 +-
 src/tir/ir/data_type_rewriter.cc                   |   6 +-
 .../tvm/tir => src/tir/ir}/data_type_rewriter.h    |   6 +-
 src/tir/ir/stmt_functor.cc                         |   2 +-
 src/tir/transform/force_narrow_index_to_i32.cc     |   3 +-
 src/tir/transform/narrow_datatype.cc               |   2 +-
 tests/cpp/data_type_rewriter_test.cc               | 140 ----
 tests/python/ci/test_ci.py                         |   2 -
 .../codegen/test_target_codegen_cross_llvm.py      |   9 -
 tests/python/codegen/test_target_codegen_x86.py    |   4 +-
 tests/python/relax/test_dataflow_pattern.py        |   4 +-
 tests/python/relax/test_op_nn_convolution.py       |  50 +-
 tests/python/relax/test_op_nn_pooling.py           |  88 +--
 tests/python/relax/test_transform_fold_constant.py |  51 ++
 .../relax/test_transform_legalize_ops_grad.py      |   6 +-
 .../analysis/test_sblock_access_region.py}         |  40 +-
 .../analysis/test_sblock_buffer_access_lca.py}     |  12 +-
 ...ence_info.py => test_sblock_dependence_info.py} |   2 +-
 .../base}/test_tir_data_layout.py                  |  34 +-
 .../base}/test_tir_te_extern_primfunc.py           |   0
 tests/scripts/ci.py                                |  16 -
 tests/scripts/task_build.py                        |  17 +-
 tests/scripts/task_python_integration_i386only.sh  |  23 -
 tests/scripts/task_python_unittest.sh              |   1 +
 93 files changed, 845 insertions(+), 2625 deletions(-)
 delete mode 100644 ci/jenkins/generated/hexagon_jenkinsfile.groovy
 delete mode 100644 ci/jenkins/generated/i386_jenkinsfile.groovy
 delete mode 100644 ci/jenkins/templates/hexagon_jenkinsfile.groovy.j2
 delete mode 100644 ci/jenkins/templates/i386_jenkinsfile.groovy.j2
 create mode 100644 include/tvm/s_tir/analysis.h
 rename include/tvm/{tir => s_tir}/data_layout.h (97%)
 rename include/tvm/{tir/block_dependence_info.h => 
s_tir/sblock_dependence_info.h} (72%)
 rename include/tvm/{tir/block_scope.h => s_tir/sblock_scope.h} (96%)
 rename include/tvm/{tir => s_tir}/utils.h (98%)
 create mode 100644 python/tvm/s_tir/analysis/__init__.py
 copy python/tvm/{arith => s_tir/analysis}/_ffi_api.py (90%)
 rename python/tvm/{tir => s_tir}/data_layout.py (98%)
 copy python/tvm/s_tir/{block_dependence_info.py => sblock_dependence_info.py} 
(94%)
 rename python/tvm/s_tir/{block_scope.py => sblock_scope.py} (97%)
 copy src/{tir/analysis/stmt_finding.cc => 
s_tir/analysis/find_anchor_sblock.cc} (71%)
 rename src/{tir/analysis/block_access_region_detector.cc => 
s_tir/analysis/sblock_access_region_detector.cc} (98%)
 rename src/{tir/analysis/buffer_access_lca_detector.cc => 
s_tir/analysis/sblock_buffer_access_lca_detector.cc} (98%)
 rename src/{tir/ir => s_tir}/data_layout.cc (96%)
 rename src/{tir/ir/block_dependence_info.cc => 
s_tir/sblock_dependence_info.cc} (68%)
 rename {include/tvm/tir => src/tir/ir}/data_type_rewriter.h (98%)
 delete mode 100644 tests/cpp/data_type_rewriter_test.cc
 rename tests/python/{tir-analysis/test_tir_analysis_get_block_access_region.py 
=> s_tir/analysis/test_sblock_access_region.py} (91%)
 rename 
tests/python/{tir-analysis/test_tir_analysis_detect_buffer_access_lca.py => 
s_tir/analysis/test_sblock_buffer_access_lca.py} (95%)
 rename tests/python/s_tir/base/{test_tir_block_dependence_info.py => 
test_sblock_dependence_info.py} (99%)
 rename tests/python/{tir-base => s_tir/base}/test_tir_data_layout.py (76%)
 rename tests/python/{tir-base => s_tir/base}/test_tir_te_extern_primfunc.py 
(100%)
 delete mode 100755 tests/scripts/task_python_integration_i386only.sh

Reply via email to