You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ha...@apache.org on 2019/11/11 23:46:37 UTC

[incubator-tvm] branch master updated (10b77ef -> 6252145)

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

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


    from 10b77ef  [TF][Relay][Op] Pass module when infer shape (#4287)
     add 6252145  Add More Shape Functions (#4179)

No new revisions were added by this update.

Summary of changes:
 python/tvm/autotvm/task/task.py   |   6 +-
 python/tvm/autotvm/util.py        |  14 +-
 python/tvm/relay/op/_reduce.py    |  68 ++++++++++
 python/tvm/relay/op/_tensor.py    |  25 ++--
 python/tvm/relay/op/_transform.py | 194 +++++++++++++++++++++++++++-
 python/tvm/relay/op/nn/_nn.py     | 170 +++++++++++++++++++++++-
 src/lang/data_layout.cc           |  18 ++-
 src/relay/op/nn/convolution.cc    |  15 ++-
 src/relay/op/nn/convolution.h     |  17 ++-
 src/relay/op/nn/nn.cc             |   7 +-
 src/relay/op/nn/pad.cc            |   8 +-
 src/relay/op/nn/pooling.cc        |  25 +++-
 src/relay/op/tensor/reduce.cc     |  15 ++-
 src/relay/op/tensor/transform.cc  |  16 ++-
 tests/python/relay/test_any.py    | 264 ++++++++++++++++++++++++++++++++++++++
 topi/include/topi/nn/flatten.h    |   4 +-
 topi/python/topi/util.py          |  14 +-
 topi/python/topi/x86/conv2d.py    |   7 +
 topi/python/topi/x86/dense.py     |  35 ++++-
 19 files changed, 864 insertions(+), 58 deletions(-)