DML_OPERATOR_DESC structure (directml.h)

A generic container for an operator description. You construct DirectML operators using the parameters specified in this struct. See IDMLDevice::CreateOperator for additional details.

Syntax

struct DML_OPERATOR_DESC {
  DML_OPERATOR_TYPE Type;
  const void        *Desc;
};

Members

Type

Type: DML_OPERATOR_TYPE

The type of the operator description. See DML_OPERATOR_TYPE for the available types.

Desc

Type: const void*

A pointer to the operator description. The type of the pointed-to struct must match the value specified in Type.

Requirements

Requirement Value
Header directml.h