From: Shubham Gupta/System SW /SRI-Bangalore/Engineer/삼성전자 Date: Tue, 6 Nov 2018 00:42:06 +0000 (+0530) Subject: Updating comment to create more formal equation (#3466) X-Git-Tag: 0.3~468 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e73ac691e58d9b5fbc284741239e80d1916e9bd;p=platform%2Fcore%2Fml%2Fnnfw.git Updating comment to create more formal equation (#3466) This patch will updates comment for sqrt so as to remove x and y and to have more formal equation. Signed-off-by: shubham --- diff --git a/include/NeuralNetworksEx.h b/include/NeuralNetworksEx.h index 7dfa959..60cec26 100644 --- a/include/NeuralNetworksEx.h +++ b/include/NeuralNetworksEx.h @@ -156,7 +156,7 @@ typedef enum { ANEURALNETWORKS_TRANSPOSE_CONV_EX = 50010, /** - * Returns the truth value of (x == y) element-wise. + * Computes element-wise truth value by comparing the two input tensors for equality. * * Takes two input tensors of identical {@link OperandCode} and compatible dimensions. * The output is the result of comparison of two input tensors. @@ -196,7 +196,9 @@ typedef enum { /** * Element-wise square root computation of the input tensor. * - * It returns (y = sqrt(x)) element-wise. + * The output is calculated using this formula: + * + * output = sqrt(input) * * Supported tensor {@link OperandCode}: * * {@link ANEURALNETWORKS_TENSOR_FLOAT32}