SYSNCPU Automatic Macro Variable
Contains the current number of processors available
to SAS for computations.
Type: |
Automatic Macro Variable (Read Only) |
Details
SYSNCPU is an automatic macro variable that provides the current
value of the CPUCOUNT option. For more information about
CPUCOUNT= System Option in SAS System Options: Reference.
Comparisons
The following example
shows the option CPUCOUNT set to 265.
options cpucount=265;
%put &sysncpu;
The output of the above
example is 265.