-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cut peak memory footprint in per_v_transform_reduce_dst_key_aggregated_outgoing_e #4484
Cut peak memory footprint in per_v_transform_reduce_dst_key_aggregated_outgoing_e #4484
Conversation
@jnke2016 After confirming that the input size of sort_by_key grows as we increase # GPUs (and graph size grows proportional to # GPUs), you can try this. With this approach, we might be able to avoid OOM for 2-4x more GPUs. But we may encounter OOM again later especially for graphs with small E / V. To solve, this we need a multi-GPU reduce function that supports a custom reduce function (@naimnv also needs this to improve the performance of matching). |
Can you also fix the out of memory allocation bug in Louvain in this PR please? |
/merge |
…to enh_mem_footprint_prim
…to enh_mem_footprint_prim
Cut peak memory usage.
For an ultimate solution, we need to implement our own function to emulate ncclReduce with a custom reduction operator.