Unverified Commit bd3ae685 authored by Matthias Fey's avatar Matthias Fey Committed by GitHub
Browse files

Merge pull request #32 from hjlin0515/master

fix typos in weighted graclus cuda
parents 65a43ac7 b3c689bc
......@@ -18,7 +18,7 @@ at::Tensor weighted_graclus(at::Tensor row, at::Tensor col, at::Tensor weight,
CHECK_CUDA(row);
CHECK_CUDA(col);
CHECK_CUDA(weight);
return graclus_cuda(row, col, num_nodes);
return weighted_graclus_cuda(row, col, weight, num_nodes);
}
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment