From e6518a567282a1fe46329f7727b63e2758bfd728 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: Mon, 25 Feb 2019 18:21:02 +0900 Subject: [PATCH] [neurun] Fix enum typo in StageGenerator (#4487) This commit fixes enum typo in `StageGenerator` for `StridedSliceNode`. Signed-off-by: sjsujinkim --- runtimes/neurun/src/backend/acl_cl/StageGenerator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/neurun/src/backend/acl_cl/StageGenerator.cc b/runtimes/neurun/src/backend/acl_cl/StageGenerator.cc index 3b46253..c19c626 100644 --- a/runtimes/neurun/src/backend/acl_cl/StageGenerator.cc +++ b/runtimes/neurun/src/backend/acl_cl/StageGenerator.cc @@ -902,7 +902,7 @@ void StageGenerator::visit(const model::operation::SoftmaxNode &node) void StageGenerator::visit(const model::operation::StridedSliceNode &node) { const auto output_index{node.getOutputs().at(0)}; - const auto input_index{node.getInputs().at(model::operation::SoftmaxNode::Input::INPUT)}; + const auto input_index{node.getInputs().at(model::operation::StridedSliceNode::Input::INPUT)}; const auto startData_index{node.param().startData_index}; const auto endData_index{node.param().endData_index}; const auto stridesData_index{node.param().stridesData_index}; -- 2.7.4