Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurawly committed Nov 3, 2020
1 parent 93ed8e0 commit 771cd57
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/tvm/relay/op/image/_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,13 @@ def resize_shape_func(attrs, inputs, _):
channel_axis = i
size = get_const_tuple(attrs.size)
return [
_resize_shape_func(inputs[0],
_resize_shape_func(
inputs[0],
convert(size),
convert(batch_axis),
convert(height_axis),
convert(width_axis),
convert(channel_axis)
convert(channel_axis),
)
]

Expand Down

0 comments on commit 771cd57

Please sign in to comment.