Perform the parallel calculations with the maximum possible number of processors set to NumberOfProcessors.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public int NumberOfProcessors { get; set; }
Visual Basic (Declaration)
Public Property NumberOfProcessors As Integer
Visual C++
public:
property int NumberOfProcessors {
	int get ();
	void set (int value);
}

Field Value

An int indicating the maximum possible number of processors to use.

Remarks

By default, NumberOfProcessors = Environment.ProcessorCount. If NumberOfProcessors is set to a number less than 1 or greater than Environment.ProcessorCount, Environment.ProcessorCount will be used internally. This property has no effect if the application is used with a scalar version of the IMSL C# Numerical Library.

See Also