https://github.com/spcl/libnbc
https://github.com/spcl/libnbc
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/spcl/libnbc
- Owner: spcl
- License: other
- Created: 2020-02-26T12:09:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-11T08:56:48.000Z (almost 6 years ago)
- Last Synced: 2025-02-10T00:57:55.517Z (over 1 year ago)
- Language: Shell
- Size: 1.6 MB
- Stars: 3
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: CHANGELOG
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
* TODO:
- support MPI-2 collectives
- support MPI-2 Features (MPI_IN_PLACE)
- support MPI-2 Requests (really? -> I don't think so - Generalized
Requests *SUCK*:)
- BUG: if we issue on one node MPI_Igather and on another node
MPI_Ibcast, the packets will match illegally becase the tag assignment
is not aware of the collective type!
* Missing for MPI-1:
- add user defined operations (coll9, coll10, coll11, longuser)
-- how do we ensure that we do not collide with Intrinsic Operations if
we issue NBC_Ops???
-- we cannot issue NBC_Ops ... we need to issue MPI_Ops :-(.
-- hmm, we could simply wrap it and save the user defined op in a
list (hash) and search this every time we get called
--> cool idea, let's do that ...