From fab302c011fc650b6b852454be1cd77845279d8f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9C=A4=ED=98=84=EC=8B=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Principal=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Mon, 26 Nov 2018 10:36:15 +0900 Subject: [PATCH] [encodump] Added ReLU6 (#2395) Withi this commit, encodump prints information about Relu6. Signed-off-by: Hyun Sik Yoon --- contrib/encodump/src/Dump.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/encodump/src/Dump.cpp b/contrib/encodump/src/Dump.cpp index d0fec5f..484ae95 100644 --- a/contrib/encodump/src/Dump.cpp +++ b/contrib/encodump/src/Dump.cpp @@ -100,6 +100,12 @@ public: _os << tab(_indent) << "ReLU" << std::endl; } + void visit(const coco::ReLU6 *op) override + { + op->arg()->accept(this); + _os << tab(_indent) << "ReLU6" << std::endl; + } + void visit(const coco::ConcatF *op) override { op->left()->accept(this); -- 2.7.4