Skip to content

Commit bd3ae68

Browse files
authored
Merge pull request #32 from hjlin0515/master
fix typos in weighted graclus cuda
2 parents 65a43ac + b3c689b commit bd3ae68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuda/graclus.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ at::Tensor weighted_graclus(at::Tensor row, at::Tensor col, at::Tensor weight,
1818
CHECK_CUDA(row);
1919
CHECK_CUDA(col);
2020
CHECK_CUDA(weight);
21-
return graclus_cuda(row, col, num_nodes);
21+
return weighted_graclus_cuda(row, col, weight, num_nodes);
2222
}
2323

2424
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {

0 commit comments

Comments
 (0)