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/06 01:52:54 UTC

[incubator-tvm] branch master updated (f12c4fe -> d5d63a4)

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 f12c4fe  Get around limitation of g++-4.8 (#4626)
     add d5d63a4  [REFACTOR] Automatically deduce function type signature in Registry.set_body_typed (#4623)

No new revisions were added by this update.

Summary of changes:
 include/tvm/runtime/packed_func.h      | 36 +++++++++++++++
 include/tvm/runtime/registry.h         | 59 ++++++++++---------------
 src/api/api_arith.cc                   |  2 +-
 src/api/api_base.cc                    |  4 +-
 src/api/api_ir.cc                      | 44 +++++++++----------
 src/api/api_lang.cc                    | 32 +++++---------
 src/api/api_pass.cc                    |  8 ++--
 src/api/api_test.cc                    |  2 +-
 src/ir/type.cc                         |  4 +-
 src/node/env_func.cc                   |  4 +-
 src/relay/backend/compile_engine.cc    | 16 +++----
 src/relay/backend/graph_plan_memory.cc |  6 +--
 src/relay/ir/alpha_equal.cc            |  8 ++--
 src/relay/ir/base.cc                   |  2 +-
 src/relay/ir/expr.cc                   |  8 ++--
 src/relay/ir/expr_functor.cc           |  2 +-
 src/relay/ir/hash.cc                   |  4 +-
 src/relay/ir/module.cc                 | 31 ++++++-------
 src/relay/ir/op.cc                     |  4 +-
 src/relay/ir/pretty_printer.cc         |  4 +-
 src/relay/ir/type.cc                   |  5 +--
 src/relay/op/annotation/annotation.cc  |  6 +--
 src/relay/op/device_copy.cc            |  2 +-
 src/relay/op/memory/memory.cc          |  8 ++--
 src/relay/op/nn/nn.cc                  |  6 +--
 src/relay/op/nn/pooling.cc             | 56 +++++++++++-------------
 src/relay/op/op_common.h               | 80 +++++++++++++++++-----------------
 src/relay/op/tensor/reduce.cc          |  2 +-
 src/relay/op/tensor/transform.cc       |  2 +-
 src/relay/op/tensor/unary.cc           |  6 +--
 src/relay/pass/match_exhaustion.cc     |  2 +-
 src/relay/pass/quantize/quantize.cc    |  2 +-
 src/relay/pass/type_infer.cc           |  4 +-
 src/relay/qnn/op/op_common.h           | 25 +++++------
 src/runtime/vm/executable.cc           |  2 +-
 tests/cpp/packed_func_test.cc          | 18 ++++++++
 web/web_runtime.cc                     |  4 +-
 37 files changed, 266 insertions(+), 244 deletions(-)