From d3d6cb3ecc6b6429870d252eb259dba3f77a42be Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9E=A5=EC=A7=80=EC=84=AD/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 15 Mar 2019 08:41:16 +0900 Subject: [PATCH] Fix OperationCodeEx of nnapi (#4749) This commit fixes OperationCodeEx number. - ANEURALNETWORKS_REDUCE_MIN_EX : 500021 -> 50021 - ANEURALNETWORKS_PRELU_EX : 500022 -> 50022 Signed-off-by: jiseob.jang --- include/NeuralNetworksEx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/NeuralNetworksEx.h b/include/NeuralNetworksEx.h index 79059ec..e7194e7 100644 --- a/include/NeuralNetworksEx.h +++ b/include/NeuralNetworksEx.h @@ -601,7 +601,7 @@ typedef enum { * Outputs: * * 0: A tensor of the same {@link OperandCode} as input0. */ - ANEURALNETWORKS_REDUCE_MIN_EX = 500021, + ANEURALNETWORKS_REDUCE_MIN_EX = 50021, /** * Parametric Rectified Linear Unit. @@ -637,7 +637,7 @@ typedef enum { * Outputs: * * 0: A tensor of the same {@link OperandCode} as input0. */ - ANEURALNETWORKS_PRELU_EX = 500022, + ANEURALNETWORKS_PRELU_EX = 50022, /** * Returns a one-hot tensor. -- 2.7.4