From b30dcc5ab8eb2bd37f0ab742af1ec45113d54296 Mon Sep 17 00:00:00 2001 From: Gian Marco Iodice Date: Tue, 20 Jun 2017 09:07:21 +0100 Subject: COMPMID-345 - In-place computation for Activation Layer Change-Id: I25ebfccc3d3e758cc8164e0b33805c0bb303891a Reviewed-on: http://mpd-gerrit.cambridge.arm.com/78226 Tested-by: Kaizen Reviewed-by: Pablo Tello Reviewed-by: Georgios Pinitas --- arm_compute/runtime/NEON/functions/NEActivationLayer.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'arm_compute/runtime/NEON/functions/NEActivationLayer.h') diff --git a/arm_compute/runtime/NEON/functions/NEActivationLayer.h b/arm_compute/runtime/NEON/functions/NEActivationLayer.h index 35366e16fb..b1a211553d 100644 --- a/arm_compute/runtime/NEON/functions/NEActivationLayer.h +++ b/arm_compute/runtime/NEON/functions/NEActivationLayer.h @@ -41,11 +41,14 @@ class NEActivationLayer : public INESimpleFunction public: /** Set the input and output tensor. * - * @param[in] input Source tensor. Data type supported: QS8/F32. - * @param[out] output Destination tensor. Data type supported: same as @p input - * @param[in] activation_info Activation layer parameters. + * @note If the output tensor is a nullptr, the activation function will be performed in-place + * + * @param[in, out] input Source tensor. In case of @p output tensor = nullptr, this tensor will store the result + * of the activation function. Data types supported: QS8/F32. + * @param[out] output Destination tensor. Data type supported: same as @p input + * @param[in] activation_info Activation layer parameters. */ - void configure(const ITensor *input, ITensor *output, ActivationLayerInfo activation_info); + void configure(ITensor *input, ITensor *output, ActivationLayerInfo activation_info); }; } #endif /* __ARM_COMPUTE_NEACTIVATIONLAYER_H__ */ -- cgit v1.2.1