linux: add cxi* osdev for Cray Slingshot devices#764
Open
bgoglin wants to merge 1 commit intoopen-mpi:masterfrom
Open
linux: add cxi* osdev for Cray Slingshot devices#764bgoglin wants to merge 1 commit intoopen-mpi:masterfrom
bgoglin wants to merge 1 commit intoopen-mpi:masterfrom
Conversation
We already have hsi*/hsn* devices for network interfaces. libfabric rather uses CXI devices. Add those devices too, so that we don't have to make sure whether cxiX matches hsnX on machines with multiple NICs (quite common). Add with CassiniVersion and NID attributes. Gather the cxi class in hwloc-gather-topology Example of output on a Cray EX255a: $ lstopo --only osdev -v | grep Slings OSDev[Network](Slingshot) L#0 (Address=02:00:00:00:68:63) "hsn0" OSDev[Network](Slingshot) L#1 (CassiniVersion=1.1 NID=0x6863) "cxi0" OSDev[Network](Slingshot) L#4 (Address=02:00:00:00:68:62) "hsn1" OSDev[Network](Slingshot) L#5 (CassiniVersion=1.1 NID=0x6862) "cxi1" OSDev[Network](Slingshot) L#7 (Address=02:00:00:00:68:a3) "hsn2" OSDev[Network](Slingshot) L#8 (CassiniVersion=1.1 NID=0x68a3) "cxi2" OSDev[Network](Slingshot) L#10 (Address=02:00:00:00:68:a2) "hsn3" OSDev[Network](Slingshot) L#11 (CassiniVersion=1.1 NID=0x68a2) "cxi3" Thanks to Edgar Leon for the suggestion Signed-off-by: Brice Goglin <Brice.Goglin@inria.fr>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We already have hsi*/hsn* devices for network interfaces. libfabric rather uses CXI devices. Add those devices too, so that we don't have to make sure whether cxiX matches hsnX on machines with multiple NICs (quite common).
Add with CassiniVersion and NID attributes.
Gather the cxi class in hwloc-gather-topology
Example of output on a Cray EX255a:
$ lstopo --only osdev -v | grep Slings
OSDevNetwork L#0 (Address=02:00:00:00:68:63) "hsn0" OSDevNetwork L#1 (CassiniVersion=1.1 NID=0x6863) "cxi0" OSDevNetwork L#4 (Address=02:00:00:00:68:62) "hsn1" OSDevNetwork L#5 (CassiniVersion=1.1 NID=0x6862) "cxi1" OSDevNetwork L#7 (Address=02:00:00:00:68:a3) "hsn2" OSDevNetwork L#8 (CassiniVersion=1.1 NID=0x68a3) "cxi2" OSDevNetwork L#10 (Address=02:00:00:00:68:a2) "hsn3" OSDevNetwork L#11 (CassiniVersion=1.1 NID=0x68a2) "cxi3"
Thanks to Edgar Leon for the suggestion