* A non-zero byte represents True, a hit. A zero indicates otherwise.
*/
ANEURALNETWORKS_EQUAL_EX = 50011,
+
+ /**
+ * Computes element-wise absolute value of the input tensor.
+ *
+ * The output is calculated using this formula:
+ *
+ * output = fabs(input)
+ *
+ * Supported tensor {@link OperandCode}:
+ * * {@link ANEURALNETWORKS_TENSOR_FLOAT32}
+ *
+ * Supported tensor rank: up to 4
+ *
+ * Inputs:
+ * * 0: An n-D tensor, specifying the first input.
+ *
+ * Outputs:
+ * * 0: The output tensor, of the same {@link OperandCode} and shape as input0.
+ */
ANEURALNETWORKS_ABS_EX = 50012,
/**
* Packs a list of rank-R tensors into one rank- (R+1) tensor along the axis dimension.