Skip to content

Commit f96fa82

Browse files
committed
Corrected ordering of _sum_products arguments
1 parent b7ee9e6 commit f96fa82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tvm/topi/image/resize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ def _resize_3d(
12051205
l = [[0 for i in range(4)] for j in range(4)]
12061206
for j in range(4):
12071207
for i in range(4):
1208-
l[j][i] = _sum_products(p[j][i], wx)
1208+
l[j][i] = _sum_products(wx, p[j][i])
12091209
col0 = _sum_products(wy, l[0])
12101210
col1 = _sum_products(wy, l[1])
12111211
col2 = _sum_products(wy, l[2])

0 commit comments

Comments
 (0)