Cutoff point for using native optimized matrix-matrix multiplication. If the product of the number of rows and the number of columns is less than this number for both operands, the matrix multiplication is done by a simple algorithm locally. Otherwise native optimized code is invoked.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public const int MATRIX_MULT_CUTOFF
Visual Basic (Declaration)
Public Const MATRIX_MULT_CUTOFF As Integer
Visual C++
public:
literal int MATRIX_MULT_CUTOFF

See Also