Win32 API 日本語リファレンス
ホームAI.MachineLearning.WinML › MLOperatorExecutionType

MLOperatorExecutionType

列挙型
基底型u4

メンバー 3

名前10進16進
Undefined00x0
Cpu10x1
D3D1220x2

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum MLOperatorExecutionType : unsigned int {
    Undefined = 0,
    Cpu = 1,
    D3D12 = 2
} MLOperatorExecutionType;
public enum MLOperatorExecutionType : uint
{
    Undefined = 0,
    Cpu = 1,
    D3D12 = 2,
}
Public Enum MLOperatorExecutionType As UInteger
    Undefined = 0
    Cpu = 1
    D3D12 = 2
End Enum
import enum

class MLOperatorExecutionType(enum.IntEnum):
    Undefined = 0
    Cpu = 1
    D3D12 = 2
// MLOperatorExecutionType
pub const Undefined: u32 = 0;
pub const Cpu: u32 = 1;
pub const D3D12: u32 = 2;
// MLOperatorExecutionType
const (
	Undefined uint32 = 0
	Cpu uint32 = 1
	D3D12 uint32 = 2
)
const
  Undefined = 0;
  Cpu = 1;
  D3D12 = 2;
// MLOperatorExecutionType
pub const Undefined: u32 = 0;
pub const Cpu: u32 = 1;
pub const D3D12: u32 = 2;
const
  Undefined* = 0
  Cpu* = 1
  D3D12* = 2
enum MLOperatorExecutionType : uint {
    Undefined = 0,
    Cpu = 1,
    D3D12 = 2,
}
#define global Undefined 0x0
#define global Cpu       0x1
#define global D3D12     0x2