[neurun] Update ifdef guards of operations (#8683)
author이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Fri, 1 Nov 2019 03:01:37 +0000 (12:01 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Fri, 1 Nov 2019 03:01:37 +0000 (12:01 +0900)
Update `#ifdef` guards of operations which were not updated when it was
renamed.

Signed-off-by: Hanjoung Lee <hanjoung.lee@samsung.com>
58 files changed:
runtime/neurun/core/include/model/operation/Abs.h
runtime/neurun/core/include/model/operation/Add.h
runtime/neurun/core/include/model/operation/ArgMax.h
runtime/neurun/core/include/model/operation/AvgPool2D.h
runtime/neurun/core/include/model/operation/BatchToSpaceND.h
runtime/neurun/core/include/model/operation/Cast.h
runtime/neurun/core/include/model/operation/Comparison.h
runtime/neurun/core/include/model/operation/Concat.h
runtime/neurun/core/include/model/operation/Conv2D.h
runtime/neurun/core/include/model/operation/Custom.h
runtime/neurun/core/include/model/operation/DepthToSpace.h
runtime/neurun/core/include/model/operation/DepthwiseConv2D.h
runtime/neurun/core/include/model/operation/Dequantize.h
runtime/neurun/core/include/model/operation/Div.h
runtime/neurun/core/include/model/operation/EmbeddingLookup.h
runtime/neurun/core/include/model/operation/Exp.h
runtime/neurun/core/include/model/operation/Floor.h
runtime/neurun/core/include/model/operation/FullyConnected.h
runtime/neurun/core/include/model/operation/Gather.h
runtime/neurun/core/include/model/operation/HashtableLookup.h
runtime/neurun/core/include/model/operation/L2Normalization.h
runtime/neurun/core/include/model/operation/L2Pool2D.h
runtime/neurun/core/include/model/operation/LSTM.h
runtime/neurun/core/include/model/operation/LocalResponseNormalization.h
runtime/neurun/core/include/model/operation/LogicalAnd.h
runtime/neurun/core/include/model/operation/LogicalNot.h
runtime/neurun/core/include/model/operation/LogicalOr.h
runtime/neurun/core/include/model/operation/Logistic.h
runtime/neurun/core/include/model/operation/MaxPool2D.h
runtime/neurun/core/include/model/operation/Mean.h
runtime/neurun/core/include/model/operation/Mul.h
runtime/neurun/core/include/model/operation/Neg.h
runtime/neurun/core/include/model/operation/PReLU.h
runtime/neurun/core/include/model/operation/Pack.h
runtime/neurun/core/include/model/operation/Pad.h
runtime/neurun/core/include/model/operation/Permute.h
runtime/neurun/core/include/model/operation/RNN.h
runtime/neurun/core/include/model/operation/RSQRT.h
runtime/neurun/core/include/model/operation/ReLU.h
runtime/neurun/core/include/model/operation/ReLU1.h
runtime/neurun/core/include/model/operation/ReLU6.h
runtime/neurun/core/include/model/operation/ReduceMax.h
runtime/neurun/core/include/model/operation/ReduceMin.h
runtime/neurun/core/include/model/operation/ReduceSum.h
runtime/neurun/core/include/model/operation/Reshape.h
runtime/neurun/core/include/model/operation/ResizeBilinear.h
runtime/neurun/core/include/model/operation/SQRT.h
runtime/neurun/core/include/model/operation/Softmax.h
runtime/neurun/core/include/model/operation/SpaceToBatchND.h
runtime/neurun/core/include/model/operation/SpaceToDepth.h
runtime/neurun/core/include/model/operation/Split.h
runtime/neurun/core/include/model/operation/SquaredDifference.h
runtime/neurun/core/include/model/operation/Squeeze.h
runtime/neurun/core/include/model/operation/Sub.h
runtime/neurun/core/include/model/operation/Tanh.h
runtime/neurun/core/include/model/operation/Transpose.h
runtime/neurun/core/include/model/operation/TransposeConv.h
runtime/neurun/core/include/model/operation/Unpack.h

index f96dd1c..34d2df4 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_ABS_NODE_H__
-#define __NEURUN_MODEL_OPERATION_ABS_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_ABS_H__
+#define __NEURUN_MODEL_OPERATION_ABS_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_ABS_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_ABS_H__
index f6c8954..a201895 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_ADD_NODE_H__
-#define __NEURUN_MODEL_OPERATION_ADD_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_ADD_H__
+#define __NEURUN_MODEL_OPERATION_ADD_H__
 
 #include "model/Operation.h"
 #include "model/InternalType.h"
index 3f886cf..14f772d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_ARG_MAX_NODE_H__
-#define __NEURUN_MODEL_OPERATION_ARG_MAX_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_ARG_MAX_H__
+#define __NEURUN_MODEL_OPERATION_ARG_MAX_H__
 
 #include "model/Operation.h"
 
@@ -58,4 +58,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_ARG_MAX_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_ARG_MAX_H__
index 2831263..d816f26 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_AVGPOOL2D_NODE_H__
-#define __NEURUN_MODEL_OPERATION_AVGPOOL2D_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_AVGPOOL2D_H__
+#define __NEURUN_MODEL_OPERATION_AVGPOOL2D_H__
 
 #include <memory>
 
index 193fe38..b7443d6 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_BATCH_TO_SPACE_ND_NODE_H__
-#define __NEURUN_MODEL_OPERATION_BATCH_TO_SPACE_ND_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_BATCH_TO_SPACE_ND_H__
+#define __NEURUN_MODEL_OPERATION_BATCH_TO_SPACE_ND_H__
 
 #include "model/Operation.h"
 
@@ -47,4 +47,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_BATCH_TO_SPACE_ND_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_BATCH_TO_SPACE_ND_H__
index 942bbbd..2942cb9 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_CAST_NODE_H__
-#define __NEURUN_MODEL_OPERATION_CAST_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_CAST_H__
+#define __NEURUN_MODEL_OPERATION_CAST_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_CAST_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_CAST_H__
index 48acee6..32536ed 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_COMPARISON_NODE_H__
-#define __NEURUN_MODEL_OPERATION_COMPARISON_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_COMPARISON_H__
+#define __NEURUN_MODEL_OPERATION_COMPARISON_H__
 
 #include "model/Operation.h"
 
@@ -69,4 +69,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_COMPARISON_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_COMPARISON_H__
index 1124ffb..03c8607 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_CONCAT_NODE_H__
-#define __NEURUN_MODEL_OPERATION_CONCAT_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_CONCAT_H__
+#define __NEURUN_MODEL_OPERATION_CONCAT_H__
 
 #include <memory>
 
index e1f3427..0e6f929 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_CONV2D_NODE_H__
-#define __NEURUN_MODEL_OPERATION_CONV2D_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_CONV2D_H__
+#define __NEURUN_MODEL_OPERATION_CONV2D_H__
 
 #include <memory>
 
@@ -65,4 +65,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_CONV2D_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_CONV2D_H__
index f64f1cc..60c873e 100644 (file)
@@ -13,8 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#ifndef __NEURUN_MODEL_OPERATION_CUSTOM_NODE_H__
-#define __NEURUN_MODEL_OPERATION_CUSTOM_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_CUSTOM_H__
+#define __NEURUN_MODEL_OPERATION_CUSTOM_H__
 
 #include "model/Operation.h"
 
@@ -62,4 +62,4 @@ private:
 } // namespace operation
 } // namespace model
 } // namespace neurun
