Skip to content

Commit 426e5dc

Browse files
committed
black
1 parent 211a58b commit 426e5dc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/tvm/contrib/cudnn.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,9 @@ def conv_backward_data(x, w, pad, stride, dilation, conv_mode, tensor_format, co
603603

604604
x_shape = list(x.shape)
605605

606-
assert isinstance(x.shape[0], tvm.tir.expr.IntImm), "Dynamic batch is not supported for cudnn conv2d backwad data yet."
606+
assert isinstance(
607+
x.shape[0], tvm.tir.expr.IntImm
608+
), "Dynamic batch is not supported for cudnn conv2d backwad data yet."
607609
# TODO: fix oshape
608610
oshape = x_shape
609611
if tensor_format == 0:

0 commit comments

Comments
 (0)