SimdLevel

Description

Different simd levels.

Values of this enumeration:

  • Simd_Off - No custom simd implementation.
  • Simd_128 - Custom simd128 implementation enabled (e.g. SSE or Neon).
  • Simd_256 - Custom simd256 implementation enabled (e.g. AVX2).

namespace SimdLevel
{
	enum Type
	{
		Simd_Off,
		Simd_128,
		Simd_256
	};
}