-#endif // __NEURUN_MODEL_OPERATION_CUSTOM_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_CUSTOM_H__
index 15fa10e..e77a4ee 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_DEPTH_TO_SPACE_NODE_H__
-#define __NEURUN_MODEL_OPERATION_DEPTH_TO_SPACE_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_DEPTH_TO_SPACE_H__
+#define __NEURUN_MODEL_OPERATION_DEPTH_TO_SPACE_H__
 
 #include <memory>
 
@@ -60,4 +60,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_DEPTH_TO_SPACE_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_DEPTH_TO_SPACE_H__
index 949d3b1..d9badfb 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_DEPTHWISECONV2D_NODE_H__
-#define __NEURUN_MODEL_OPERATION_DEPTHWISECONV2D_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_DEPTHWISECONV2D_H__
+#define __NEURUN_MODEL_OPERATION_DEPTHWISECONV2D_H__
 
 #include <memory>
 
@@ -66,4 +66,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_DEPTHWISECONV2D_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_DEPTHWISECONV2D_H__
index 3f59c56..4e6a941 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_DEQUANTIZE_NODE_H__
-#define __NEURUN_MODEL_OPERATION_DEQUANTIZE_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_DEQUANTIZE_H__
+#define __NEURUN_MODEL_OPERATION_DEQUANTIZE_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_DEQUANTIZE_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_DEQUANTIZE_H__
index fba33f1..b4c7089 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_DIV_NODE_H__
-#define __NEURUN_MODEL_OPERATION_DIV_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_DIV_H__
+#define __NEURUN_MODEL_OPERATION_DIV_H__
 
 #include "model/Operation.h"
 #include "model/InternalType.h"
