Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Meteorix committed Dec 22, 2020
1 parent a2277c3 commit 3270634
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/tvm/topi/nn/batch_matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ def batch_matmul(x, y, oshape=None):

@tvm.target.generic_func
def batch_matmul_legalize(attrs, inputs, types):
"""Legalizes Conv2D op.
"""Legalizes batch_matmul op.
Parameters
----------
attrs : tvm.ir.Attrs
Attributes of current convolution
Attributes of current batch_matmul
inputs : list of tvm.relay.Expr
The args of the Relay expr to be legalized
types : list of types
Expand Down
4 changes: 2 additions & 2 deletions python/tvm/topi/nn/dense.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ def dense(data, weight, bias=None, out_dtype=None):

@tvm.target.generic_func
def dense_legalize(attrs, inputs, types):
"""Legalizes Conv2D op.
"""Legalizes dense op.
Parameters
----------
attrs : tvm.ir.Attrs
Attributes of current convolution
Attributes of current dense
inputs : list of tvm.relay.Expr
The args of the Relay expr to be legalized
types : list of types
Expand Down

0 comments on commit 3270634

Please sign in to comment.