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 2022/01/19 19:11:05 UTC

[tvm] branch main updated (a9b1d5b -> fd5915a)

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

masahi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from a9b1d5b  Add sccache to docker images (#9844)
     add fd5915a  [Relay] Add `conv2d_backward_weight` op (without topi) (#9954)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/op/_tensor_grad.py                | 53 ++++---------
 python/tvm/relay/op/nn/_nn.py                      | 78 +++++++++++++++++++
 python/tvm/relay/op/nn/nn.py                       | 51 +++++++++++++
 python/tvm/relay/testing/__init__.py               |  1 +
 python/tvm/topi/testing/__init__.py                |  1 +
 .../topi/testing/conv2d_backcward_weight_python.py | 76 ++++++++++++++++++
 src/relay/op/nn/convolution.cc                     | 89 ++++++++++++++++++++++
 tests/python/relay/test_op_grad_level2.py          | 44 ++++++++---
 8 files changed, 344 insertions(+), 49 deletions(-)
 create mode 100644 python/tvm/topi/testing/conv2d_backcward_weight_python.py