Processors Command

From OSUPDOCS
Jump to navigation Jump to search

Run parallel calculations.

Number of Processors

In scripting files, the Processors command selects the number of processors to use when NairnMPM, and NairnFEA in parallel. The format is

Processors (number)

where number is the number of processors. Setting number of processors greater than 1 implies you are running in parallel. If the requested number is greater than the available number of processors, it will be reduced to the available number of processors.

To select number of processors when using XML input files, enter the following comment anywhere in the file:

<!--processors #-->

where # is replaced by the number of processors. But note that this XML comment option only works when launching calculations in NairnFEAMPM or NairnFEAMPMViz. When using a command line to launch calculations, pick the number of processors with each code engine's -np option instead.

Custom Patching

Parallel calculations when running NairnMPM divide the orthogonal grid in orthogonal patches If N is the number of processors, 2D grids are divided in the (xnum)X(ynum) patches and 3D grids are divided into (xnum)X(ynum)X(znum) where (inum) is number of patches along the i axis. The (inum) values are automatically determined by factoring N with attention to put more patches only longer grid axes. All patches will be the same size an equal to 1/Nth of the grid.

It the automatic patching calculations or the use of equally-sized patches is not ideal for a specific simulation, you can override that calculation with custom patching by the following XML element in the MPM_Input_Files#Main_Header|MPM Header]].

<PatchGrid x="xnum" y="ynum" z="znum">
   <Xpatches>n1,n2,...n(xnum-1)</Xpatches>
   <Ypatches>n1,n2,...n(ynum-1)</Ypatches>
   <Zpatches>n1,n2,...n(znum-1)</Ypatches>
</PatchGrid>

Hyperthreading

Most computers with multi-core processors also enable hyperthreading, which allows the machine to appear as if it has twice as many cores as the physical number of cores. Not surprisingly, if you are doing scientific calculations that are actually using the CPU full time, the additional of virtual cores is no benefit. For example, if you have an 8-core chip and plot calculation time vs. number of processors used, the performance will peak for 8 processors. Calculations times will not improve for more the 8 processors and may even get slightly slower. Furthermore, overhead needed to enable hyperthreading will slightly degrade calculation speed even when only using the 8 physical cores.

The maximum performance is normally to disable hyperthreading and to run with processors set to the physical number of cores. Hyperthreading can be disabled as follows:

  • MacOS
    1. Install XCode
    2. Run XCode and choose Instruments from the XCode→Other Development Tool submenu.
    3. Choose Preferences... menu command.
    4. Click on CPUs and uncheck "Hardware Multithreading."
    5. According to Apple, this setting has to be repeated each time you restart or each time your computer goes to sleep.
  • Windows
    1. Restart you computer and hold down the Esc key until menu or option to get a menu appears.
    2. The menu allows you to configure the BIOS. Look for hyperthreading control under "Performance."
    3. Set hyperthreading control to "Disabled."
    4. Save and exit the BIOS configuration.
    5. This change will permanently disable hyperthreading, but you can also get it back by repeating above process and choosing "Enabled."

You can test your setting by running a calculation with processors option set to a number higher than the physical number of cores. If you request more processors than available, your setting will be changed to the maximum number of available processors. Look near the beginning of any output .mpm or .fea file to verify number of processors used by the calculations and available on your computer.