-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add optional send_count parameter to collectives #336
Comments
For me this seems to be more of a feature than a bug. We have simple syntax to send any interval of the data ( |
Maybe you are right and this would just bloat KaMPIng without adding much. Maybe we can just postpone this until we actually implement stuff in KaMPIng and see that it would actually be useful |
It would also prefer using std::vector<int> v = { ... };
comm.send(send_buf(make_subview(v, 0, 32)), rank(1)); //make subview returns a span |
Imho, that's overly verbose, which is something we explicitly decided that we're trying to avoid. I'm strongly pro |
This should be closed by #118 |
Right now all operations seem to just send all data they get in their send buffer. Sometimes you may want to send only a part of that. Right now the only possibility to do so would be with a span.
The text was updated successfully, but these errors were encountered: