[mpich-discuss] Restrict number of cores, not threads

Bob Ilgner bobilgner at gmail.com
Wed Jul 10 12:27:40 CDT 2013


Let me phrase this question differently.

I want my mpi executable to only use 10 out of the 256 cores on this smp
machine.

Is it possible to configure mpi to do this? If so, what would one do this
with mpi.

bob


On Wed, Jul 10, 2013 at 4:46 PM, Wesley Bland <wbland at mcs.anl.gov> wrote:

> Threads in MPI are not ranks. When you say you want to launch with -n 100,
> you will always get 100 processes, not threads. If you want 10 threads on
> 10 cores, you will need to launch with -n 10, then add your threads
> according to your threading library.
>
> Note that threads in MPI do not get their own rank currently. They all
> share the same rank as the process in which they reside, so if you need to
> be able to handle things with different ranks, you'll need to use actual
> processes.
>
> Wesley
>
> On Jul 10, 2013, at 9:41 AM, Bob Ilgner <bobilgner at gmail.com> wrote:
>
> > Dear all,
> >
> > I am working on a shared memory processor with 256 cores. I am working
> from the command line directly.
> >
> > Can I restict the number of cores that I deploy.The command
> >
> > mpirun -n 100 myprog
> >
> >
> > will automatically start on 100 cores. I wish to use only 10 cores and
> have 10 threads on each core. Can I do this with mpich ?  Rememebre that
> this an smp abd I can not identify each core individually(as in a cluster)
> >
> > Regards, bob
> > _______________________________________________
> > discuss mailing list     discuss at mpich.org
> > To manage subscription options or unsubscribe:
> > https://lists.mpich.org/mailman/listinfo/discuss
>
> _______________________________________________
> discuss mailing list     discuss at mpich.org
> To manage subscription options or unsubscribe:
> https://lists.mpich.org/mailman/listinfo/discuss
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mpich.org/pipermail/discuss/attachments/20130710/3ba1131b/attachment.html>


More information about the discuss mailing list