Can you have CCS only use soem of the CPUs on a node ?
-
03/صفر/1429 11:56 م
We have some new 8 core machines on our CCS, is there a way to tell CCS to only use 4 of 8 for these new machines?
جميع الردود
-
06/صفر/1429 12:36 ص
Hi,
We have nice support for core placement in the beta of our next product. You could specify 2 cores per socket kind of job placement.
For more information on the beta please see: http://connect.microsoft.com or http://www.microsoft.com/hpc.
- تم وضع علامة كإجابة بواسطة Josh Barnard 29/ربيع الأول/1430 12:28 ص
-
09/صفر/1429 08:02 م
Are you using MPI? in that case you can tell MPI to use only some of the CPU's. For example,
job submit ..... mpiexec -hosts %%CCP_NODES: 8= 2%%
(note the space before 8 and before 2. the double %% is to escape the % and pass it for execution on the node)
this command will replace 8 with 2 and will end up running 2 processes on each node (rather than 8)
hope this helps,
.Erez
- تم وضع علامة كإجابة بواسطة Josh Barnard 29/ربيع الأول/1430 12:28 ص