You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2020/03/03 09:30:41 UTC

[incubator-tvm] branch master updated (09ddc3e -> 98b1759)

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

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


    from 09ddc3e  Pin xgboost dependency version to 0.90 (#4965)
     add 98b1759  [Relay] Target annotation for external codegen (#4933)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/op_attr_types.h          |  14 +++
 python/tvm/relay/op/__init__.py            |   2 +-
 python/tvm/relay/op/contrib/__init__.py    |   4 +-
 python/tvm/relay/op/contrib/contrib.py     |  19 ---
 python/tvm/relay/op/contrib/dnnl.py        |  72 +++++++++++
 python/tvm/relay/op/op.py                  |  22 ++++
 python/tvm/relay/transform.py              |  19 +++
 src/relay/pass/annotate_target.cc          | 103 ++++++++++++++++
 tests/python/relay/test_annotate_target.py | 188 +++++++++++++++++++++++++++++
 9 files changed, 421 insertions(+), 22 deletions(-)
 delete mode 100644 python/tvm/relay/op/contrib/contrib.py
 create mode 100644 python/tvm/relay/op/contrib/dnnl.py
 create mode 100644 src/relay/pass/annotate_target.cc
 create mode 100644 tests/python/relay/test_annotate_target.py