Commit b3c689bc authored by Haojie Lin's avatar Haojie Lin
Browse files

fix typos in weighted graclus cuda

parent 65a43ac7
...@@ -18,7 +18,7 @@ at::Tensor weighted_graclus(at::Tensor row, at::Tensor col, at::Tensor weight, ...@@ -18,7 +18,7 @@ at::Tensor weighted_graclus(at::Tensor row, at::Tensor col, at::Tensor weight,
CHECK_CUDA(row); CHECK_CUDA(row);
CHECK_CUDA(col); CHECK_CUDA(col);
CHECK_CUDA(weight); 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) { 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