1 parent 5af902d commit 56c55ceCopy full SHA for 56c55ce
1 file changed
test/test_graclus.py
@@ -51,6 +51,4 @@ def test_graclus_cluster(test, dtype, device):
51
cluster = graclus_cluster(row, col, weight)
52
assert_correct(row, col, cluster)
53
54
- jit = torch.compile(graclus_cluster)
55
- cluster = jit(row, col, weight)
56
- assert_correct(row, col, cluster)
+ # graclus is not torch.compile compatible.
0 commit comments