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
In NetworkManager.cc:121, you are printing the following:
printf("[Network] rank %u (%u/%u), host %s\n", process_rank, process_rank + 1, world_size, processor_name);
However, both process_rank and world_size are signed integers (indeed process_rank is initialized as -1)
process_rank
world_size
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In NetworkManager.cc:121, you are printing the following:
However, both
process_rank
andworld_size
are signed integers (indeedprocess_rank
is initialized as -1)The text was updated successfully, but these errors were encountered: