You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by dr...@apache.org on 2022/08/19 23:31:36 UTC

[tvm] branch main updated (9d6039b879 -> bdcfa01eae)

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

driazati pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 9d6039b879 fix group_conv3d caculate error (#12500)
     add bdcfa01eae [Fix] Fix some typos (#11503)

No new revisions were added by this update.

Summary of changes:
 NEWS.md                                                    |  4 ++--
 apps/ios_rpc/tvmrpc/TVMRuntime.mm                          |  2 +-
 apps/topi_recipe/README.md                                 |  2 +-
 cmake/modules/HexagonSDK.cmake                             |  2 +-
 docs/arch/pass_infra.rst                                   |  2 +-
 docs/arch/security.rst                                     |  2 +-
 docs/how_to/deploy/index.rst                               |  2 +-
 docs/index.rst                                             |  2 +-
 docs/reference/langref/hybrid_script.rst                   |  2 +-
 gallery/how_to/optimize_operators/opt_gemm.py              |  2 +-
 include/tvm/ir/type.h                                      |  2 +-
 include/tvm/meta_schedule/cost_model.h                     |  2 +-
 include/tvm/relay/transform.h                              |  2 +-
 include/tvm/runtime/c_backend_api.h                        |  2 +-
 include/tvm/runtime/crt/module.h                           |  2 +-
 include/tvm/runtime/vm/vm.h                                |  2 +-
 include/tvm/target/target.h                                |  2 +-
 include/tvm/te/schedule.h                                  |  4 ++--
 include/tvm/te/schedule_pass.h                             |  2 +-
 include/tvm/tir/op.h                                       | 12 ++++++------
 include/tvm/topi/transform.h                               | 10 +++++-----
 python/tvm/_ffi/_ctypes/packed_func.py                     |  2 +-
 python/tvm/_ffi/runtime_ctypes.py                          |  2 +-
 python/tvm/contrib/cutlass/build.py                        |  2 +-
 python/tvm/contrib/ethosu/cascader/device_config.py        |  2 +-
 python/tvm/contrib/pipeline_executor_build.py              |  2 +-
 python/tvm/driver/tvmc/micro.py                            |  6 +++---
 python/tvm/error.py                                        |  2 +-
 python/tvm/ir/base.py                                      |  2 +-
 python/tvm/ir/diagnostics/__init__.py                      |  2 +-
 python/tvm/relay/backend/contrib/ethosu/legalize.py        |  2 +-
 python/tvm/relay/frontend/caffe.py                         |  2 +-
 python/tvm/relay/frontend/onnx.py                          |  2 +-
 python/tvm/relay/frontend/qnn_torch.py                     |  2 +-
 python/tvm/relay/op/_transform.py                          |  4 ++--
 python/tvm/relay/op/algorithm.py                           |  2 +-
 python/tvm/rpc/minrpc.py                                   |  2 +-
 python/tvm/rpc/proxy.py                                    |  2 +-
 python/tvm/script/parser.py                                |  2 +-
 python/tvm/target/tag.py                                   |  2 +-
 python/tvm/te/operation.py                                 |  4 ++--
 python/tvm/tir/op.py                                       |  2 +-
 python/tvm/tir/usmp/utils.py                               |  2 +-
 python/tvm/topi/arm_cpu/conv2d_alter_op.py                 |  2 +-
 python/tvm/topi/arm_cpu/tensor_intrin.py                   |  2 +-
 python/tvm/topi/cuda/sort.py                               |  4 ++--
 python/tvm/topi/cuda/sparse.py                             |  4 ++--
 python/tvm/topi/cuda/unique.py                             |  2 +-
 python/tvm/topi/transform.py                               |  4 ++--
 python/tvm/topi/unique.py                                  |  2 +-
 src/parser/parser.cc                                       |  2 +-
 src/printer/meta_data.h                                    |  2 +-
 src/relay/op/nn/pooling.cc                                 |  4 ++--
 src/relay/op/tensor/transform.cc                           |  6 +++---
 src/relay/qnn/op/add.cc                                    |  4 ++--
 src/relay/qnn/op/mul.cc                                    |  2 +-
 src/relay/qnn/op/subtract.cc                               |  2 +-
 src/relay/transforms/convert_sparse_conv2d.cc              |  2 +-
 src/relay/transforms/dead_code.cc                          |  2 +-
 src/relay/transforms/fake_quantization_to_integer.cc       |  2 +-
 src/relay/transforms/fold_scale_axis.cc                    |  2 +-
 src/relay/transforms/to_cps.cc                             |  2 +-
 src/runtime/c_runtime_api.cc                               |  2 +-
 src/runtime/hexagon/hexagon_user_dma.cc                    |  2 +-
 src/runtime/hexagon/rpc/simulator/rpc_server.cc            |  2 +-
 src/runtime/thread_pool.cc                                 |  2 +-
 src/runtime/thread_storage_scope.h                         |  2 +-
 src/support/generic_arena.h                                |  2 +-
 src/target/source/codegen_c.cc                             |  2 +-
 src/te/operation/cross_thread_reduction.cc                 |  2 +-
 src/te/schedule/schedule_postproc_to_primfunc.cc           |  2 +-
 src/tir/transforms/common_subexpr_elim.cc                  |  6 +++---
 src/tir/transforms/common_subexpr_elim_tools.cc            |  2 +-
 src/tir/transforms/inject_software_pipeline.cc             |  2 +-
 src/tir/transforms/storage_flatten.cc                      |  2 +-
 .../python/contrib/test_arm_compute_lib/infrastructure.py  |  2 +-
 tests/python/contrib/test_bnns/infrastructure.py           |  2 +-
 .../contrib/test_hexagon/conv2d/test_conv2d_conv2d.md      |  2 +-
 tests/python/contrib/test_tensorrt_int8_exp.py             |  2 +-
 tests/python/frontend/onnx/test_forward.py                 | 14 ++++++--------
 tests/python/unittest/test_tvmscript_syntax_sugar.py       |  2 +-
 version.py                                                 |  2 +-
 vta/python/vta/top/graphpack.py                            |  2 +-
 vta/tutorials/frontend/deploy_detection.py                 |  2 +-
 84 files changed, 113 insertions(+), 115 deletions(-)