From: 장지섭/On-Device Lab(SR)/Engineer/삼성전자 Date: Thu, 14 Mar 2019 23:41:16 +0000 (+0900) Subject: Fix OperationCodeEx of nnapi (#4749) X-Git-Tag: submit/tizen/20190325.013700~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3d6cb3ecc6b6429870d252eb259dba3f77a42be;p=platform%2Fcore%2Fml%2Fnnfw.git 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 --- 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.