summaryrefslogtreecommitdiff
path: root/runtimes
diff options
context:
space:
mode:
author이상규/On-Device Lab(SR)/Principal Engineer/삼성전자 <sg5.lee@samsung.com>2019-04-04 15:14:09 +0900
committer이춘석/On-Device Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>2019-04-04 15:14:09 +0900
commit4bffcb2d4a8a981a1d2d2f71e62994690f02cd90 (patch)
tree55abe32524c5363427cf03a530a24658231a3e10 /runtimes
parentd8447b61808854475e96ed893080d6fa82097b95 (diff)
downloadnnfw-4bffcb2d4a8a981a1d2d2f71e62994690f02cd90.tar.gz
nnfw-4bffcb2d4a8a981a1d2d2f71e62994690f02cd90.tar.bz2
nnfw-4bffcb2d4a8a981a1d2d2f71e62994690f02cd90.zip
[neurun] Fix wrong output operand in ExecManager test (#4927)
Fix wrong added output operand. (operand_rhs to operand_result) Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>
Diffstat (limited to 'runtimes')
-rw-r--r--runtimes/neurun/test/interp/ExecManager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtimes/neurun/test/interp/ExecManager.cc b/runtimes/neurun/test/interp/ExecManager.cc
index 7a93f85f4..fac7325af 100644
--- a/runtimes/neurun/test/interp/ExecManager.cc
+++ b/runtimes/neurun/test/interp/ExecManager.cc
@@ -74,7 +74,7 @@ protected:
model->operands.at(operand_rhs).usage(Usage::MODEL_INPUT);
model->inputs.append(operand_lhs);
model->inputs.append(operand_rhs);
- model->outputs.append(operand_rhs);
+ model->outputs.append(operand_result);
_graph = nnfw::cpp14::make_unique<::neurun::graph::Graph>(std::move(model));
_graph->finishBuilding();