Skip to content

Commit

Permalink
Fix topi integration
Browse files Browse the repository at this point in the history
  • Loading branch information
vinx13 committed Apr 1, 2019
1 parent 02e60cc commit c7a51e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/autotvm/task/topi_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def _topi_nn_conv2d_transpose_nchw(*args, **kwargs):
def _topi_nn_dense(*args, **kwargs):
assert not kwargs, "Do not support kwargs in template function call"
args = deserialize_args(args)
data, weight, bias = args
data, weight, bias, _ = args
C = topi.nn.dense(*args, **kwargs)
s = topi.generic.schedule_dense([C])
if bias is not None:
Expand Down

0 comments on commit c7a51e2

Please sign in to comment.