You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2020/12/22 06:40:19 UTC

[GitHub] [tvm] kongroo commented on a change in pull request #7147: [CUDA][PASS]Legalize tensorcore

kongroo commented on a change in pull request #7147:
URL: https://github.com/apache/tvm/pull/7147#discussion_r547096507



##########
File path: python/tvm/topi/nn/batch_matmul.py
##########
@@ -59,3 +60,25 @@ def batch_matmul(x, y, oshape=None):
         lambda b, i, j: te.sum(x[b if XB != 1 else 0, i, k] * y[b if YB != 1 else 0, j, k], axis=k),
         tag="batch_matmul",
     )
+
+
+@tvm.target.generic_func
+def batch_matmul_legalize(attrs, inputs, types):
+    """Legalizes Conv2D op.

Review comment:
       typo, should be batch_matmul




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org