From 6dfa6a444fe498323c647fd14537462c2f4d4136 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EA=B9=80=EC=88=98=EC=A7=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Wed, 28 Nov 2018 18:18:25 +0900 Subject: [PATCH] [neurun] Change dot_dumper input/output shape (#3741) This commit changes `input`/`output` shape of dot_dumper graph to `doublecircle`. Signed-off-by: sjsujinkim --- runtimes/neurun/src/dumper/dot/DotOperandInfo.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtimes/neurun/src/dumper/dot/DotOperandInfo.cc b/runtimes/neurun/src/dumper/dot/DotOperandInfo.cc index 334e3b3..8457d60 100644 --- a/runtimes/neurun/src/dumper/dot/DotOperandInfo.cc +++ b/runtimes/neurun/src/dumper/dot/DotOperandInfo.cc @@ -28,8 +28,8 @@ namespace dumper namespace dot { -const std::string DotOperandInfo::INPUT_SHAPE = "Mdiamond"; -const std::string DotOperandInfo::OUTPUT_SHAPE = "Mdiamond"; +const std::string DotOperandInfo::INPUT_SHAPE = "doublecircle"; +const std::string DotOperandInfo::OUTPUT_SHAPE = "doublecircle"; const std::string DotOperandInfo::OPERAND_SHAPE = "ellipse"; const std::string DotOperandInfo::BG_COLOR_SCHEME = "set38"; // RED BLUE ORANGE YELLOW GREEN PUPLE CYAN PINK -- 2.7.4