From 518e275d16f1f17bc6eb3c9ef20528a1c0128496 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EA=B9=80=EC=88=98=EC=A7=84/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 27 Feb 2019 16:12:57 +0900 Subject: [PATCH] [neurun] Fix multiple output bug in DotDumper (#4514) This commit fixes multiple output bug in `DotDumper`. ``` node0 -> obj5 node0 -> obj5 node0 -> obj5 ``` ``` node0 -> obj3 node0 -> obj4 node0 -> obj5 ``` Signed-off-by: sjsujinkim --- runtimes/neurun/src/dumper/dot/DotOperandInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/neurun/src/dumper/dot/DotOperandInfo.h b/runtimes/neurun/src/dumper/dot/DotOperandInfo.h index c50493f..882bc44 100644 --- a/runtimes/neurun/src/dumper/dot/DotOperandInfo.h +++ b/runtimes/neurun/src/dumper/dot/DotOperandInfo.h @@ -73,7 +73,7 @@ private: void addBackendLabel(); private: - const neurun::model::operand::Index &_index; + neurun::model::operand::Index _index; const neurun::model::operand::Object &_object; Type _type; const neurun::graph::operand::LowerInfo *_lower_info; -- 2.7.4