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/04/25 01:22:19 UTC

[incubator-tvm] branch master updated (3cc4971 -> 52bf1b3)

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 3cc4971  [RUNTIME][OBJECT] Introduce static slots for common objects. (#5423)
     add 52bf1b3  [RELAY][PYTORCH]cosh,sinh,log2,log10,log1p op support (#5395)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/frontend/pytorch.py          | 13 +++++
 python/tvm/relay/op/_tensor.py                |  4 ++
 python/tvm/relay/op/_tensor_grad.py           | 34 ++++++++++++++
 python/tvm/relay/op/tensor.py                 | 60 +++++++++++++++++++++++
 python/tvm/relay/op/transform.py              |  2 +-
 python/tvm/te/__init__.py                     |  1 +
 python/tvm/tir/op.py                          |  2 +-
 src/relay/op/tensor/unary.cc                  | 44 +++++++++++++++++
 src/target/intrin_rule.cc                     | 12 +++++
 tests/python/frontend/pytorch/test_forward.py | 25 ++++++++++
 tests/python/relay/test_op_grad_level1.py     |  6 ++-
 topi/include/topi/elemwise.h                  |  4 ++
 topi/python/topi/math.py                      | 68 +++++++++++++++++++++++++++
 topi/src/elemwise.cc                          | 20 ++++++++
 14 files changed, 292 insertions(+), 3 deletions(-)