@@ -59,4 +59,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_DIV_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_DIV_H__
index 1044317..1b83946 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_EMBEDDING_LOOKUP_NODE_H__
-#define __NEURUN_MODEL_OPERATION_EMBEDDING_LOOKUP_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_EMBEDDING_LOOKUP_H__
+#define __NEURUN_MODEL_OPERATION_EMBEDDING_LOOKUP_H__
 
 #include "model/Operation.h"
 
@@ -47,4 +47,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_EMBEDDING_LOOKUP_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_EMBEDDING_LOOKUP_H__
index aed55b5..618564b 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_EXP_NODE_H__
-#define __NEURUN_MODEL_OPERATION_EXP_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_EXP_H__
+#define __NEURUN_MODEL_OPERATION_EXP_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_EXP_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_EXP_H__
index 44c252c..d26cdf0 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_FLOOR_NODE_H__
-#define __NEURUN_MODEL_OPERATION_FLOOR_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_FLOOR_H__
+#define __NEURUN_MODEL_OPERATION_FLOOR_H__
 
 #include <memory>
 
@@ -48,4 +48,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_FLOOR_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_FLOOR_H__
index 3eba6cd..18ab521 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_FULLYCONNECTED_NODE_H__
-#define __NEURUN_MODEL_OPERATION_FULLYCONNECTED_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_FULLYCONNECTED_H__
+#define __NEURUN_MODEL_OPERATION_FULLYCONNECTED_H__
 
 #include <memory>
 
@@ -63,4 +63,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_FULLYCONNECTED_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_FULLYCONNECTED_H__
index b643ddc..42c313d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_GATHER_NODE_H__
-#define __NEURUN_MODEL_OPERATION_GATHER_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_GATHER_H__
+#define __NEURUN_MODEL_OPERATION_GATHER_H__
 
 #include <memory>
 
@@ -61,4 +61,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_GATHER_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_GATHER_H__
index bb4df2d..3c7d72d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_HASHTABLE_LOOKUP_NODE_H__
-#define __NEURUN_MODEL_OPERATION_HASHTABLE_LOOKUP_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_HASHTABLE_LOOKUP_H__
+#define __NEURUN_MODEL_OPERATION_HASHTABLE_LOOKUP_H__
 
 #include "model/Operation.h"
 
@@ -54,4 +54,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_HASHTABLE_LOOKUP_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_HASHTABLE_LOOKUP_H__
index a732941..0f2ec4d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_L2_NORMALIZATION_NODE_H__
-#define __NEURUN_MODEL_OPERATION_L2_NORMALIZATION_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_L2_NORMALIZATION_H__
+#define __NEURUN_MODEL_OPERATION_L2_NORMALIZATION_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_L2_NORMALIZATION_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_L2_NORMALIZATION_H__
index c7d4c3d..c29899a 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_L2_POOL_2D_NODE_H__
-#define __NEURUN_MODEL_OPERATION_L2_POOL_2D_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_L2_POOL_2D_H__
+#define __NEURUN_MODEL_OPERATION_L2_POOL_2D_H__
 
 #include <memory>
 
@@ -65,4 +65,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_L2_POOL_2D_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_L2_POOL_2D_H__
index 70941a3..719179e 100644 (file)
@@ -13,8 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#ifndef __NEURUN_MODEL_OPERATION_LSTM_NODE_H__
-#define __NEURUN_MODEL_OPERATION_LSTM_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_LSTM_H__
+#define __NEURUN_MODEL_OPERATION_LSTM_H__
 
 #include "model/InternalType.h"
 #include "model/Operation.h"
@@ -86,4 +86,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_LSTM_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_LSTM_H__
index aee5c2e..bd7f85a 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_LOCAL_RESPONSE_NORMALIZATION_NODE_H__
-#define __NEURUN_MODEL_OPERATION_LOCAL_RESPONSE_NORMALIZATION_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_LOCAL_RESPONSE_NORMALIZATION_H__
+#define __NEURUN_MODEL_OPERATION_LOCAL_RESPONSE_NORMALIZATION_H__
 
 #include <memory>
 
@@ -63,4 +63,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_LOCAL_RESPONSE_NORMALIZATION_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_LOCAL_RESPONSE_NORMALIZATION_H__
index 6d23281..dd19ed9 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_LOGICAL_AND_NODE_H__
-#define __NEURUN_MODEL_OPERATION_LOGICAL_AND_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_LOGICAL_AND_H__
+#define __NEURUN_MODEL_OPERATION_LOGICAL_AND_H__
 
 #include "model/Operation.h"
 
@@ -47,4 +47,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_LOGICAL_AND_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_LOGICAL_AND_H__
index db0fafd..c2fa8f0 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_LOGICAL_NOT_NODE_H__
-#define __NEURUN_MODEL_OPERATION_LOGICAL_NOT_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_LOGICAL_NOT_H__
+#define __NEURUN_MODEL_OPERATION_LOGICAL_NOT_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_LOGICAL_NOT_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_LOGICAL_NOT_H__
index 6824c21..375992e 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_LOGICAL_OR_NODE_H__
-#define __NEURUN_MODEL_OPERATION_LOGICAL_OR_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_LOGICAL_OR_H__
+#define __NEURUN_MODEL_OPERATION_LOGICAL_OR_H__
 
 #include "model/Operation.h"
 
@@ -47,4 +47,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_LOGICAL_OR_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_LOGICAL_OR_H__
index 2aa3d0c..7dccdcc 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_LOGISTIC_NODE_H__
-#define __NEURUN_MODEL_OPERATION_LOGISTIC_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_LOGISTIC_H__
+#define __NEURUN_MODEL_OPERATION_LOGISTIC_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_LOGISTIC_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_LOGISTIC_H__
index a6f1e05..4fbe0e8 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_MAXPOOL2D_NODE_H__
-#define __NEURUN_MODEL_OPERATION_MAXPOOL2D_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_MAXPOOL2D_H__
+#define __NEURUN_MODEL_OPERATION_MAXPOOL2D_H__
 
 #include <memory>
 
@@ -65,4 +65,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_MAXPOOL2D_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_MAXPOOL2D_H__
index 6c68f97..cbff27f 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_MEAN_NODE_H__
-#define __NEURUN_MODEL_OPERATION_MEAN_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_MEAN_H__
+#define __NEURUN_MODEL_OPERATION_MEAN_H__
 
 #include "model/Operation.h"
 
@@ -58,4 +58,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_MEAN_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_MEAN_H__
index 1365562..0ba9e3f 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_MUL_NODE_H__
-#define __NEURUN_MODEL_OPERATION_MUL_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_MUL_H__
+#define __NEURUN_MODEL_OPERATION_MUL_H__
 
 #include "model/Operation.h"
 #include "model/InternalType.h"
@@ -59,4 +59,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_MUL_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_MUL_H__
index f329a12..47cbf5d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_NEG_NODE_H__
-#define __NEURUN_MODEL_OPERATION_NEG_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_NEG_H__
+#define __NEURUN_MODEL_OPERATION_NEG_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_NEG_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_NEG_H__
index ab7d885..a2a7f94 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_PRELU_NODE_H__
-#define __NEURUN_MODEL_OPERATION_PRELU_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_PRELU_H__
+#define __NEURUN_MODEL_OPERATION_PRELU_H__
 
 #include "model/Operation.h"
 
@@ -47,4 +47,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_PRELU_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_PRELU_H__
index d11d967..4071461 100644 (file)
@@ -13,8 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#ifndef __NEURUN_MODEL_OPERATION_PACK_NODE_H__
-#define __NEURUN_MODEL_OPERATION_PACK_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_PACK_H__
+#define __NEURUN_MODEL_OPERATION_PACK_H__
 
 #include "model/Operation.h"
 
@@ -49,4 +49,4 @@ private:
 } // namespace operation
 } // namespace model
 } // namespace neurun
-#endif // __NEURUN_MODEL_OPERATION_PACK_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_PACK_H__
index 2a5813d..0cea11d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_PAD_NODE_H__
-#define __NEURUN_MODEL_OPERATION_PAD_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_PAD_H__
+#define __NEURUN_MODEL_OPERATION_PAD_H__
 
 #include "model/Operation.h"
 
@@ -48,4 +48,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_PAD_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_PAD_H__
index 13b1bf3..983bb63 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_PERMUTE_NODE_H__
-#define __NEURUN_MODEL_OPERATION_PERMUTE_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_PERMUTE_H__
+#define __NEURUN_MODEL_OPERATION_PERMUTE_H__
 
 #include "model/Operation.h"
 
@@ -75,4 +75,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_PERMUTE_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_PERMUTE_H__
index f22e8c5..7ad000b 100644 (file)
@@ -13,8 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#ifndef __NEURUN_MODEL_OPERATION_RNN_NODE_H__
-#define __NEURUN_MODEL_OPERATION_RNN_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_RNN_H__
+#define __NEURUN_MODEL_OPERATION_RNN_H__
 
 #include "model/InternalType.h"
 #include "model/Operation.h"
@@ -67,4 +67,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_RNN_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_RNN_H__
index 2e99f16..a5d2615 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_RSQRT_NODE_H__
-#define __NEURUN_MODEL_OPERATION_RSQRT_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_RSQRT_H__
+#define __NEURUN_MODEL_OPERATION_RSQRT_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_RSQRT_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_RSQRT_H__
index 07468dd..64dba60 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_RELU_NODE_H__
-#define __NEURUN_MODEL_OPERATION_RELU_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_RELU_H__
+#define __NEURUN_MODEL_OPERATION_RELU_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_RELU_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_RELU_H__
index ca40913..eb83dc2 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_ReLU1_NODE_H__
-#define __NEURUN_MODEL_OPERATION_ReLU1_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_ReLU1_H__
+#define __NEURUN_MODEL_OPERATION_ReLU1_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_ReLU1_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_ReLU1_H__
index c6c58b7..ccff13c 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_ReLU6_NODE_H__
-#define __NEURUN_MODEL_OPERATION_ReLU6_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_ReLU6_H__
+#define __NEURUN_MODEL_OPERATION_ReLU6_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_ReLU6_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_ReLU6_H__
index e6cb1a9..4c0586d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_REDUCEMAX_NODE_H__
-#define __NEURUN_MODEL_OPERATION_REDUCEMAX_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_REDUCEMAX_H__
+#define __NEURUN_MODEL_OPERATION_REDUCEMAX_H__
 
 #include <memory>
 
@@ -60,4 +60,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_REDUCEMAX_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_REDUCEMAX_H__
index 2084633..3393c54 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_REDUCEMIN_NODE_H__
-#define __NEURUN_MODEL_OPERATION_REDUCEMIN_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_REDUCEMIN_H__
+#define __NEURUN_MODEL_OPERATION_REDUCEMIN_H__
 
 #include <memory>
 
@@ -60,4 +60,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_REDUCEMIN_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_REDUCEMIN_H__
index c3dbb21..3faffd7 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_REDUCE_SUM_NODE_H__
-#define __NEURUN_MODEL_OPERATION_REDUCE_SUM_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_REDUCE_SUM_H__
+#define __NEURUN_MODEL_OPERATION_REDUCE_SUM_H__
 
 #include "model/Operation.h"
 
index 02cd6be..64359cd 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_RESHAPE_NODE_H__
-#define __NEURUN_MODEL_OPERATION_RESHAPE_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_RESHAPE_H__
+#define __NEURUN_MODEL_OPERATION_RESHAPE_H__
 
 #include <memory>
 
@@ -48,4 +48,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_RESHAPE_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_RESHAPE_H__
index 14ffd98..9736738 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_RESIZE_BILINEAR_NODE_H__
-#define __NEURUN_MODEL_OPERATION_RESIZE_BILINEAR_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_RESIZE_BILINEAR_H__
+#define __NEURUN_MODEL_OPERATION_RESIZE_BILINEAR_H__
 
 #include <memory>
 
@@ -61,4 +61,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_RESIZE_BILINEAR_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_RESIZE_BILINEAR_H__
index 7deeef2..3192d0d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_SQRT_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SQRT_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SQRT_H__
+#define __NEURUN_MODEL_OPERATION_SQRT_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_SQRT_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_SQRT_H__
index 4bef59f..097776f 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_SOFTMAX_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SOFTMAX_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SOFTMAX_H__
+#define __NEURUN_MODEL_OPERATION_SOFTMAX_H__
 
 #include <memory>
 
@@ -60,4 +60,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_SOFTMAX_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_SOFTMAX_H__
index 9f9d4d2..bb1faee 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_SPACE_TO_BATCH_ND_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SPACE_TO_BATCH_ND_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SPACE_TO_BATCH_ND_H__
+#define __NEURUN_MODEL_OPERATION_SPACE_TO_BATCH_ND_H__
 
 #include <memory>
 
@@ -50,4 +50,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_SPACE_TO_BATCH_ND_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_SPACE_TO_BATCH_ND_H__
index c3b4e19..8effa3e 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_SPACE_TO_DEPTH_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SPACE_TO_DEPTH_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SPACE_TO_DEPTH_H__
+#define __NEURUN_MODEL_OPERATION_SPACE_TO_DEPTH_H__
 
 #include <memory>
 
@@ -60,4 +60,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_SPACE_TO_DEPTH_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_SPACE_TO_DEPTH_H__
index e7f178d..2a1d61e 100644 (file)
@@ -13,8 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#ifndef __NEURUN_MODEL_OPERATION_SPLIT_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SPLIT_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SPLIT_H__
+#define __NEURUN_MODEL_OPERATION_SPLIT_H__
 
 #include "model/Operation.h"
 
@@ -55,4 +55,4 @@ private:
 } // namespace operation
 } // namespace model
 } // namespace neurun
-#endif // __NEURUN_MODEL_OPERATION_SPLIT_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_SPLIT_H__
index 0a84184..16cc052 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_SQUARED_DIFFERENCE_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SQUARED_DIFFERENCE_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SQUARED_DIFFERENCE_H__
+#define __NEURUN_MODEL_OPERATION_SQUARED_DIFFERENCE_H__
 
 #include "model/Operation.h"
 
@@ -47,4 +47,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_SQUARED_DIFFERENCE_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_SQUARED_DIFFERENCE_H__
index 62d4382..84966e2 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_SQUEEZE_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SQUEEZE_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SQUEEZE_H__
+#define __NEURUN_MODEL_OPERATION_SQUEEZE_H__
 
 #include "model/Operation.h"
 
index afcd7cc..697ed05 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_SUB_NODE_H__
-#define __NEURUN_MODEL_OPERATION_SUB_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_SUB_H__
+#define __NEURUN_MODEL_OPERATION_SUB_H__
 
 #include "model/Operation.h"
 #include "model/InternalType.h"
index c242f96..888a0a9 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_TANH_NODE_H__
-#define __NEURUN_MODEL_OPERATION_TANH_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_TANH_H__
+#define __NEURUN_MODEL_OPERATION_TANH_H__
 
 #include "model/Operation.h"
 
@@ -46,4 +46,4 @@ public:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_TANH_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_TANH_H__
index a25d3c7..8a568af 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_TRANSPOSE_NODE_H__
-#define __NEURUN_MODEL_OPERATION_TRANSPOSE_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_TRANSPOSE_H__
+#define __NEURUN_MODEL_OPERATION_TRANSPOSE_H__
 
 #include "model/Operation.h"
 
index 7e29fc2..fa922d6 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __NEURUN_MODEL_OPERATION_TRANSPOSE_CONV_NODE_H__
-#define __NEURUN_MODEL_OPERATION_TRANSPOSE_CONV_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_TRANSPOSE_CONV_H__
+#define __NEURUN_MODEL_OPERATION_TRANSPOSE_CONV_H__
 
 #include <memory>
 
@@ -64,4 +64,4 @@ private:
 } // namespace model
 } // namespace neurun
 
-#endif // __NEURUN_MODEL_OPERATION_TRANSPOSE_CONV_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_TRANSPOSE_CONV_H__
index 144a257..790b261 100644 (file)
@@ -13,8 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#ifndef __NEURUN_MODEL_OPERATION_UNPACK_NODE_H__
-#define __NEURUN_MODEL_OPERATION_UNPACK_NODE_H__
+#ifndef __NEURUN_MODEL_OPERATION_UNPACK_H__
+#define __NEURUN_MODEL_OPERATION_UNPACK_H__
 
 #include "model/Operation.h"
 
@@ -55,4 +55,4 @@ private:
 } // namespace operation
 } // namespace model
 } // namespace neurun
-#endif // __NEURUN_MODEL_OPERATION_UNPACK_NODE_H__
+#endif // __NEURUN_MODEL_OPERATION_UNPACK_H__