aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/OperatorList.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/OperatorList.h')
-rw-r--r--arm_compute/runtime/OperatorList.h78
1 files changed, 64 insertions, 14 deletions
diff --git a/arm_compute/runtime/OperatorList.h b/arm_compute/runtime/OperatorList.h
index 8f1f4ba0a9..8bcdf5d3bf 100644
--- a/arm_compute/runtime/OperatorList.h
+++ b/arm_compute/runtime/OperatorList.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Arm Limited.
+ * Copyright (c) 2021-2023 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -21,8 +21,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
-#ifndef ARM_COMPUTE_OPERATOR_LIST_H
-#define ARM_COMPUTE_OPERATOR_LIST_H
+#ifndef ACL_ARM_COMPUTE_RUNTIME_OPERATORLIST_H
+#define ACL_ARM_COMPUTE_RUNTIME_OPERATORLIST_H
/** ActivationLayer
*
@@ -40,6 +40,16 @@
*
*/
+/** AddMulAdd
+ *
+ * Description:
+ * Performs a fused Add + Mul + Add [+ Relu-based-Activation] operation.
+ *
+ * Equivalent Android NNAPI Op:
+ * n/a
+ *
+ */
+
/** ArgMinMaxLayer
*
* Description:
@@ -206,6 +216,16 @@
*
*/
+/** Conv3D
+ *
+ * Description:
+ * Function to compute a 3d convolution layer.
+ *
+ * Equivalent Android NNAPI Op:
+ * ANEURALNETWORKS_CONV_3D
+ *
+ */
+
/** Copy
*
* Description:
@@ -637,6 +657,16 @@
*
*/
+/** MatMul
+ *
+ * Description:
+ * Computes a matrix multiplication in batches.
+ *
+ * Equivalent Android NNAPI Op:
+ * ANEURALNETWORKS_BATCH_MATMUL
+ *
+ */
+
/** MaxUnpoolingLayer
*
* Description:
@@ -667,6 +697,16 @@
*
*/
+/** NormalizePlanarYUVLayer
+ *
+ * Description:
+ * Function to compute normalization planar YUV layer.
+ *
+ * Equivalent Android NNAPI Op:
+ * n/a
+ *
+ */
+
/** PadLayer
*
* Description:
@@ -710,6 +750,16 @@
*
*/
+/** Pooling3dLayer
+ *
+ * Description:
+ * Function to perform pooling 3D with the specified pooling operation.
+ *
+ * Equivalent Android NNAPI Op:
+ * N/A
+ *
+ */
+
/** PReluLayer
*
* Description:
@@ -794,6 +844,16 @@
*
*/
+/** ReorderLayer
+ *
+ * Description:
+ * Reorders a tensor to a different weights format.
+ *
+ * Equivalent Android NNAPI Op:
+ * n/a
+ *
+ */
+
/** ReorgLayer
*
* Description:
@@ -989,14 +1049,4 @@
*
*/
-/** WinogradInputTransform
- *
- * Description:
- * Function to perform a Winograd transform on the input tensor.
- *
- * Equivalent Android NNAPI Op:
- * n/a
- *
- */
-
-#endif /* ARM_COMPUTE_OPERATOR_LIST_H */ \ No newline at end of file
+#endif // ACL_ARM_COMPUTE_RUNTIME_OPERATORLIST_H