From: 김수진/On-Device Lab(SR)/Engineer/삼성전자 Date: Mon, 25 Feb 2019 09:21:02 +0000 (+0900) Subject: [neurun] Fix enum typo in StageGenerator (#4487) X-Git-Tag: submit/tizen/20190325.013700~212 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6518a567282a1fe46329f7727b63e2758bfd728;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Fix enum typo in StageGenerator (#4487) This commit fixes enum typo in `StageGenerator` for `StridedSliceNode`. Signed-off-by: sjsujinkim --- 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};