You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2022/04/20 09:53:35 UTC

[tvm] branch ci-docker-staging updated (e293746128 -> cc6103e668)

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

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


    omit e293746128 rever removing the script
    omit a4797a6a94 fix merge conflict
    omit 902e40a163 Refactor hexagon test scripts
     add c2eb51311c [COMMUNITY] New Committer -- lhutton1 (#11049)
     add f6171914a7 [Hexagon] Adjust RPC read buffer size from python  (#11022)
     add 0cd4fa688c Register PackedFuncObj with type registry. (#11039)
     add 4178617fcf [AOT] Support LLVM backend with C++ runtime (#10753)
     add 71067799ef [TE][TIR] Enable CreatePrimFunc to properly handle 'layout_free_placeholder' (#11054)
     add fe948da88e Upgrad oneflow version (#11052)
     add e2dd0f8251 Let remote RPCModule get function recursively (#11053)
     add 94f28b29c5 [TVMC] Add `--config` argument for config files (#11012)
     add 81073962ef Revert "[OpenCL] Fix type casting error (#11021)" (#11035)
     add 312b552b11 Add FlattenAtrousConv transformation (#10996)
     add 557fc6c107 Hotfix CI (black check not caught by PR CI) (#11056)
     add 24d5539c43 [Hexagon] Pass stack size to simulator (#11046)
     add a945586868 [Hexagon] Refactor test scripts (#11026)
     add 5987982fae Attempt to prevent concurrent update in Map (#9842)
     add 3b5189563c Add ekalda to reviewers. (#11061)
     add 1efd7df370 [ci] Remove TensorCore node name (#11048)
     add 0bf7f3313a [OpenCL] Fix type casting (#11038)
     add b78e44e42d [TOPI] Fix nn.lrn result dtype on fp16 (#11032)
     add 2025e368c4 [CMSIS-NN] Add Arm(R) Cortex(R)-M55 CPU and CMSIS-NN demo (#11013)
     add 3823b39b8a [TIR] Utility function to decide loop mapping for auto tensorization (#11050)
     new cc6103e668 validating new gpu image

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   (e293746128)
            \
             N -- N -- N   refs/heads/ci-docker-staging (cc6103e668)

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                                     |  21 +-
 CONTRIBUTORS.md                                    |   2 +
 Jenkinsfile                                        |   6 +-
 apps/microtvm/{ethosu => cmsisnn}/.gitignore       |   1 -
 apps/microtvm/{ethosu => cmsisnn}/Makefile         |  49 +--
 apps/microtvm/{ethosu => cmsisnn}/README.md        |  34 +-
 .../{ethosu => cmsisnn}/arm-none-eabi-gcc.cmake    |   0
 apps/microtvm/{ethosu => cmsisnn}/convert_image.py |  11 +-
 apps/microtvm/{ethosu => cmsisnn}/corstone300.ld   |   8 +-
 .../{ethosu => cmsisnn}/include/crt_config.h       |   0
 .../{ethosu => cmsisnn}/include/tvm_runtime.h      |   0
 apps/microtvm/{ethosu => cmsisnn}/requirements.txt |   0
 apps/microtvm/{ethosu => cmsisnn}/run_demo.sh      |  56 +--
 .../{ethosu => cmsisnn}/src/demo_bare_metal.c      |  40 +-
 configs/host/default.json                          |   7 +
 configs/test/compile_config_test.json              |   9 +
 configs/test/tune_config_test.json                 |   6 +
 docker/install/ubuntu_install_oneflow.sh           |   4 +-
 include/tvm/runtime/container/map.h                |  37 +-
 include/tvm/runtime/metadata.h                     |   2 +
 include/tvm/runtime/metadata_base.h                |  31 +-
 include/tvm/topi/nn/local_response_norm.h          |   6 +-
 jenkins/Jenkinsfile.j2                             |   4 +-
 python/tvm/contrib/hexagon/session.py              |   5 +-
 python/tvm/driver/tvmc/autotuner.py                |   5 +-
 python/tvm/driver/tvmc/compiler.py                 |   5 +-
 python/tvm/driver/tvmc/config_options.py           | 159 ++++++++
 python/tvm/driver/tvmc/main.py                     |  14 +-
 python/tvm/driver/tvmc/micro.py                    |   5 +-
 python/tvm/driver/tvmc/runner.py                   |   5 +-
 python/tvm/driver/tvmc/target.py                   |   2 +-
 python/tvm/relay/transform/transform.py            |  27 ++
 python/tvm/script/tir/special_stmt.py              |  21 +-
 python/tvm/testing/tir.py                          |  13 +
 python/tvm/tir/schedule/analysis.py                |  33 +-
 python/tvm/tir/stmt_functor.py                     |  12 +
 src/printer/tir_text_printer.cc                    |  11 +
 src/relay/backend/aot_executor_codegen.cc          | 276 +++++++------
 src/relay/qnn/utils.h                              |   6 +
 src/relay/transforms/flatten_atrous_conv.cc        | 195 ++++++++++
 src/runtime/hexagon/rpc/android/session.cc         |  15 +-
 src/runtime/hexagon/rpc/hexagon/rpc_server.cc      |  24 +-
 src/runtime/hexagon/rpc/hexagon_rpc.idl            |   1 +
 src/runtime/hexagon/rpc/simulator/session.cc       |  14 +-
 src/runtime/metadata.cc                            |  15 +-
 .../utils.cc => runtime/packed_func.cc}            |  20 +-
 src/runtime/rpc/rpc_module.cc                      |   2 +-
 src/target/llvm/codegen_cpu.cc                     | 362 ++++++++++++++++-
 src/target/llvm/codegen_cpu.h                      |  10 +-
 src/target/llvm/codegen_llvm.cc                    |  85 ++--
 src/target/llvm/codegen_llvm.h                     |  42 +-
 src/target/llvm/llvm_common.cc                     |   7 +
 src/target/llvm/llvm_common.h                      |   2 +
 src/target/llvm/llvm_module.cc                     |  41 +-
 src/target/llvm/llvm_module.h                      |   3 +
 src/target/metadata.h                              |  11 +-
 src/target/metadata_module.cc                      |   6 +
 src/target/metadata_utils.cc                       | 155 ++++++++
 src/target/metadata_utils.h                        | 141 +++++++
 src/target/source/codegen_c_host.cc                |  28 +-
 src/target/source/codegen_opencl.cc                |  52 ++-
 src/target/source/codegen_opencl.h                 |   7 +-
 src/target/source/source_module.cc                 | 232 +++++------
 src/te/operation/create_primfunc.cc                |  46 ++-
 src/tir/ir/expr.cc                                 |   2 +-
 src/tir/ir/stmt_functor.cc                         |   4 +
 src/tir/schedule/analysis.h                        |  33 ++
 src/tir/schedule/analysis/analysis.cc              | 167 +++++++-
 src/tir/transforms/legalize_packed_calls.cc        |  78 ++--
 src/tir/transforms/lower_tvm_builtin.cc            | 103 +++--
 .../convert_pool_allocations_to_offsets.cc         |  11 +-
 tests/cpp/aot_metadata_test.cc                     | 183 ++++++---
 tests/cpp/container_test.cc                        |  15 +
 tests/python/contrib/test_hexagon/test_launcher.py |   4 +-
 tests/python/driver/tvmc/test_command_line.py      |  36 ++
 tests/python/driver/tvmc/test_parse_config_file.py | 155 ++++++++
 tests/python/frontend/oneflow/test_forward.py      |  22 +-
 tests/python/relay/aot/test_c_device_api.py        |  23 +-
 tests/python/relay/aot/test_cpp_aot.py             |  47 +--
 tests/python/relay/aot/test_crt_aot.py             |   2 +-
 tests/python/relay/test_op_level2.py               |   8 +-
 .../python/relay/test_pass_flatten_atrous_conv.py  | 427 +++++++++++++++++++++
 tests/python/topi/python/test_topi_lrn.py          |   8 +-
 .../unittest/test_aot_legalize_packed_call.py      |  88 +++--
 .../python/unittest/test_target_codegen_opencl.py  |  11 +-
 tests/python/unittest/test_te_create_primfunc.py   |  41 ++
 .../python/unittest/test_tir_schedule_analysis.py  | 183 ++++++++-
 ...ransform_convert_pool_allocations_to_offsets.py |  99 ++++-
 .../python/unittest/test_tvmscript_error_report.py |  22 ++
 .../python/unittest/test_tvmscript_syntax_sugar.py |  17 +
 tests/scripts/task_demo_microtvm.sh                |   4 +
 91 files changed, 3474 insertions(+), 768 deletions(-)
 copy apps/microtvm/{ethosu => cmsisnn}/.gitignore (67%)
 copy apps/microtvm/{ethosu => cmsisnn}/Makefile (67%)
 copy apps/microtvm/{ethosu => cmsisnn}/README.md (71%)
 copy apps/microtvm/{ethosu => cmsisnn}/arm-none-eabi-gcc.cmake (100%)
 copy apps/microtvm/{ethosu => cmsisnn}/convert_image.py (86%)
 copy apps/microtvm/{ethosu => cmsisnn}/corstone300.ld (98%)
 copy apps/microtvm/{ethosu => cmsisnn}/include/crt_config.h (100%)
 copy apps/microtvm/{ethosu => cmsisnn}/include/tvm_runtime.h (100%)
 copy apps/microtvm/{ethosu => cmsisnn}/requirements.txt (100%)
 copy apps/microtvm/{ethosu => cmsisnn}/run_demo.sh (67%)
 copy apps/microtvm/{ethosu => cmsisnn}/src/demo_bare_metal.c (56%)
 create mode 100644 configs/host/default.json
 create mode 100644 configs/test/compile_config_test.json
 create mode 100644 configs/test/tune_config_test.json
 create mode 100644 python/tvm/driver/tvmc/config_options.py
 create mode 100644 src/relay/transforms/flatten_atrous_conv.cc
 copy src/{auto_scheduler/utils.cc => runtime/packed_func.cc} (76%)
 mode change 100755 => 100644
 create mode 100644 src/target/metadata_utils.cc
 create mode 100644 src/target/metadata_utils.h
 create mode 100644 tests/python/driver/tvmc/test_parse_config_file.py
 create mode 100644 tests/python/relay/test_pass_flatten_atrous_conv.py


[tvm] 01/01: validating new gpu image

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit cc6103e6688c4b5556517ec87f04dc27efc7c5c7
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Wed Apr 20 18:53:05 2022 +0900

    validating new gpu image
---
 Jenkinsfile            | 4 ++--
 jenkins/Jenkinsfile.j2 | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 96ec10725b..fc09f9928e 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -45,12 +45,12 @@
 // 'python3 jenkins/generate.py'
 // Note: This timestamp is here to ensure that updates to the Jenkinsfile are
 // always rebased on main before merging:
-// Generated at 2022-04-19T10:04:53.134656
+// Generated at 2022-04-20T18:52:59.141225
 
 import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
 ci_lint = 'tlcpack/ci-lint:v0.71'
-ci_gpu = 'tlcpack/ci-gpu:v0.85'
+ci_gpu = 'tlcpackstaging/ci_gpu:20220420-091436-0b957802b'
 ci_cpu = 'tlcpack/ci-cpu:v0.84'
 ci_wasm = 'tlcpack/ci-wasm:v0.73'
 ci_i386 = 'tlcpack/ci-i386:v0.77'
diff --git a/jenkins/Jenkinsfile.j2 b/jenkins/Jenkinsfile.j2
index 1dd9c318ef..cea3a3768f 100644
--- a/jenkins/Jenkinsfile.j2
+++ b/jenkins/Jenkinsfile.j2
@@ -52,7 +52,7 @@ import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
 ci_lint = 'tlcpack/ci-lint:v0.71'
-ci_gpu = 'tlcpack/ci-gpu:v0.85'
+ci_gpu = 'tlcpackstaging/ci_gpu:20220420-091436-0b957802b'
 ci_cpu = 'tlcpack/ci-cpu:v0.84'
 ci_wasm = 'tlcpack/ci-wasm:v0.73'
 ci_i386 = 'tlcpack/ci-i386:v0.77'