Re: [Mpi-forum] Problem with large number of process
Hi Ichrak, This mailing list is for those involved in creating the MPI Standard to discuss things directly related to standardizing MPI. It's not for answering questions about problems with an MPI program or implementation. The good news is that there are great alternatives with places to ask those questions. For questions/problems with MPI programs it's best to use something like stackoverflow.com where there's a pretty good community of people who can help answer all kinds of programming questions (including MPI - http://stackoverflow.com/questions/tagged/mpi). If you think you've found a bug with a particular implementation, you can use the support structure put in place for that implementation: MPICH - [email protected] Open MPI - [email protected]<mailto:[email protected]> Commercial implementations have various websites, email addresses, etc. that you can find as well. Please redirect your question to the more appropriate venue. Thanks, Wesley On January 5, 2017 at 10:21:25 AM, Ichrak Mehrez ([email protected]<mailto:[email protected]>) wrote: Hello, I have a simple MPI program, everything is fine for a small number of processes = {10,100, and 1000}, the problem is that for 10000 processes I have a runtime error. The attached file contains the generated error messages for n = 10 000. * I tested my code on 4 nodes cluster within grid5000 platform (on each node: 2 CPUs Intel Xeon E5-2630 v3, 8 cores/CPU, 126GB RAM, 5x558GB HDD, 186GB SSD, 10Gbps ethernet) * The mpi.c file contains the following code: int main(int argc, char *argv[]) { int myRank, numProcs; MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &myRank); MPI_Comm_size(MPI_COMM_WORLD, &numProcs); if(myRank==0) printf("%d -%d\n",numProcs,myRank); MPI_Finalize(); return(0); } Thank you. _______________________________________________ mpi-forum mailing list [email protected] https://lists.mpi-forum.org/mailman/listinfo/mpi-forum
participants (1)
-
Bland, Wesley