We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently --procsPerNode is passed by user.
--procsPerNode
However, in MPI-3 we can determine it using shared memory communicator:
MPI-3
MPI_Comm shared_memory_comm; MPI_Comm_split_type(MPI_COMM_WORLD, MPI_COMM_TYPE_SHARED, 0, MPI_INFO_NULL, &shared_memory_comm); int procsPerNode = El::mpi::Rank(shared_memory_comm);
NB: we should also assert that each node has the same number of processes, otherwise the block distribution algorithm will fail.
The text was updated successfully, but these errors were encountered:
5aa622c
Merge pull request #169 from davidsd/env
3479051
Fix #141 Determine --procsPerNode automatically, reuse shared memory communicator, improve output
Fix davidsd#141 Determine --procsPerNode automatically
12adeeb
--procsPerNode is marked as obsolete and left for backward compatibility.
vasdommes
No branches or pull requests
Currently
--procsPerNode
is passed by user.However, in
MPI-3
we can determine it using shared memory communicator:NB: we should also assert that each node has the same number of processes, otherwise the block distribution algorithm will fail.
The text was updated successfully, but these errors were encountered: