Commit 94ab0e83 authored by rusty1s's avatar rusty1s
Browse files

typo

parent b6dfb9ee
...@@ -18,7 +18,7 @@ torch::Tensor partition_cpu(torch::Tensor rowptr, torch::Tensor col, ...@@ -18,7 +18,7 @@ torch::Tensor partition_cpu(torch::Tensor rowptr, torch::Tensor col,
auto part_data = part.data_ptr<int64_t>(); auto part_data = part.data_ptr<int64_t>();
if (recursive) { if (recursive) {
METIS PartGraphRecursive(&nvtxs, &ncon, xadj, adjncy, NULL, NULL, NULL, METIS_PartGraphRecursive(&nvtxs, &ncon, xadj, adjncy, NULL, NULL, NULL,
&num_parts, NULL, NULL, NULL, &objval, part_data); &num_parts, NULL, NULL, NULL, &objval, part_data);
} else { } else {
METIS_PartGraphKway(&nvtxs, &ncon, xadj, adjncy, NULL, NULL, NULL, METIS_PartGraphKway(&nvtxs, &ncon, xadj, adjncy, NULL, NULL, NULL,
......
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