[exo-tflite] TFLRelu uses exo::FixedArityNode (#6952)
author윤현식/On-Device Lab(SR)/Principal Engineer/삼성전자 <hyunsik.yoon@samsung.com>
Tue, 27 Aug 2019 08:17:53 +0000 (17:17 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Tue, 27 Aug 2019 08:17:53 +0000 (17:17 +0900)
Since loco::FixedArityNode is being deprecated, TFLRelu now uses exo::FixedArityNode.

Signed-off-by: Hyun Sik Yoon <hyunsik.yoon@samsung.com>
compiler/exo-tflite/src/Dialect/IR/TFLNodes.h

index 4b648ac..9754a3a 100644 (file)
@@ -65,7 +65,7 @@ private:
   std::array<std::unique_ptr<loco::Use>, N> _args;
 };
 
-class TFLRelu final : public loco::FixedArityNode<1, TFLNodeImpl<TFLOpcode::RELU>>
+class TFLRelu final : public FixedArityNode<1, TFLNodeImpl<TFLOpcode::RELU>>
 {
 public:
   TFLRelu() = default;