Re: [deal.II] Several MPI jobs in a single machine

2018-12-04 Thread Wolfgang Bangerth
On 12/4/18 7:58 AM, Daniel Garcia-Sanchez wrote: > > Although if I run in the same 16 core machine: > > * 16 instances of  ./executable > * 16 instances of mpirun -n 1 ./executable > > Then the results are different. I think that the reason is that mpirun > (OpenMPI) will bound all the inst

Re: [deal.II] Several MPI jobs in a single machine

2018-12-04 Thread Daniel Garcia-Sanchez
> There shouldn't be a difference between running a job via >./executable > and >mpirun -n 1 ./executable. > > Are your timing results reproducible? > > > My timing results are reproducible. As expected, there is no difference between ./executable and mpirun -n 1 ./executable. A

Re: [deal.II] Several MPI jobs in a single machine

2018-12-04 Thread Wolfgang Bangerth
On 12/4/18 4:30 AM, Daniel Garcia-Sanchez wrote: > Hi, > > I'm fine tuning a simulation in the frequency domain (similar to > https://github.com/dealii/dealii/pull/6747). Because it is in the frequency > domain I can parallelize: > > 1. Using MPI > 2. Running several simulations in parallel f

[deal.II] Several MPI jobs in a single machine

2018-12-04 Thread Daniel Garcia-Sanchez
Hi, I'm fine tuning a simulation in the frequency domain (similar to https://github.com/dealii/dealii/pull/6747). Because it is in the frequency domain I can parallelize: 1. Using MPI 2. Running several simulations in parallel for different independent frequency ranges. 3. A combin