From: 이한종/동작제어Lab(SR)/Engineer/삼성전자 Date: Wed, 7 Nov 2018 08:01:26 +0000 (+0900) Subject: [neurun] Fix build break (#3507) X-Git-Tag: 0.3~455 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4834d71aaced23ec75272d57a603b4a6135cce9f;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Fix build break (#3507) Caused by #3426 and #3436 collision. Signed-off-by: Hanjoung Lee --- diff --git a/runtimes/neurun/src/codegen/ConstantInitializer.cc b/runtimes/neurun/src/codegen/ConstantInitializer.cc index e653120..1bc19f8 100644 --- a/runtimes/neurun/src/codegen/ConstantInitializer.cc +++ b/runtimes/neurun/src/codegen/ConstantInitializer.cc @@ -93,13 +93,13 @@ void ConstantInitializer::operator()() auto operation_index = _graph.operands().at(index).getUses().list().front(); auto operation = &_graph.operations().at(operation_index); auto fc_operation = - dynamic_cast(operation); + dynamic_cast(operation); if (fc_operation == nullptr) break; - auto ifm_index = - fc_operation->getInputs().at(neurun::graph::operation::FullyConnected::Input::INPUT); + auto ifm_index = fc_operation->getInputs().at( + neurun::graph::operation::FullyConnectedNode::Input::INPUT); const auto &ifm = _graph.operands().at(ifm_index); const auto ifm_shape = ifm.shape().asFeature(); const auto num_output = shape.dim(0);