From 771cd57b81421504dd219cac7ef2860576c21825 Mon Sep 17 00:00:00 2001 From: Leyuan Wang Date: Mon, 2 Nov 2020 16:53:07 +0000 Subject: [PATCH] resolve conflicts --- python/tvm/relay/op/image/_image.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/tvm/relay/op/image/_image.py b/python/tvm/relay/op/image/_image.py index 33373a3a2c5f..ee8a5b3883b1 100644 --- a/python/tvm/relay/op/image/_image.py +++ b/python/tvm/relay/op/image/_image.py @@ -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), ) ]