aboutsummaryrefslogtreecommitdiff
path: root/src/core/GLES_COMPUTE/GCKernelLibrary.cpp
diff options
context:
space:
mode:
authorFrank Lei <frank.lei@arm.com>2018-01-02 16:49:33 +0800
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commit8cdfdb83c89178b5cf654a5b27471950ab1b997e (patch)
tree22dd26543f819bc2214b80f50613eeba70e05271 /src/core/GLES_COMPUTE/GCKernelLibrary.cpp
parent02541fb21eca5574fcce012973774a6f213877ee (diff)
downloadComputeLibrary-8cdfdb83c89178b5cf654a5b27471950ab1b997e.tar.gz
APPBROWSER-366: Add DepthwiseConvolutionLayer(fp16 only) support.
Change-Id: I051b7e56b60bf1a55cdf014539ef71346d3aee26 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/114737 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/GLES_COMPUTE/GCKernelLibrary.cpp')
-rw-r--r--src/core/GLES_COMPUTE/GCKernelLibrary.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/GLES_COMPUTE/GCKernelLibrary.cpp b/src/core/GLES_COMPUTE/GCKernelLibrary.cpp
index 26b8aaafd6..7766f95bcc 100644
--- a/src/core/GLES_COMPUTE/GCKernelLibrary.cpp
+++ b/src/core/GLES_COMPUTE/GCKernelLibrary.cpp
@@ -223,6 +223,7 @@ const std::map<std::string, std::string> GCKernelLibrary::_shader_program_map =
{ "normalize_planar_yuv_layer", "normalize_planar_yuv_layer.cs" },
{ "scale_nearest_neighbour", "scale.cs" },
{ "arithmetic_add", "arithmetic_add.cs" },
+ { "depthwise_convolution_3x3", "depthwise_convolution3x3.cs" },
};
const std::map<std::string, std::string> GCKernelLibrary::_program_source_map =
@@ -304,6 +305,10 @@ const std::map<std::string, std::string> GCKernelLibrary::_program_source_map =
"arithmetic_add.cs",
#include "./cs_shaders/arithmetic_add.csembed"
},
+ {
+ "depthwise_convolution3x3.cs",
+#include "./cs_shaders/depthwise_convolution3x3.csembed"
+ },
#endif /* EMBEDDED_KERNELS */
};