You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by jr...@apache.org on 2020/10/10 05:40:52 UTC

[incubator-tvm] branch ci-docker-staging updated (4b7aa5d -> 074dbef)

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

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


 discard 4b7aa5d  Setup Rust path
 discard 7836654  Add deps needed for Rust examples and docs
 discard 2e52c67  Turn on Rust docs and MxNet based ResNet
     add 1c85047  [apps/bundle_deploy] Link demo_* targets with LDFLAGS and also with -lm. (#6636)
     add e4b47a6  Add qemu build step to CI (#6644)
     add 455d401  add a test for assymetric padding in ONNX conv and fix importer (#6646)
     add 35854c1  missing header for GraphRuntimeFactory in android_rpc (#6648)
     add dffdb23  Fix leakyReLU support for CoreML (#6651)
     add a8c1273  [CI] make sure graphviz is on both ci-cpu and ci-gpu images (#6645)
     add a919824  Add Range op to ONNX, make tvm arange op support negative steps (#6647)
     add 1fc47cc  [µTVM] Avoid use of builtin math functions (#6630)
     add 0922d17  [FIX,AUTOTVM] More descriptive error message when an autotvm task is not (#6652)
     add f73a1f6  [TEST][TEDD] improve TEDD tests to also run on CPU Docker image. (#6643)
     add 98c2096  [Diagnostics][Relay][InferType] Refactor InferType to work on whole module, and use new diagnostics. (#6274)
     add a04e8f6  Turn on Rust docs and MxNet based ResNet
     add 7858503  Add deps needed for Rust examples and docs
     add 0704756  Setup Rust path
     add 074dbef  Bump Jenkinsfile

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   (4b7aa5d)
            \
             N -- N -- N   refs/heads/ci-docker-staging (074dbef)

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.

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   1 +
 Jenkinsfile                                        |  17 +-
 Makefile                                           |   5 +
 apps/android_rpc/app/src/main/jni/tvm_runtime.h    |   1 +
 apps/bundle_deploy/Makefile                        |   4 +-
 docker/Dockerfile.ci_gpu                           |   2 +-
 docker/install/ubuntu_install_arm_compute_lib.sh   |   0
 docker/install/ubuntu_install_core.sh              |   2 +-
 .../install/ubuntu_install_ethosn_driver_stack.sh  |   1 -
 include/tvm/ir/diagnostic.h                        | 262 ++++++
 include/tvm/ir/module.h                            |  12 +-
 include/tvm/ir/span.h                              |   2 +-
 include/tvm/ir/transform.h                         |  14 +-
 include/tvm/ir/type.h                              |  17 +-
 include/tvm/ir/type_relation.h                     |  13 +-
 include/tvm/parser/parser.h                        |   3 +-
 include/tvm/parser/source_map.h                    |  69 +-
 include/tvm/relay/analysis.h                       |   9 +-
 include/tvm/relay/transform.h                      |  12 -
 include/tvm/runtime/container.h                    |  14 +
 include/tvm/runtime/object.h                       |   2 +-
 include/tvm/tir/op.h                               |   1 +
 pyproject.toml                                     |   2 +-
 python/tvm/__init__.py                             |   9 +-
 python/tvm/_ffi/runtime_ctypes.py                  |   2 +-
 python/tvm/autotvm/task/task.py                    |  19 +-
 python/tvm/ir/__init__.py                          |   1 +
 python/tvm/ir/diagnostics/__init__.py              | 118 +++
 python/tvm/{arith => ir/diagnostics}/_ffi_api.py   |   4 +-
 python/tvm/ir/module.py                            |  23 +-
 python/tvm/micro/build.py                          |  46 +-
 python/tvm/micro/compiler.py                       |   2 +-
 python/tvm/micro/debugger.py                       |  10 +-
 python/tvm/micro/transport.py                      |   6 +-
 python/tvm/parser/__init__.py                      |  13 +
 python/tvm/relay/backend/graph_runtime_factory.py  |   4 +-
 python/tvm/relay/backend/interpreter.py            |   4 +-
 python/tvm/relay/build_module.py                   |   2 +
 python/tvm/relay/dataflow_pattern/__init__.py      |   2 +-
 python/tvm/relay/frontend/common.py                |   3 +-
 python/tvm/relay/frontend/coreml.py                |   2 +-
 python/tvm/relay/frontend/onnx.py                  |  25 +-
 python/tvm/relay/frontend/pytorch.py               |  23 +-
 python/tvm/relay/frontend/tensorflow.py            |  73 +-
 python/tvm/relay/op/_transform.py                  |   5 +-
 python/tvm/relay/op/contrib/arm_compute_lib.py     |   1 +
 python/tvm/relay/prelude.py                        | 599 +++++++------
 .../tvm/relay/quantize/_partition_conversions.py   |   8 +-
 python/tvm/relay/quantize/quantize.py              |   2 +-
 python/tvm/relay/std/nat.rly                       |  78 ++
 python/tvm/relay/std/prelude.rly                   |   5 +-
 python/tvm/relay/testing/__init__.py               |   3 +-
 python/tvm/relay/testing/nat.py                    | 149 +---
 python/tvm/relay/testing/py_converter.py           |  27 +-
 python/tvm/relay/transform/memory_alloc.py         |   2 +
 python/tvm/relay/transform/transform.py            |  14 +
 src/driver/driver_api.cc                           |  22 +-
 src/ir/diagnostic.cc                               | 299 +++++++
 src/ir/module.cc                                   | 114 ++-
 src/ir/span.cc                                     |   6 +-
 src/ir/transform.cc                                |  26 +-
 src/ir/type.cc                                     |  18 +-
 src/parser/diagnostic.h                            | 179 ----
 src/parser/parser.cc                               | 807 +++++++++++-------
 src/parser/source_map.cc                           |  90 +-
 src/parser/span_check.cc                           | 109 +++
 src/parser/span_check.h                            |  80 ++
 src/parser/token.h                                 |  15 +
 src/parser/tokenizer.h                             |  64 +-
 src/printer/relay_text_printer.cc                  |  15 +-
 src/relay/analysis/kind_check.cc                   |  53 +-
 src/relay/analysis/type_solver.cc                  | 107 ++-
 src/relay/analysis/type_solver.h                   |  23 +-
 src/relay/analysis/well_formed.cc                  |  43 +-
 src/relay/backend/build_module.cc                  |   5 +
 src/relay/backend/compile_engine.h                 |   2 +-
 src/relay/backend/graph_runtime_codegen.cc         |   4 +-
 src/relay/backend/interpreter.cc                   |   4 +-
 src/relay/backend/vm/compiler.cc                   |   1 +
 src/relay/ir/transform.cc                          |  32 +-
 src/relay/op/nn/convolution.h                      |  90 +-
 src/relay/transforms/partition_graph.cc            |   5 +
 src/relay/transforms/type_infer.cc                 | 281 +++---
 src/runtime/contrib/random/mt_random_engine.cc     |   2 +-
 src/runtime/crt/common/func_registry.c             |   6 +-
 src/target/source/codegen_c_host.cc                |   1 +
 src/tir/transforms/split_host_device.cc            |   3 +-
 tests/cpp/relay_build_module_test.cc               |   2 +
 tests/python/contrib/test_ethosn/infrastructure.py |  19 +-
 tests/python/contrib/test_ethosn/test_reshape.py   |   1 +
 tests/python/contrib/test_tedd.py                  |  24 +-
 tests/python/frontend/onnx/test_forward.py         |  46 +
 tests/python/frontend/pytorch/test_lstm.py         |   5 +-
 tests/python/frontend/tensorflow/test_forward.py   |   2 +
 tests/python/relay/test_adt.py                     | 938 +++------------------
 .../relay/test_analysis_get_calibration_data.py    |   3 +
 tests/python/relay/test_any.py                     |   7 +-
 tests/python/relay/test_backend_graph_runtime.py   |   2 +
 tests/python/relay/test_backend_interpreter.py     |   9 +-
 tests/python/relay/test_error_reporting.py         |  68 --
 tests/python/relay/test_expr_functor.py            |   3 +-
 tests/python/relay/test_ir_module.py               |  20 +-
 tests/python/relay/test_ir_parser.py               |  47 +-
 .../python/relay/test_ir_structural_equal_hash.py  |  35 +-
 tests/python/relay/test_ir_text_printer.py         |  15 +-
 tests/python/relay/test_ir_well_formed.py          |   7 +-
 tests/python/relay/test_json_runtime.py            |  24 +
 tests/python/relay/test_op_qnn_add.py              |   7 +
 tests/python/relay/test_op_qnn_concatenate.py      |   4 +
 tests/python/relay/test_op_qnn_dense.py            |   1 +
 tests/python/relay/test_op_qnn_mul.py              |   5 +
 tests/python/relay/test_op_qnn_subtract.py         |   1 +
 tests/python/relay/test_pass_alter_op_layout.py    |   5 +
 tests/python/relay/test_pass_annotate_target.py    |   2 +
 .../test_pass_combine_parallel_batch_matmul.py     |   1 +
 .../relay/test_pass_combine_parallel_conv2d.py     |   1 +
 .../relay/test_pass_combine_parallel_dense.py      |   1 +
 tests/python/relay/test_pass_eta_expand.py         |   4 +-
 tests/python/relay/test_pass_fold_constant.py      |   4 +-
 tests/python/relay/test_pass_fuse_ops.py           |  17 +-
 tests/python/relay/test_pass_gradient.py           |   9 +-
 tests/python/relay/test_pass_inline.py             |   5 +-
 tests/python/relay/test_pass_lazy_gradient_init.py |  20 +-
 tests/python/relay/test_pass_mac_count.py          |   1 +
 tests/python/relay/test_pass_manager.py            |   5 +-
 .../relay/test_pass_merge_compiler_regions.py      |   2 +
 tests/python/relay/test_pass_partial_eval.py       |  91 +-
 tests/python/relay/test_pass_partition_graph.py    |  43 +-
 tests/python/relay/test_pass_qnn_legalize.py       |   4 +
 .../relay/test_pass_remove_unused_functions.py     |  26 +-
 tests/python/relay/test_pass_simplify_inference.py |   4 +-
 tests/python/relay/test_pass_to_a_normal_form.py   |  11 +-
 .../relay/test_pass_to_basic_block_normal_form.py  |  20 +-
 tests/python/relay/test_pass_to_cps.py             |   9 +-
 tests/python/relay/test_pass_unmatched_cases.py    |  82 +-
 tests/python/relay/test_pass_vars.py               |  13 +-
 tests/python/relay/test_py_converter.py            |  54 +-
 .../relay/{test_adt.py => test_tensor_array.py}    | 918 +++-----------------
 tests/python/relay/test_type_infer.py              | 142 ++--
 tests/python/relay/test_vm.py                      |  65 +-
 tests/python/relay/test_vm_serialization.py        |  19 +-
 tests/python/relay/util/assert_diagnostic.py       |  68 ++
 tests/python/unittest/test_crt.py                  |  17 +
 tests/python/unittest/test_custom_datatypes.py     |   1 +
 .../unittest/test_tir_transform_narrow_datatype.py |   2 +
 ...fig_build_wasm.sh => task_config_build_qemu.sh} |   8 +-
 .../scripts/task_python_microtvm.sh                |   4 +
 tutorials/dev/bring_your_own_datatypes.py          |   3 +
 148 files changed, 3746 insertions(+), 3485 deletions(-)
 mode change 100644 => 100755 docker/install/ubuntu_install_arm_compute_lib.sh
 create mode 100644 include/tvm/ir/diagnostic.h
 create mode 100644 python/tvm/ir/diagnostics/__init__.py
 copy python/tvm/{arith => ir/diagnostics}/_ffi_api.py (91%)
 create mode 100644 python/tvm/relay/std/nat.rly
 create mode 100644 src/ir/diagnostic.cc
 delete mode 100644 src/parser/diagnostic.h
 create mode 100644 src/parser/span_check.cc
 create mode 100644 src/parser/span_check.h
 delete mode 100644 tests/python/relay/test_error_reporting.py
 copy tests/python/relay/{test_adt.py => test_tensor_array.py} (50%)
 create mode 100644 tests/python/relay/util/assert_diagnostic.py
 copy tests/scripts/{task_config_build_wasm.sh => task_config_build_qemu.sh} (77%)
 copy python/tvm/contrib/debugger/__init__.py => tests/scripts/task_python_microtvm.sh (96%)
 mode change 100644 => 100755