From 5d62c0117e1dc8db953e3e8c4b3fa50c6bbf4536 Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Tue, 29 Jan 2019 15:05:41 +0000 Subject: COMPMID-1710: Fix NEActivationLayer map for QASYMM8 Change-Id: I6c11568f8933d074541a28ef782954460e00d851 Signed-off-by: Isabella Gottardi Reviewed-on: https://review.mlplatform.org/596 Reviewed-by: Georgios Pinitas Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez --- src/core/NEON/kernels/NEActivationLayerKernel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/NEON/kernels/NEActivationLayerKernel.cpp b/src/core/NEON/kernels/NEActivationLayerKernel.cpp index 7565a1214c..c61d851ad8 100644 --- a/src/core/NEON/kernels/NEActivationLayerKernel.cpp +++ b/src/core/NEON/kernels/NEActivationLayerKernel.cpp @@ -140,6 +140,7 @@ void NEActivationLayerKernel::configure(ITensor *input, ITensor *output, Activat // Activation functions : QASYMM8 static std::map act_map_qasymm8 = { + { ActivationFunction::BOUNDED_RELU, &NEActivationLayerKernel::activation }, { ActivationFunction::LU_BOUNDED_RELU, &NEActivationLayerKernel::activation }, { ActivationFunction::RELU, &NEActivationLayerKernel::activation }, }; -- cgit v1.2.1