You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by an...@apache.org on 2020/07/17 16:15:01 UTC

[incubator-tvm] branch master updated (3c12a5e -> ccacb1e)

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

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


    from 3c12a5e  [Test] Add missing test for fast erf (#6058)
     add ccacb1e  Fixed point multiplication improvements for AArch64 (#5980)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/attrs/transform.h       | 13 ++++++++
 include/tvm/tir/builtin.h                 |  8 +++++
 include/tvm/tir/op.h                      | 21 +++++++++++++
 python/tvm/relay/op/_tensor.py            |  8 +++++
 python/tvm/relay/op/tensor.py             | 21 +++++++++++++
 python/tvm/tir/__init__.py                |  1 +
 python/tvm/tir/op.py                      | 28 +++++++++++++++++
 src/relay/op/tensor/unary.cc              | 23 ++++++++++++++
 src/relay/qnn/op/requantize.cc            | 12 ++++++-
 src/relay/qnn/util.cc                     | 43 ++++++-------------------
 src/relay/qnn/util.h                      | 32 +++++++++++++++----
 src/relay/quantize/realize.cc             | 20 ++++++++++--
 src/relay/transforms/pattern_util.h       |  8 +++++
 src/target/intrin_rule.cc                 | 46 +++++++++++++++++++++++++++
 src/tir/op/builtin.cc                     |  5 +++
 src/tir/op/op.cc                          |  6 ++++
 src/tir/transforms/lower_intrin.cc        | 13 ++++++--
 tests/python/relay/test_op_level3.py      | 17 ++++++++++
 topi/python/topi/arm_cpu/conv2d_gemm.py   | 13 +++++---
 topi/python/topi/arm_cpu/conv2d_int8.py   | 14 ++++++++-
 topi/python/topi/arm_cpu/injective.py     |  3 +-
 topi/python/topi/arm_cpu/tensor_intrin.py | 52 +++++++++++++++++++++++++++++++
 topi/python/topi/math.py                  | 27 ++++++++++++++++
 23 files changed, 382 insertions(+), 52 deletions(-)