use `0` as tag in MPI to avoid too large value
1 unresolved thread
1 unresolved thread
Some versions of OpenMPI have a lower limit than 12345678
; the MPI
standard only guarantees values up to at least 32768
are valid.
Closes: #19 (closed)
Merge request reports
Activity
added bug label
enabled an automatic merge when the pipeline for 1513265d succeeds
221 221 std::array<MPI_Request,N> requests_send; 222 222 std::array<MPI_Request,N> requests_recv; 223 223 224 int tag = 12345678; 224 int const tag = 0; changed this line in version 2 of the diff
As mentioned in #19 (closed) I'm not fond of
tag = 0
. But ... which value should tag have?added 1 commit
- e307610b - use `0` as tag in MPI to avoid too large value
mentioned in issue #19 (closed)
mentioned in commit ffa892fb
Please register or sign in to reply