This is not the intended behavior. Please open a bug on github.
-Nathan
On Jun 23, 2017, at 08:21 AM, Joseph Schuchart wrote:
All,
We employ the following pattern to send signals between processes:
```
int com_rank, root = 0;
// allocate MPI window
MPI_Win win = allocate_win();
// do some co
All,
We employ the following pattern to send signals between processes:
```
int com_rank, root = 0;
// allocate MPI window
MPI_Win win = allocate_win();
// do some computation
...
// Process 0 waits for a signal
if (com_rank == root) {
do {
MPI_Fetch_and_op(NULL, &res,
MPI_INT, com_r
On Thu, Jun 22, 2017 at 12:41 PM, r...@open-mpi.org wrote:
> I gather you are using OMPI 2.x, yes? And you configured it
> --with-pmi=, then moved the executables/libs to your
> workstation?
correct
> I suppose I could state the obvious and say “don’t do that - just rebuild it”
correct... bu