From efbf6c8fd54159b26eda43eea7a12fce491ca13a Mon Sep 17 00:00:00 2001 From: giuros01 Date: Mon, 3 Sep 2018 09:53:53 +0100 Subject: [COMPMID-386] Github: Support SoftmaxLayer on different number of dimensions? Change-Id: I7422b977538ff29930a90f078badc2edee78af93 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/146638 Tested-by: Jenkins Reviewed-by: Georgios Pinitas --- arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h') diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h index 1011c9a2ef..f6c6edb6a1 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h @@ -52,9 +52,14 @@ public: * * @param[in] input Source tensor. Data types supported: F16/F32 * @param[out] output Destination tensor. Data types supported: same as @p input - * @param[in] beta (Optional) A scaling factor for the exponent. Only beta = 1 is supported. + * @param[in] beta (Optional) A scaling factor for the exponent. Only beta = 1 is supported + * @param[in] axis (Optional) Reduction axis. It has the purpose of squashing the first @p axis + * dimensions together. For instance, given a [4x4x4x4] image, + * when @p axis is 2, the Softmax reduction will be applied on each of the [4x4] planes of the input image. + * + * @note The value of @p axis must be always 1 for GLES */ - void configure(const IGCTensor *input, IGCTensor *output, float beta = 1.0f); + void configure(const IGCTensor *input, IGCTensor *output, float beta = 1.0f, size_t axis = 1); // Inherited methods overridden: void run() override; -- cgit v1.2.1