aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NEActivationLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NEActivationLayer.cpp')
-rw-r--r--src/runtime/NEON/functions/NEActivationLayer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/NEON/functions/NEActivationLayer.cpp b/src/runtime/NEON/functions/NEActivationLayer.cpp
index 889ff6b1f4..03222386d9 100644
--- a/src/runtime/NEON/functions/NEActivationLayer.cpp
+++ b/src/runtime/NEON/functions/NEActivationLayer.cpp
@@ -90,9 +90,9 @@ Status NEActivationLayer::validate(const ITensorInfo *input, const ITensorInfo *
void NEActivationLayer::run()
{
- const InputTensor src{ TensorType::ACL_SRC, _impl->src };
- OutputTensor dst{ TensorType::ACL_DST, _impl->dst };
+ const InputTensorMap src{ { TensorType::ACL_SRC, _impl->src } };
+ const OutputTensorMap dst{ { TensorType::ACL_DST, _impl->dst } };
- _impl->op->run({ src }, { dst }, {});
+ _impl->op->run(src, dst, {});
}
} // namespace arm_compute