Platform Enumeration

Enumerates the possible target platforms of implementations.

Definition

Namespace: Numerics.NET.Providers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
[FlagsAttribute]
public enum Platform

Members

None0 The platform is not specified.
Managed1 The code is 100% managed.
Native2 The code targets a specific processor architecture (x86 or x64).
Hybrid3 The code is a hybrid that may use managed or native code depending on the calculation.
GPU4 The code targets GPUs.

See Also