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/16 04:23:21 UTC

[incubator-tvm] branch master updated (51b5153 -> d756d3c)

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 51b5153  [VERSION] Update mainline version to 0.7.dev0 (#4720)
     add d756d3c  [REFACTOR][IR] Introduce include/tvm/target (#4721)

No new revisions were added by this update.

Summary of changes:
 .gitignore                             |   2 +-
 CMakeLists.txt                         |   1 +
 include/tvm/build_module.h             | 143 +--------------
 include/tvm/target/target.h            | 181 +++++++++++++++++++
 include/tvm/{ => target}/target_info.h |  13 +-
 src/codegen/build_module.cc            | 280 -----------------------------
 src/pass/storage_access.cc             |   2 +-
 src/pass/storage_flatten.cc            |   2 +-
 src/pass/storage_rewrite.cc            |   2 +-
 src/pass/tensor_core.cc                |   2 +-
 src/target/target.cc                   | 319 +++++++++++++++++++++++++++++++++
 src/{lang => target}/target_info.cc    |  18 +-
 12 files changed, 525 insertions(+), 440 deletions(-)
 create mode 100644 include/tvm/target/target.h
 rename include/tvm/{ => target}/target_info.h (90%)
 create mode 100644 src/target/target.cc
 rename src/{lang => target}/target_info.cc (75%)