| 38 | {} |
| 39 | |
| 40 | void DistributedTileError::sync() |
| 41 | { |
| 42 | if (!taskErrorBuffer || taskErrorBuffer->size() == 0) { |
| 43 | return; |
| 44 | } |
| 45 | |
| 46 | // TODO: USM thrashing possible issue |
| 47 | mpicommon::bcast(taskErrorBuffer->data(), |
| 48 | taskErrorBuffer->size(), |
| 49 | MPI_FLOAT, |
| 50 | 0, |
| 51 | group.comm) |
| 52 | .wait(); |
| 53 | } |
| 54 | |
| 55 | // DistributedFrameBuffer definitions /////////////////////////////////////// |
| 56 |
no test coverage detected