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 bf.barrier() doesn't make sure the order of the outputs is correct, for example the following code snippets
bf.barrier()
for i in range(2): bf.barrier() if rank == 0: print("A") bf.barrier() print("B")
Expected Output of bfrun -np 2
bfrun -np 2
A B B A B B
Possible output now:
A B B B A B
The text was updated successfully, but these errors were encountered:
hanbinhu
BichengYing
No branches or pull requests
Currently
bf.barrier()
doesn't make sure the order of the outputs is correct, for example the following code snippetsExpected Output of
bfrun -np 2
Possible output now:
The text was updated successfully, but these errors were encountered: