Modify #ifndef macro of SimpleArithmeticAdditionLayer.h (#1458)
author윤현식/동작제어Lab(SR)/Principal Engineer/삼성전자 <hyunsik.yoon@samsung.com>
Thu, 31 May 2018 02:42:02 +0000 (11:42 +0900)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Thu, 31 May 2018 02:42:02 +0000 (11:42 +0900)
from
`#ifndef __SIMPLE_ARITHMETIC_LAYER_H__`
to
`#ifndef __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__`

because we may need more arithmetic layers.

Signed-off-by: Hyun Sik Yoon <hyunsik.yoon@samsung.com>
runtimes/pure_arm_compute/src/internal/layers/SimpleArithmeticAdditionLayer.h

index aefa50d..7fd5b00 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __SIMPLE_ARITHMETIC_LAYER_H__
-#define __SIMPLE_ARITHMETIC_LAYER_H__
+#ifndef __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__
+#define __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__
 
 #include <arm_compute/core/CL/ICLTensor.h>
 
@@ -44,4 +44,4 @@ private:
   ::arm_compute::ICLTensor *_out;
 };
 
-#endif // __SIMPLE_ARITHMETIC_LAYER_H__
+#endif // __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__