aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/CLKernelLibrary.cpp
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2019-06-26 16:23:03 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-07-09 09:24:21 +0000
commit30dbeef2f46bdd6fe05d25dfa27cb4b2359dced3 (patch)
tree33e12ced1dca23b79212b6afd64950ed4a40363b /src/core/CL/CLKernelLibrary.cpp
parentebdde65530c8819a16d558fc5ebb3cc519fbc344 (diff)
downloadComputeLibrary-30dbeef2f46bdd6fe05d25dfa27cb4b2359dced3.tar.gz
COMPMID-2411: Add (logistic and tanh) activation support for QSYMM16 for CL
Change-Id: I8d72490b1cc58563ba7b94664135586bc40e6526 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/1466 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/core/CL/CLKernelLibrary.cpp')
-rw-r--r--src/core/CL/CLKernelLibrary.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/CL/CLKernelLibrary.cpp b/src/core/CL/CLKernelLibrary.cpp
index db57bb93a6..36d8bed5b9 100644
--- a/src/core/CL/CLKernelLibrary.cpp
+++ b/src/core/CL/CLKernelLibrary.cpp
@@ -148,8 +148,8 @@ const std::map<std::string, std::string> CLKernelLibrary::_kernel_program_map =
{ "accumulate_squared", "accumulate.cl" },
{ "accumulate_weighted", "accumulate.cl" },
{ "activation_layer", "activation_layer.cl" },
- { "activation_layer_qa8", "activation_layer_qa8.cl" },
- { "activation_layer_qa8_f32", "activation_layer_qa8.cl" },
+ { "activation_layer_quant", "activation_layer_quant.cl" },
+ { "activation_layer_quant_f32", "activation_layer_quant.cl" },
{ "batch_to_space_nchw", "batch_to_space.cl" },
{ "batch_to_space_static_nchw", "batch_to_space.cl" },
{ "batch_to_space_nhwc", "batch_to_space.cl" },
@@ -576,8 +576,8 @@ const std::map<std::string, std::string> CLKernelLibrary::_program_source_map =
#include "./cl_kernels/activation_layer.clembed"
},
{
- "activation_layer_qa8.cl",
-#include "./cl_kernels/activation_layer_qa8.clembed"
+ "activation_layer_quant.cl",
+#include "./cl_kernels/activation_layer_quant.clembed"
},
{
"batch_to_space.cl",