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 load warp (and prologue), we are doing things like:
for: if elect-sync: load
That is, for every iteration, we elect a thread, and use that thread to load data.
Looks like it is better to just elect one thread at the beginning, and just use this thread to do all the work. Something like:
if elect-sync: for: load
See experiment at #3564
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In load warp (and prologue), we are doing things like:
That is, for every iteration, we elect a thread, and use that thread to load data.
Looks like it is better to just elect one thread at the beginning, and just use this thread to do all the work. Something like:
See experiment at #3564
The text was updated successfully, but these errors were encountered: