You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by li...@apache.org on 2020/01/16 06:07:48 UTC

[incubator-tvm] branch master updated (d756d3c -> 3a672e3)

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

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


    from d756d3c  [REFACTOR][IR] Introduce include/tvm/target (#4721)
     add 3a672e3  [Arith] add SizeVar representing non-neg valued variable in a tensor shape (#4684)

No new revisions were added by this update.

Summary of changes:
 docs/api/python/tvm.rst                            |  2 +
 include/tvm/expr.h                                 | 59 ++++++++++++++++++++--
 include/tvm/ir.h                                   |  3 +-
 include/tvm/ir_functor_ext.h                       |  6 +++
 python/tvm/api.py                                  | 19 +++++++
 python/tvm/expr.py                                 | 19 +++++++
 python/tvm/hybrid/preprocessor.py                  |  2 +-
 src/api/api_ir.cc                                  |  7 ++-
 src/arithmetic/bound_deducer.cc                    |  3 +-
 src/arithmetic/const_int_bound.cc                  | 10 ++++
 src/arithmetic/int_set.cc                          |  1 +
 src/ir/attr_functor.h                              |  4 ++
 src/ir/attrs.cc                                    |  2 +-
 src/lang/expr.cc                                   | 16 +++---
 src/lang/ir.cc                                     |  5 ++
 src/pass/ir_functor.cc                             |  8 +++
 src/pass/ssa.cc                                    |  8 +--
 src/pass/tensor_core.cc                            |  2 +-
 src/schedule/bound.cc                              |  2 +-
 tests/python/contrib/test_sparse.py                |  8 +--
 tests/python/integration/test_ewise.py             |  6 +--
 tests/python/integration/test_gemm.py              |  1 -
 tests/python/integration/test_reduce.py            |  8 +--
 tests/python/integration/test_scan.py              |  4 +-
 tests/python/relay/test_ir_text_printer.py         |  6 +--
 tests/python/relay/test_op_level1.py               | 18 +++----
 tests/python/relay/test_op_level10.py              |  2 +-
 tests/python/relay/test_op_level2.py               | 49 +++++++++---------
 tests/python/relay/test_op_level3.py               | 10 ++--
 tests/python/relay/test_op_level4.py               |  2 +-
 tests/python/relay/test_op_level5.py               | 14 ++---
 .../python/unittest/test_arith_const_int_bound.py  |  9 ++++
 tests/python/unittest/test_arith_intset.py         |  1 +
 tests/python/unittest/test_arith_stmt_simplify.py  |  9 ++--
 tests/python/unittest/test_build_lower.py          |  6 +--
 tests/python/unittest/test_codegen_arm.py          |  4 +-
 tests/python/unittest/test_codegen_c_host.py       |  2 +-
 tests/python/unittest/test_codegen_device.py       |  2 +-
 tests/python/unittest/test_codegen_llvm.py         |  4 +-
 tests/python/unittest/test_codegen_rocm.py         |  4 +-
 tests/python/unittest/test_codegen_static_init.py  |  8 +--
 tests/python/unittest/test_codegen_vm_basic.py     | 12 ++---
 tests/python/unittest/test_hybrid_script.py        |  6 +--
 tests/python/unittest/test_ir_builder.py           |  8 +--
 tests/python/unittest/test_lang_buffer.py          | 46 ++++++++---------
 tests/python/unittest/test_lang_group.py           | 12 ++---
 tests/python/unittest/test_lang_schedule.py        | 30 +++++------
 tests/python/unittest/test_lang_tag.py             | 30 +++++------
 tests/python/unittest/test_lang_tensor.py          | 50 +++++++++---------
 .../unittest/test_lang_tensor_overload_op.py       |  2 +-
 tests/python/unittest/test_lang_verify_compute.py  |  4 +-
 tests/python/unittest/test_module_load.py          |  2 +-
 tests/python/unittest/test_pass_bound_checkers.py  | 44 ++++++++--------
 .../unittest/test_pass_decorate_device_scope.py    |  4 +-
 tests/python/unittest/test_pass_inline.py          |  4 +-
 tests/python/unittest/test_pass_loop_partition.py  | 37 +++++++-------
 tests/python/unittest/test_pass_makeapi.py         |  2 +-
 .../python/unittest/test_pass_split_host_device.py |  2 +-
 tests/python/unittest/test_pass_storage_flatten.py |  8 +--
 tests/python/unittest/test_pass_storage_sync.py    | 10 ++--
 tests/python/unittest/test_pass_unroll.py          |  6 +--
 topi/python/topi/nn/conv2d.py                      | 10 ++--
 62 files changed, 417 insertions(+), 267 deletions(-)