From c255aa7df3e61a73cc4af86d21d3b1848653b7a9 Mon Sep 17 00:00:00 2001 From: Usama Arif Date: Mon, 13 May 2019 16:26:29 +0100 Subject: COMPMID-2263: Implement NELogLayer Change-Id: Ie2ae8f7a0b1803dae42873201cb643c71b26129f Signed-off-by: Usama Arif Reviewed-on: https://review.mlplatform.org/c/1122 Tested-by: Arm Jenkins Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins --- src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp') diff --git a/src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp b/src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp index 48f4975b1a..d0117d0131 100644 --- a/src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp +++ b/src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp @@ -63,4 +63,15 @@ Status NENegLayer::validate(const ITensorInfo *input, const ITensorInfo *output) return NEElementwiseUnaryKernel::validate(ElementWiseUnary::NEG, input, output); } +void NELogLayer::configure(const ITensor *input, ITensor *output) +{ + auto k = arm_compute::support::cpp14::make_unique(); + k->configure(ElementWiseUnary::LOG, input, output); + _kernel = std::move(k); +} +Status NELogLayer::validate(const ITensorInfo *input, const ITensorInfo *output) +{ + return NEElementwiseUnaryKernel::validate(ElementWiseUnary::LOG, input, output); +} + } // namespace arm_compute -- cgit v1.2.1