aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/CLHelpers.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2017-06-23 18:03:44 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:15:39 +0100
commite5f8fd64a46ce61dac61fd50095a27cfd94930b5 (patch)
tree2b43d580730cfa4ae018d06660403622d08bd00b /src/core/CL/CLHelpers.cpp
parent443c8b979518ad494b9e59648cbd061ebf37cba9 (diff)
downloadComputeLibrary-e5f8fd64a46ce61dac61fd50095a27cfd94930b5.tar.gz
COMPMID-423: Port CLSoftmaxLayer to QS8
Change-Id: I759b7585656d018d7c864425118cd3ec2ca9b0eb Reviewed-on: http://mpd-gerrit.cambridge.arm.com/78908 Reviewed-by: Michele DiGiorgio <michele.digiorgio@arm.com> Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'src/core/CL/CLHelpers.cpp')
-rw-r--r--src/core/CL/CLHelpers.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/CL/CLHelpers.cpp b/src/core/CL/CLHelpers.cpp
index 21b72ddd3b..4b5bbbbb49 100644
--- a/src/core/CL/CLHelpers.cpp
+++ b/src/core/CL/CLHelpers.cpp
@@ -72,6 +72,8 @@ std::string get_cl_type_from_data_type(const DataType &dt)
{
case DataType::U8:
return "uchar";
+ case DataType::QS8:
+ return "qs8";
case DataType::S8:
return "char";
case DataType::U16: