You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/01/21 19:58:31 UTC

[incubator-tvm] branch master updated (e4d817d -> 55d8192)

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

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


    from e4d817d  [REFACTOR] Establish printer in the source folder (#4752)
     add 55d8192  [REFACTOR] top->te (#4759)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   2 +-
 include/tvm/arith/bound.h                          |   4 +-
 include/tvm/driver/driver.h                        |   8 +-
 include/tvm/relay/op_attr_types.h                  |  20 +--
 include/tvm/{top => te}/operation.h                |  19 ++-
 include/tvm/{top => te}/schedule.h                 |  18 ++-
 include/tvm/{top => te}/schedule_pass.h            |  14 +--
 include/tvm/{top => te}/tensor.h                   |  20 ++-
 include/tvm/{top => te}/tensor_intrin.h            |  15 ++-
 include/tvm/tir/ir_pass.h                          |   8 +-
 src/api/api_arith.cc                               |   2 +-
 src/api/api_base.cc                                |   2 +-
 src/api/api_lang.cc                                |  10 +-
 src/api/api_pass.cc                                |   4 +-
 src/api/api_schedule.cc                            |  12 +-
 src/api/api_test.cc                                |   2 +-
 src/arith/domain_touched.cc                        |   8 +-
 src/contrib/hybrid/codegen_hybrid.h                |   4 +-
 src/driver/driver.cc                               |  26 ++--
 src/ir/expr.cc                                     |   6 +-
 src/relay/backend/compile_engine.cc                | 138 ++++++++++----------
 src/relay/backend/compile_engine.h                 |   4 +-
 src/relay/backend/utils.h                          |   2 +-
 src/relay/backend/vm/compiler.cc                   |   2 +-
 src/relay/op/annotation/annotation.cc              |  30 ++---
 src/relay/op/debug.cc                              |   6 +-
 src/relay/op/memory/memory.cc                      |  20 +--
 src/relay/op/nn/nn.cc                              |  28 ++---
 src/relay/op/nn/pad.cc                             |   6 +-
 src/relay/op/nn/pooling.cc                         |  42 +++----
 src/relay/op/tensor/binary.cc                      |   4 +-
 src/relay/op/tensor/reduce.cc                      |  44 +++----
 src/relay/op/tensor/transform.cc                   | 140 ++++++++++-----------
 src/relay/op/tensor/unary.cc                       |  14 +--
 src/relay/op/vision/yolo.cc                        |   4 +-
 src/relay/pass/alter_op_layout.cc                  |   6 +-
 src/relay/pass/convert_layout.cc                   |   6 +-
 src/relay/pass/gradient.cc                         |   2 +-
 src/relay/pass/legalize.cc                         |   2 +-
 src/{top => te}/operation/compute_op.cc            |  12 +-
 src/{top => te}/operation/compute_op.h             |  12 +-
 .../operation/cross_thread_reduction.cc            |   4 +-
 src/{top => te}/operation/extern_op.cc             |   6 +-
 src/{top => te}/operation/hybrid_op.cc             |  16 +--
 src/{top => te}/operation/hybrid_op.h              |  12 +-
 src/{top => te}/operation/op_util.cc               |   8 +-
 src/{top => te}/operation/op_util.h                |  12 +-
 src/{top => te}/operation/placeholder_op.cc        |   6 +-
 src/{top => te}/operation/scan_op.cc               |   6 +-
 src/{top => te}/operation/tensor_compute_op.cc     |  14 +--
 src/{top => te}/operation/tensorize.cc             |  14 +--
 src/{top => te}/schedule/auto_inline_elem_wise.cc  |   8 +-
 src/{top => te}/schedule/bound.cc                  |   8 +-
 src/{top => te}/schedule/graph.cc                  |  14 +--
 src/{top => te}/schedule/graph.h                   |  14 +--
 src/{top => te}/schedule/message_passing.cc        |   4 +-
 src/{top => te}/schedule/message_passing.h         |  14 +--
 .../schedule/schedule_dataflow_rewrite.cc          |  20 +--
 src/{top => te}/schedule/schedule_lang.cc          |  14 +--
 src/{top => te}/schedule/schedule_ops.cc           |   8 +-
 src/{top => te}/tensor.cc                          |  10 +-
 src/tir/pass/inject_prefetch.cc                    |   2 +-
 src/tir/pass/storage_flatten.cc                    |  14 +--
 src/tir/pass/tensor_core.cc                        |  12 +-
 src/tir/pass/verify_compact_buffer.cc              |   2 +-
 tests/cpp/build_module_test.cc                     |   6 +-
 tests/cpp/expr_test.cc                             |   2 +-
 tests/cpp/ir_simplify_test.cc                      |   6 +-
 tests/cpp/relay_build_module_test.cc               |   2 +-
 tests/cpp/relay_pass_type_infer_test.cc            |   2 +-
 tests/cpp/relay_transform_sequential.cc            |   2 +-
 tests/cpp/simple_passes_test.cc                    |   6 +-
 tests/cpp/tensor_test.cc                           |  14 +--
 tests/cpp/topi_ewise_test.cc                       |   2 +-
 tests/cpp/utvm_runtime_standalone_test.cc          |   2 +-
 topi/include/topi/broadcast.h                      |  51 ++++----
 topi/include/topi/contrib/cublas.h                 |   6 +-
 topi/include/topi/contrib/rocblas.h                |   4 +-
 topi/include/topi/cuda/dense.h                     |  34 ++---
 topi/include/topi/cuda/injective.h                 |  14 +--
 topi/include/topi/cuda/normalization.h             |  18 +--
 topi/include/topi/cuda/pooling.h                   |  26 ++--
 topi/include/topi/cuda/reduction.h                 |  20 +--
 topi/include/topi/cuda/softmax.h                   |  22 ++--
 topi/include/topi/detail/array_utils.h             |   4 +-
 topi/include/topi/detail/broadcast.h               |  18 ++-
 topi/include/topi/detail/constant_utils.h          |   2 +-
 topi/include/topi/detail/extern.h                  |   4 +-
 topi/include/topi/detail/fuse.h                    |   4 +-
 topi/include/topi/detail/pad_utils.h               |   2 +-
 topi/include/topi/detail/ravel_unravel.h           |   7 +-
 topi/include/topi/detail/tensor_utils.h            |   2 +-
 topi/include/topi/elemwise.h                       |   2 +-
 topi/include/topi/generic/default.h                |  14 +--
 topi/include/topi/generic/extern.h                 |  16 +--
 topi/include/topi/generic/injective.h              |  14 +--
 topi/include/topi/image/resize.h                   |  15 ++-
 topi/include/topi/nn.h                             |  94 +++++++-------
 topi/include/topi/nn/batch_matmul.h                |  16 +--
 topi/include/topi/nn/bias_add.h                    |  15 ++-
 topi/include/topi/nn/bnn.h                         |  26 ++--
 topi/include/topi/nn/dense.h                       |  20 +--
 topi/include/topi/nn/dilate.h                      |  12 +-
 topi/include/topi/nn/flatten.h                     |  14 +--
 topi/include/topi/nn/l2_normalize.h                |  10 +-
 topi/include/topi/nn/local_response_norm.h         |  16 +--
 topi/include/topi/nn/mapping.h                     |  12 +-
 topi/include/topi/nn/pooling.h                     |  64 +++++-----
 topi/include/topi/nn/softmax.h                     |  33 +++--
 topi/include/topi/nn/upsampling.h                  |   2 +-
 topi/include/topi/reduction.h                      |  28 ++---
 topi/include/topi/rocm/dense.h                     |  18 +--
 topi/include/topi/rocm/injective.h                 |  10 +-
 topi/include/topi/rocm/normalization.h             |   8 +-
 topi/include/topi/rocm/pooling.h                   |  15 ++-
 topi/include/topi/rocm/reduction.h                 |  10 +-
 topi/include/topi/rocm/softmax.h                   |  10 +-
 topi/include/topi/transform.h                      |  29 +++--
 topi/include/topi/vision/reorg.h                   |  17 ++-
 topi/include/topi/x86/bnn.h                        |  10 +-
 topi/include/topi/x86/default.h                    |  12 +-
 topi/include/topi/x86/injective.h                  |  12 +-
 topi/src/topi.cc                                   |  36 +++---
 123 files changed, 923 insertions(+), 939 deletions(-)
 rename include/tvm/{top => te}/operation.h (98%)
 rename include/tvm/{top => te}/schedule.h (99%)
 rename include/tvm/{top => te}/schedule_pass.h (92%)
 rename include/tvm/{top => te}/tensor.h (96%)
 rename include/tvm/{top => te}/tensor_intrin.h (96%)
 rename src/{top => te}/operation/compute_op.cc (98%)
 rename src/{top => te}/operation/compute_op.h (95%)
 rename src/{top => te}/operation/cross_thread_reduction.cc (99%)
 rename src/{top => te}/operation/extern_op.cc (98%)
 rename src/{top => te}/operation/hybrid_op.cc (98%)
 rename src/{top => te}/operation/hybrid_op.h (94%)
 rename src/{top => te}/operation/op_util.cc (98%)
 rename src/{top => te}/operation/op_util.h (95%)
 rename src/{top => te}/operation/placeholder_op.cc (97%)
 rename src/{top => te}/operation/scan_op.cc (99%)
 rename src/{top => te}/operation/tensor_compute_op.cc (97%)
 rename src/{top => te}/operation/tensorize.cc (98%)
 rename src/{top => te}/schedule/auto_inline_elem_wise.cc (96%)
 rename src/{top => te}/schedule/bound.cc (98%)
 rename src/{top => te}/schedule/graph.cc (98%)
 rename src/{top => te}/schedule/graph.h (95%)
 rename src/{top => te}/schedule/message_passing.cc (99%)
 rename src/{top => te}/schedule/message_passing.h (95%)
 rename src/{top => te}/schedule/schedule_dataflow_rewrite.cc (98%)
 rename src/{top => te}/schedule/schedule_lang.cc (99%)
 rename src/{top => te}/schedule/schedule_ops.cc (99%)
 rename src/{top => te}/tensor.cc (97%)