struttura DML_FILL_VALUE_CONSTANT_OPERATOR_DESC (directml.h)
Riempie un tensore con la costante Value specificata. Questo operatore esegue lo pseudocodice seguente.
for each coordinate in OutputTensor
OutputTensor[coordinate] = Value
endfor
Sintassi
struct DML_FILL_VALUE_CONSTANT_OPERATOR_DESC {
const DML_TENSOR_DESC *OutputTensor;
DML_TENSOR_DATA_TYPE ValueDataType;
DML_SCALAR_UNION Value;
};
Members
OutputTensor
Tipo: const DML_TENSOR_DESC*
Tensore in cui scrivere i risultati. Questo tensore può avere qualsiasi dimensione.
ValueDataType
Tipo: DML_TENSOR_DATA_TYPE
Tipo di dati del campo Valore , che deve corrispondere a OutputTensor.DataType.
Value
Tipo: DML_SCALAR_UNION
Valore costante per riempire l'output, con ValueDataType che determina come interpretare il campo.
Esempio
Value = 13.0
OutputTensor: (Sizes:{1,1,2,4}, DataType:FLOAT32)
[[[[13.0f, 13.0f, 13.0f, 13.0f],
[13.0f, 13.0f, 13.0f, 13.0f]]]]
Disponibilità
Questo operatore è stato introdotto in DML_FEATURE_LEVEL_2_1
.
Supporto di Tensor
DML_FEATURE_LEVEL_4_1 e versioni successive
Tensore | Tipo | Conteggi delle dimensioni supportati | Tipi di dati supportati |
---|---|---|---|
OutputTensor | Output | da 1 a 8 | FLOAT64, FLOAT32, FLOAT16, INT64, INT32, INT16, INT8, UINT64, UINT32, UINT16, UINT8 |
DML_FEATURE_LEVEL_4_0 e versioni successive
Tensore | Tipo | Conteggi delle dimensioni supportati | Tipi di dati supportati |
---|---|---|---|
OutputTensor | Output | da 1 a 8 | FLOAT32, FLOAT16, INT32, INT16, INT8, UINT32, UINT16, UINT8 |
DML_FEATURE_LEVEL_2_1 e versioni successive
Tensore | Tipo | Conteggi delle dimensioni supportati | Tipi di dati supportati |
---|---|---|---|
OutputTensor | Output | 4 | FLOAT32, FLOAT16, INT32, INT16, INT8, UINT32, UINT16, UINT8 |
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows 10 Build 20348 |
Server minimo supportato | Windows 10 Build 20348 |
Intestazione | directml.h |