[enco] Introduce ReLU op to ANN IR (#1294)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 3 Sep 2018 05:47:22 +0000 (14:47 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 3 Sep 2018 05:47:22 +0000 (14:47 +0900)
This commit introduces RELU tag to ann::Operation::Code enumeration.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/enco/core/src/ANN/IR/Operation.h

index 0e7a902..bcae799 100644 (file)
@@ -14,7 +14,8 @@ class Operation
 public:
   enum class Code
   {
-    CONV_2D
+    CONV_2D,
+    RELU
   };
 
 public: