aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2021-04-30 14:46:05 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-05-05 17:39:26 +0000
commitef516e8bb8eb7f55b410268587f3b88b77e2fd8e (patch)
treed2043bf6bae9c51ab0344a4e13f1c54205e28c3c /Android.bp
parent448cb45e2cb86f32a739c925a1ac8c688cf573bf (diff)
downloadComputeLibrary-ef516e8bb8eb7f55b410268587f3b88b77e2fd8e.tar.gz
Rename Quantization/Dequantization kernels/operators to imperative mood
Renames the following kernels/functions - [Cl|Cpu]DequantizationKernel -> [Cl|Cpu]DequantizeKernel - [Cl|Cpu]Dequantization -> [Cl|Cpu]CpuDequantize - [Cl|Cpu]QuantizationKernel -> [Cl|Cpu]QuantizeKernel - [Cl|Cpu]Quantization -> [Cl|Cpu]Quantize Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: Ic3c5eb3b7fe28f807294d159830eef99c2dd6219 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5566 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp16
1 files changed, 8 insertions, 8 deletions
diff --git a/Android.bp b/Android.bp
index 046b1c08a5..1354b365e4 100644
--- a/Android.bp
+++ b/Android.bp
@@ -299,7 +299,7 @@ cc_library_static {
"src/core/cpu/kernels/CpuConvertFullyConnectedWeightsKernel.cpp",
"src/core/cpu/kernels/CpuCopyKernel.cpp",
"src/core/cpu/kernels/CpuDepthwiseConvolutionNativeKernel.cpp",
- "src/core/cpu/kernels/CpuDequantizationKernel.cpp",
+ "src/core/cpu/kernels/CpuDequantizeKernel.cpp",
"src/core/cpu/kernels/CpuDirectConvolutionKernel.cpp",
"src/core/cpu/kernels/CpuDirectConvolutionOutputStageKernel.cpp",
"src/core/cpu/kernels/CpuElementwiseKernel.cpp",
@@ -310,7 +310,7 @@ cc_library_static {
"src/core/cpu/kernels/CpuPermuteKernel.cpp",
"src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp",
"src/core/cpu/kernels/CpuPoolingKernel.cpp",
- "src/core/cpu/kernels/CpuQuantizationKernel.cpp",
+ "src/core/cpu/kernels/CpuQuantizeKernel.cpp",
"src/core/cpu/kernels/CpuReshapeKernel.cpp",
"src/core/cpu/kernels/CpuScaleKernel.cpp",
"src/core/cpu/kernels/CpuSoftmaxKernel.cpp",
@@ -360,7 +360,7 @@ cc_library_static {
"src/core/gpu/cl/kernels/ClCopyKernel.cpp",
"src/core/gpu/cl/kernels/ClCropKernel.cpp",
"src/core/gpu/cl/kernels/ClDepthConcatenateKernel.cpp",
- "src/core/gpu/cl/kernels/ClDequantizationKernel.cpp",
+ "src/core/gpu/cl/kernels/ClDequantizeKernel.cpp",
"src/core/gpu/cl/kernels/ClDirectConvolutionKernel.cpp",
"src/core/gpu/cl/kernels/ClElementwiseKernel.cpp",
"src/core/gpu/cl/kernels/ClElementwiseUnaryKernel.cpp",
@@ -370,7 +370,7 @@ cc_library_static {
"src/core/gpu/cl/kernels/ClMulKernel.cpp",
"src/core/gpu/cl/kernels/ClPermuteKernel.cpp",
"src/core/gpu/cl/kernels/ClPoolingKernel.cpp",
- "src/core/gpu/cl/kernels/ClQuantizationKernel.cpp",
+ "src/core/gpu/cl/kernels/ClQuantizeKernel.cpp",
"src/core/gpu/cl/kernels/ClReshapeKernel.cpp",
"src/core/gpu/cl/kernels/ClScaleKernel.cpp",
"src/core/gpu/cl/kernels/ClSoftmaxKernel.cpp",
@@ -634,7 +634,7 @@ cc_library_static {
"src/runtime/cpu/operators/CpuCopy.cpp",
"src/runtime/cpu/operators/CpuDepthwiseConvolution.cpp",
"src/runtime/cpu/operators/CpuDepthwiseConvolutionAssemblyDispatch.cpp",
- "src/runtime/cpu/operators/CpuDequantization.cpp",
+ "src/runtime/cpu/operators/CpuDequantize.cpp",
"src/runtime/cpu/operators/CpuDirectConvolution.cpp",
"src/runtime/cpu/operators/CpuElementwise.cpp",
"src/runtime/cpu/operators/CpuElementwiseUnary.cpp",
@@ -644,7 +644,7 @@ cc_library_static {
"src/runtime/cpu/operators/CpuPermute.cpp",
"src/runtime/cpu/operators/CpuPooling.cpp",
"src/runtime/cpu/operators/CpuPoolingAssemblyDispatch.cpp",
- "src/runtime/cpu/operators/CpuQuantization.cpp",
+ "src/runtime/cpu/operators/CpuQuantize.cpp",
"src/runtime/cpu/operators/CpuReshape.cpp",
"src/runtime/cpu/operators/CpuScale.cpp",
"src/runtime/cpu/operators/CpuSoftmax.cpp",
@@ -656,7 +656,7 @@ cc_library_static {
"src/runtime/gpu/cl/operators/ClConvertFullyConnectedWeights.cpp",
"src/runtime/gpu/cl/operators/ClCopy.cpp",
"src/runtime/gpu/cl/operators/ClCrop.cpp",
- "src/runtime/gpu/cl/operators/ClDequantization.cpp",
+ "src/runtime/gpu/cl/operators/ClDequantize.cpp",
"src/runtime/gpu/cl/operators/ClDirectConvolution.cpp",
"src/runtime/gpu/cl/operators/ClElementwiseOperations.cpp",
"src/runtime/gpu/cl/operators/ClElementwiseUnary.cpp",
@@ -667,7 +667,7 @@ cc_library_static {
"src/runtime/gpu/cl/operators/ClPRelu.cpp",
"src/runtime/gpu/cl/operators/ClPermute.cpp",
"src/runtime/gpu/cl/operators/ClPooling.cpp",
- "src/runtime/gpu/cl/operators/ClQuantization.cpp",
+ "src/runtime/gpu/cl/operators/ClQuantize.cpp",
"src/runtime/gpu/cl/operators/ClReshape.cpp",
"src/runtime/gpu/cl/operators/ClScale.cpp",
"src/runtime/gpu/cl/operators/ClSoftmax.cpp",