Updating comment to create more formal equation (#3466)
authorShubham Gupta/System SW /SRI-Bangalore/Engineer/삼성전자 <shub98.gupta@samsung.com>
Tue, 6 Nov 2018 00:42:06 +0000 (06:12 +0530)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 6 Nov 2018 00:42:06 +0000 (09:42 +0900)
This patch will updates comment for sqrt so as to remove x and y and to
have more formal equation.

Signed-off-by: shubham <shub98.gupta@samsung.com>
include/NeuralNetworksEx.h

index 7dfa959..60cec26 100644 (file)
@@ -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}