-
Notifications
You must be signed in to change notification settings - Fork 149
update nccl-tests.yaml paths #878
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,7 +21,7 @@ spec: | |
| - name: PATH | ||
| value: $PATH:/opt/amazon/efa/bin:/usr/bin | ||
| - name: LD_LIBRARY_PATH | ||
| value: /opt/amazon/openmpi/lib:/opt/nccl/build/lib:/opt/amazon/efa/lib:/opt/aws-ofi-nccl/install/lib:/usr/local/nvidia/lib:$LD_LIBRARY_PATH | ||
| value: /opt/amazon/openmpi/lib:/opt/nccl/build/lib:/opt/amazon/efa/lib:/opt/amazon/ofi-nccl/lib/x86_64-linux-gnu:/usr/local/cuda/lib64:$LD_LIBRARY_PATH | ||
| command: | ||
| - /opt/amazon/openmpi/bin/mpirun | ||
| - --allow-run-as-root | ||
|
|
@@ -47,7 +47,7 @@ spec: | |
| - -x | ||
| - NCCL_P2P_NET_CHUNKSIZE=524288 | ||
| - -x | ||
| - NCCL_TUNER_PLUGIN=/opt/aws-ofi-nccl/install/lib/libnccl-ofi-tuner.so | ||
| - NCCL_TUNER_PLUGIN=/opt/amazon/ofi-nccl/lib/x86_64-linux-gnu/libnccl-ofi-tuner.so | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Possible solution: adding a tuner selection mechanism here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. my bad, just There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Idea seems good though. What if we just did There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we are using the AWS EFA Installer, there is no real reason to set LD_LIBRARY_PATH both for the ofi-nccl and the libfabric as well (/opt/amazon/efa/lib) as those are already set in /etc/ld.so.conf.d. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, there is no reason to add $LD_LIBRARY_PATH, this never gets interpolated as you assume it does. |
||
| - --mca | ||
| - pml | ||
| - ^ucx | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also add
/opt/amazon/ofi-nccl/lib/aarch64-linux-gnufor compatibility with aarch64There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do we do for
NCCL_TUNER_PLUGIN=/opt/amazon/ofi-nccl/lib/x86_64-linux-gnu/libnccl-ofi-tuner.so?