aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2021-01-15 09:29:50 +0000
committerMichele Di Giorgio <michele.digiorgio@arm.com>2021-01-21 13:42:41 +0000
commitf47f718e87889b7d501a48e1d86b5d12b2e3f54c (patch)
tree6d55334ce1d4c54612320b53a59fee8e429b590b /Android.bp
parentae182f24b20ca78342408dfbae7e66773b35f65f (diff)
downloadComputeLibrary-f47f718e87889b7d501a48e1d86b5d12b2e3f54c.tar.gz
Make CLFloor and CLActivation kernels and functions state-less
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: Icbe4e6a7c6732a59bdda0136af44c4852452dfd1 Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4891 Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Android.bp b/Android.bp
index 8d6182f820..30ed0acf17 100644
--- a/Android.bp
+++ b/Android.bp
@@ -80,7 +80,6 @@ cc_library_static {
"src/core/CL/gemm/reshaped_only_rhs/CLGEMMDefaultConfigReshapedRHSOnlyValhall.cpp",
"src/core/CL/kernels/CLAbsoluteDifferenceKernel.cpp",
"src/core/CL/kernels/CLAccumulateKernel.cpp",
- "src/core/CL/kernels/CLActivationLayerKernel.cpp",
"src/core/CL/kernels/CLArgMinMaxLayerKernel.cpp",
"src/core/CL/kernels/CLBatchNormalizationLayerKernel.cpp",
"src/core/CL/kernels/CLBatchToSpaceLayerKernel.cpp",
@@ -118,7 +117,6 @@ cc_library_static {
"src/core/CL/kernels/CLFFTScaleKernel.cpp",
"src/core/CL/kernels/CLFastCornersKernel.cpp",
"src/core/CL/kernels/CLFillBorderKernel.cpp",
- "src/core/CL/kernels/CLFloorKernel.cpp",
"src/core/CL/kernels/CLFuseBatchNormalizationKernel.cpp",
"src/core/CL/kernels/CLGEMMLowpMatrixMultiplyNativeKernel.cpp",
"src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedKernel.cpp",
@@ -443,8 +441,10 @@ cc_library_static {
"src/core/cpu/kernels/sub/neon/qasymm8.cpp",
"src/core/cpu/kernels/sub/neon/qasymm8_signed.cpp",
"src/core/cpu/kernels/sub/neon/qsymm16.cpp",
+ "src/core/gpu/cl/kernels/ClActivationKernel.cpp",
"src/core/gpu/cl/kernels/ClBatchConcatenateKernel.cpp",
"src/core/gpu/cl/kernels/ClDepthConcatenateKernel.cpp",
+ "src/core/gpu/cl/kernels/ClFloorKernel.cpp",
"src/core/gpu/cl/kernels/ClHeightConcatenateKernel.cpp",
"src/core/gpu/cl/kernels/ClWidthConcatenate2TensorsKernel.cpp",
"src/core/gpu/cl/kernels/ClWidthConcatenate4TensorsKernel.cpp",
@@ -795,7 +795,9 @@ cc_library_static {
"src/runtime/cpu/operators/CpuPermute.cpp",
"src/runtime/cpu/operators/CpuReshape.cpp",
"src/runtime/cpu/operators/CpuSub.cpp",
+ "src/runtime/gpu/cl/operators/ClActivation.cpp",
"src/runtime/gpu/cl/operators/ClConcatenate.cpp",
+ "src/runtime/gpu/cl/operators/ClFloor.cpp",
"utils/CommonGraphOptions.cpp",
"utils/GraphUtils.cpp",
"utils/Utils.cpp",