Previous Page | Next Page

Automatic Macro Variables

SYSNCPU Automatic Macro Variable



Contains the current number of processors available to SAS for computations.
Type: Automatic Macro Variable (Read Only)

Details
Example

Details

SYSNCPU is an automatic macro variable that provides the current value of the CPUCOUNT option. For more information about CPUCOUNT system option, see the SAS Language Reference: Dictionary.


Example

The following example shows the option CPUCOUNT set to 265.

options cpucount=265;
%put &sysncpu;

The output of the above example is 265.

Previous Page | Next Page | Top of Page