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/06/20 02:36:35 UTC

[incubator-tvm] branch master updated (11349c6 -> 2dcfd61)

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 11349c6  [DOCS] Update has_dtype/has_shape to pattern lang doc (#5847)
     add 2dcfd61  [Target] Introduce Target Id Registry (#5838)

No new revisions were added by this update.

Summary of changes:
 include/tvm/ir/op.h                  |   8 -
 include/tvm/node/attr_registry_map.h |   2 +
 include/tvm/runtime/registry.h       |   8 +
 include/tvm/target/target_id.h       | 306 +++++++++++++++++++++++++++++++++++
 src/node/attr_registry.h             |   1 +
 src/target/target_id.cc              | 164 +++++++++++++++++++
 tests/cpp/target_test.cc             |  88 ++++++++++
 7 files changed, 569 insertions(+), 8 deletions(-)
 create mode 100644 include/tvm/target/target_id.h
 create mode 100644 src/target/target_id.cc
 create mode 100644 tests/cpp/target_test.cc