Will this fix be integrated into 24.04 LTS? This bug breaks my CI
testing in LTS-based github build action.
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2072338
Title:
incorrect PMI configuration
$ dpkg --compare-versions 4.2.0-5build3 lt 4.2.0-5.1 && echo less
less
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2072338
Title:
incorrect PMI configuration
To manage notifications about this bu
I would like to add that I too am experiencing a similar bug. Here's my
post on SO:
https://stackoverflow.com/q/79174964/5687333
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2072338
Title:
incorre
@anbe was the intention that 4.2.0-5.1 replaces 4.2.0-5build3 ? - I'm
not sure that build3 preceeds .1 . Is this package available somewhere?
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2072338
Titl
Various SO questions related to this issue:
https://stackoverflow.com/questions/78868174/mpirun-runs-serial-jobs-instead-of-parallel-jobs
https://stackoverflow.com/questions/78755724/mpi-comm-size-is-always-1
https://stackoverflow.com/questions/78815680/mpi-comm-size-always-returns-1-again
The i
Will this fix be integrated into 24.04 LTS? This bug breaks any CI
testing in LTS-based docker containers.
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2072338
Title:
incorrect PMI configuration
T
Status changed to 'Confirmed' because the bug affects multiple users.
** Changed in: mpich (Ubuntu)
Status: New => Confirmed
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2072338
Title:
inco
fixed in 4.2.0-5.1
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2072338
Title:
incorrect PMI configuration
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/m
You can see the incorrect process identification in this example using a
24.04 docker container.
```
#include
#include
#include
int main(void)
{
MPI_Init(NULL, NULL);
int rank;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
printf("hello from rank %d\n", rank);
MPI_Finalize();
return 0;
}