Skip to content

Commit

Permalink
fix inconsistent tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyu-guo committed Oct 16, 2019
1 parent 11a3a77 commit 71e6db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions topi/python/topi/arm_cpu/depthwise_conv2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _callback(op):
data = data_pad.op.input_tensors[0]
_schedule(cfg, s, data, data_pad, kernel, output)

if op.tag == 'spatial_depthwise_conv_nchw_output':
if op.tag == 'spatial_depthwise_conv2d_nchw_output':
output = op.output(0)
conv = op.input_tensors[0]
data_vec = conv.op.input_tensors[0]
Expand Down Expand Up @@ -316,7 +316,7 @@ def _decl_spatial_pack(cfg, data, kernel, strides, padding, dilation, out_dtype,
conv[n,
idxdiv(co, VC), idxdiv(h, VH), idxdiv(w, VW),
idxmod(h, VH), idxmod(w, VW), idxmod(co, VC)],
name='output_unpack', tag='spatial_depthwise_conv_nchw_output')
name='output_unpack', tag='spatial_depthwise_conv2d_nchw_output')
return output

def _schedule_spatial_pack(cfg, s, data_vec, kernel_vec,
Expand Down

0 comments on commit 71e6db3

Please sign in to comment.