-
Notifications
You must be signed in to change notification settings - Fork 22
nicp2p Preset #228
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: candidate
Are you sure you want to change the base?
nicp2p Preset #228
Conversation
src/client/Presets/NicPeerToPeer.hpp
Outdated
| // Step 1: Generate standard round-robin tournament (maximum parallelism) | ||
| std::vector<std::vector<std::pair<int, int>>> fullSchedule; | ||
|
|
||
| if (N % 2 == 0) { |
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.
Is it necessary to break this down into 2 cases?
Can you just pad odd N to N+1, and then simply not create pair if playing against "dummy" team?
src/client/Presets/NicPeerToPeer.hpp
Outdated
| TransferBench::TestResults results; | ||
|
|
||
| // Calculate total IB devices per rank | ||
| // TODO: assert same # of NIC all ranks |
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.
If this is necessary for this preset, then add that check in. This can be checked by querying # nics per rank
Motivation
Adding a preset of internode p2p transfers
Technical Details
Transfers between any pair of NICs from all nodes will be executed serially. Results will be displayed and sorted.
Test Plan
Test Result
Example outputs


Submission Checklist