DML_ELEMENT_WISE_DIFFERENCE_SQUARE_OPERATOR_DESC struttura (directml.h)

Sottrae ogni elemento di BTensor dall'elemento corrispondente di ATensor, moltiplica il risultato per sé e inserisce il risultato nell'elemento corrispondente di OutputTensor.

f(a, b) = (a - b) * (a - b)

Questo operatore supporta l'esecuzione sul posto, ovvero outputTensor è consentito per alias ATensor o BTensor durante l'associazione.

Sintassi

struct DML_ELEMENT_WISE_DIFFERENCE_SQUARE_OPERATOR_DESC {
  const DML_TENSOR_DESC *ATensor;
  const DML_TENSOR_DESC *BTensor;
  const DML_TENSOR_DESC *OutputTensor;
};

Members

ATensor

Tipo: const DML_TENSOR_DESC*

Tensore contenente gli input lato sinistro.

BTensor

Tipo: const DML_TENSOR_DESC*

Tensore contenente gli input lato destro.

OutputTensor

Tipo: const DML_TENSOR_DESC*

Tensore di output in cui scrivere i risultati.

Commenti

Disponibilità

Questo operatore è stato introdotto in DML_FEATURE_LEVEL_3_1.

Vincoli tensor

ATensor, BTensor e OutputTensor devono avere lo stesso oggetto DataType, DimensionCount e Sizes.

Supporto di Tensor

Tensore Tipo Conteggi delle dimensioni supportate Tipi di dati supportati
ATensor Input da 1 a 8 FLOAT32, FLOAT16, INT32, UINT32
BTensor Input da 1 a 8 FLOAT32, FLOAT16, INT32, UINT32
OutputTensor Output da 1 a 8 FLOAT32, FLOAT16, INT32, UINT32

Requisiti

   
Client minimo supportato Windows Build 22000
Server minimo supportato Windows Build 22000
Intestazione directml.h