()
| 6272 | |
| 6273 | |
| 6274 | def get_num_groups(): |
| 6275 | # Lazy import |
| 6276 | from mpi4py import MPI |
| 6277 | |
| 6278 | comm = MPI.COMM_WORLD |
| 6279 | |
| 6280 | return comm.allreduce(int(mp.my_rank() == 0), op=MPI.SUM) |
| 6281 | |
| 6282 | |
| 6283 | def get_group_masters(): |
no outgoing calls
no test coverage detected