Skip to content

Commit

Permalink
rebase bug fix (apache#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoreau89 committed Dec 1, 2018
1 parent c632056 commit 826be25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/autotvm/task/nnvm_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ def __init__(self, wanted_symbols):
self.func_to_reflection = {
topi.nn.conv2d: lambda x: setattr(topi.nn, 'conv2d', x),
topi.nn.depthwise_conv2d_nchw: lambda x: setattr(topi.nn, 'depthwise_conv2d_nchw', x),
topi.nn.group_conv2d_nchw: lambda x: setattr(topi.nn, 'group_conv2d_nchw', x),
topi.nn.conv2d_transpose_nchw: lambda x: setattr(topi.nn, 'conv2d_transpose_nchw', x),
topi.nn.dense: lambda x: setattr(topi.nn, 'dense', x),
}


self.wanted_topi_funcs = []
for sym_name in wanted_symbols:
if sym_name in self.symbol2topi:
Expand Down

0 comments on commit 826be25

Please sign in to comment.