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

MLOperatorEdgeType

列挙型
基底型u4

メンバー 4

名前10進16進
Undefined00x0
Tensor10x1
SequenceTensor20x2
Primitive30x3

各言語での定義

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

typedef enum MLOperatorEdgeType : unsigned int {
    Undefined = 0,
    Tensor = 1,
    SequenceTensor = 2,
    Primitive = 3
} MLOperatorEdgeType;
public enum MLOperatorEdgeType : uint
{
    Undefined = 0,
    Tensor = 1,
    SequenceTensor = 2,
    Primitive = 3,
}
Public Enum MLOperatorEdgeType As UInteger
    Undefined = 0
    Tensor = 1
    SequenceTensor = 2
    Primitive = 3
End Enum
import enum

class MLOperatorEdgeType(enum.IntEnum):
    Undefined = 0
    Tensor = 1
    SequenceTensor = 2
    Primitive = 3
// MLOperatorEdgeType
pub const Undefined: u32 = 0;
pub const Tensor: u32 = 1;
pub const SequenceTensor: u32 = 2;
pub const Primitive: u32 = 3;
// MLOperatorEdgeType
const (
	Undefined uint32 = 0
	Tensor uint32 = 1
	SequenceTensor uint32 = 2
	Primitive uint32 = 3
)
const
  Undefined = 0;
  Tensor = 1;
  SequenceTensor = 2;
  Primitive = 3;
// MLOperatorEdgeType
pub const Undefined: u32 = 0;
pub const Tensor: u32 = 1;
pub const SequenceTensor: u32 = 2;
pub const Primitive: u32 = 3;
const
  Undefined* = 0
  Tensor* = 1
  SequenceTensor* = 2
  Primitive* = 3
enum MLOperatorEdgeType : uint {
    Undefined = 0,
    Tensor = 1,
    SequenceTensor = 2,
    Primitive = 3,
}
#define global Undefined      0x0
#define global Tensor         0x1
#define global SequenceTensor 0x2
#define global Primitive      0x3