Skip to content

Commit 4baa40d

Browse files
committed
changelog
1 parent 01b8b70 commit 4baa40d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/nn/conv/test_ppf_conv.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,10 @@ def test_ppf_conv():
6464
t = '(PairOptTensor, PairTensor, PairTensor, Tensor) -> Tensor'
6565
jit = torch.jit.script(conv.jittable(t))
6666
assert torch.allclose(
67-
jit((x1, None), (pos1, pos2), (n1, n2), edge_index), out,
68-
atol=1e-6)
67+
jit((x1, None), (pos1, pos2), (n1, n2), edge_index),
68+
out,
69+
atol=1e-6,
70+
)
6971

7072
t = '(PairOptTensor, PairTensor, PairTensor, SparseTensor) -> Tensor'
7173
jit = torch.jit.script(conv.jittable(t))

0 commit comments

Comments
 (0)