Skip to content

Commit 1db3967

Browse files
authored
Fix lint (#2702)
1 parent 5b0cdcc commit 1db3967

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_ops/test_conv_gradfix.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def test_conv2d_transposed_cuda(self):
3737
weight = self.weight.cuda()
3838
res = conv_transpose2d(x, weight, None, 1, 1)
3939
assert res.shape == (1, 1, 32, 32)
40-
gradcheck(conv_transpose2d, (x, weight, None, 1, 1), eps=1e-2, atol=1e-2)
40+
gradcheck(
41+
conv_transpose2d, (x, weight, None, 1, 1), eps=1e-2, atol=1e-2)
4142
gradgradcheck(
4243
conv_transpose2d, (x, weight, None, 1, 1), eps=1e-2, atol=1e-2)

0 commit comments

Comments
 (0)