[Bug 2072338] Re: incorrect PMI configuration

2024-11-25 Thread Heiko
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

[Bug 2072338] Re: incorrect PMI configuration

2024-11-12 Thread Andreas Beckmann
$ 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

[Bug 2072338] Re: incorrect PMI configuration

2024-11-11 Thread edmond
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

[Bug 2072338] Re: incorrect PMI configuration

2024-11-04 Thread Joachim Jenke
@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

[Bug 2072338] Re: incorrect PMI configuration

2024-09-16 Thread Joachim Jenke
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

[Bug 2072338] Re: incorrect PMI configuration

2024-09-16 Thread Joachim Jenke
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

[Bug 2072338] Re: incorrect PMI configuration

2024-09-16 Thread Launchpad Bug Tracker
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

[Bug 2072338] Re: incorrect PMI configuration

2024-09-08 Thread Andreas Beckmann
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

[Bug 2072338] Re: incorrect PMI configuration

2024-07-05 Thread kraffenetti
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; }