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

[incubator-tvm] branch master updated (8037fc8 -> edc3674)

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 8037fc8  fix RemoveUnusedFunctions pass
     add edc3674  [REFACTOR][IR] Move error.h into ir (#4701)

No new revisions were added by this update.

Summary of changes:
 include/tvm/{relay => ir}/error.h   | 110 +++++++++++++++++++++---------------
 include/tvm/relay/expr_functor.h    |   5 +-
 include/tvm/relay/pattern_functor.h |   4 +-
 include/tvm/relay/transform.h       |   2 +-
 src/{relay => }/ir/error.cc         |  24 ++++----
 src/relay/backend/vm/compiler.cc    |   2 +-
 src/relay/backend/vm/compiler.h     |   2 +-
 src/relay/op/tensor/transform.cc    |   4 +-
 src/relay/op/tensor/transform.h     |  22 ++++----
 src/relay/op/type_relations.cc      |   6 +-
 src/relay/op/type_relations.h       |   2 +-
 src/relay/pass/kind_check.cc        |  28 +++++----
 src/relay/pass/match_exhaustion.cc  |   2 +-
 src/relay/pass/type_infer.cc        |  56 ++++++++++--------
 src/relay/pass/type_solver.cc       |  24 ++++----
 src/relay/pass/type_solver.h        |   2 +-
 src/relay/qnn/op/concatenate.cc     |  14 +++--
 17 files changed, 175 insertions(+), 134 deletions(-)
 rename include/tvm/{relay => ir}/error.h (66%)
 rename src/{relay => }/ir/error.cc (88%)