[neurun] Fix a compile error (#4609)
author장지섭/On-Device Lab(SR)/Engineer/삼성전자 <jiseob.jang@samsung.com>
Wed, 6 Mar 2019 10:10:40 +0000 (19:10 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Wed, 6 Mar 2019 10:10:40 +0000 (19:10 +0900)
This commit fixes an error occurred due to a gap of the source merge.

Signed-off-by: jiseob.jang <jiseob.jang@samsung.com>
runtimes/neurun/src/backend/acl_cl/StageGenerator.cc

index 49ea634..fbb2bab 100644 (file)
@@ -1120,7 +1120,7 @@ void StageGenerator::visit(const model::operation::TransposeNode &node)
 
   auto tensors = _tensor_builder;
 
-  returnStage([tensors, param](IExecutionBuilder &builder) {
+  returnStage([tensors, param](compiler::IExecutionBuilder &builder) {
     auto ofm_alloc = tensors->at(param.ofm_idx).get();
     auto ifm_alloc = tensors->at(param.ifm_idx).get();
     const auto pv = getARMComputePermutationVector(param.rank, param.pv);