Remove/Change misleading comments from internal/op (#3223)
authorPrasanna R/System SW /SRI-Bangalore/Engineer/삼성전자 <prasanna.r@samsung.com>
Thu, 18 Oct 2018 08:29:40 +0000 (13:59 +0530)
committer이춘석/동작제어Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Thu, 18 Oct 2018 08:29:40 +0000 (17:29 +0900)
This patch removes/ changes misleading commments from internal/op directory.

Signed-off-by: prasannar <prasanna.r@samsung.com>
runtimes/pure_arm_compute/src/internal/op/Equal.cc
runtimes/pure_arm_compute/src/internal/op/SquaredDifference.cc

index 99e3a56..b9cccc6 100644 (file)
@@ -53,8 +53,8 @@ Param::Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount,
 
   // Each input should be interpreted as follows:
   //
-  //  0 -> Input Tensor Index
-  //  1 -> Block size Index
+  //  0 -> input1 Tensor Index
+  //  1 -> input2 Tensor Index
   input1_index = inputs[0];
   input2_index = inputs[1];
 }
index 1fbe60a..f6c8bc5 100644 (file)
@@ -54,7 +54,6 @@ Param::Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount,
   //
   //  0 -> LHS Tensor Index
   //  1 -> RHS Tensor Index
-  //  2 -> Activation Index
   lhs_index = inputs[0];
   rhs_index = inputs[1];
 }