Skip to content

Commit 463574c

Browse files
committed
fixed conv2d check
1 parent 588c5ab commit 463574c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tvm/relay/op/contrib/cutlass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def check_conv2d(call):
105105
return False
106106
IC = data.shape[3]
107107
OC = weight.shape[0]
108-
return not is_depthwise_conv2d(IC, OC, call.attrs.groups)
108+
return not is_depthwise_conv2d(IC, OC, conv2d.attrs.groups)
109109

110110

111111
def partition_for_cutlass(mod):

0 commit comments

Comments
 (0)