aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2021-04-30 03:18:37 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-05-04 08:35:42 +0000
commit0dc0d8eda87a01c11f9caabc0d2f2933737ba469 (patch)
treebd0dc48b694f4be70c0fb5ac4fbe95a6c25596f9 /Android.bp
parentb699940f5a947f900859c084baa7333dc393e85e (diff)
downloadComputeLibrary-0dc0d8eda87a01c11f9caabc0d2f2933737ba469.tar.gz
Rename PixelwiseMultiplications to Mul for simplicity
Changes the names of the following: - PixelWiseMultiplicationKernel to MulKernel for all backends - PixelWiseMultiplication to Mul for all backends Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: I88108c2d22c888fce37ea1028863026160b9da97 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5534 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.bp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Android.bp b/Android.bp
index 78ac7f130f..046b1c08a5 100644
--- a/Android.bp
+++ b/Android.bp
@@ -306,8 +306,8 @@ cc_library_static {
"src/core/cpu/kernels/CpuElementwiseUnaryKernel.cpp",
"src/core/cpu/kernels/CpuFillKernel.cpp",
"src/core/cpu/kernels/CpuFloorKernel.cpp",
+ "src/core/cpu/kernels/CpuMulKernel.cpp",
"src/core/cpu/kernels/CpuPermuteKernel.cpp",
- "src/core/cpu/kernels/CpuPixelWiseMultiplicationKernel.cpp",
"src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp",
"src/core/cpu/kernels/CpuPoolingKernel.cpp",
"src/core/cpu/kernels/CpuQuantizationKernel.cpp",
@@ -367,8 +367,8 @@ cc_library_static {
"src/core/gpu/cl/kernels/ClFillKernel.cpp",
"src/core/gpu/cl/kernels/ClFloorKernel.cpp",
"src/core/gpu/cl/kernels/ClHeightConcatenateKernel.cpp",
+ "src/core/gpu/cl/kernels/ClMulKernel.cpp",
"src/core/gpu/cl/kernels/ClPermuteKernel.cpp",
- "src/core/gpu/cl/kernels/ClPixelWiseMultiplicationKernel.cpp",
"src/core/gpu/cl/kernels/ClPoolingKernel.cpp",
"src/core/gpu/cl/kernels/ClQuantizationKernel.cpp",
"src/core/gpu/cl/kernels/ClReshapeKernel.cpp",
@@ -640,8 +640,8 @@ cc_library_static {
"src/runtime/cpu/operators/CpuElementwiseUnary.cpp",
"src/runtime/cpu/operators/CpuFill.cpp",
"src/runtime/cpu/operators/CpuFloor.cpp",
+ "src/runtime/cpu/operators/CpuMul.cpp",
"src/runtime/cpu/operators/CpuPermute.cpp",
- "src/runtime/cpu/operators/CpuPixelWiseMultiplication.cpp",
"src/runtime/cpu/operators/CpuPooling.cpp",
"src/runtime/cpu/operators/CpuPoolingAssemblyDispatch.cpp",
"src/runtime/cpu/operators/CpuQuantization.cpp",
@@ -663,9 +663,9 @@ cc_library_static {
"src/runtime/gpu/cl/operators/ClFill.cpp",
"src/runtime/gpu/cl/operators/ClFloor.cpp",
"src/runtime/gpu/cl/operators/ClLogicalNot.cpp",
+ "src/runtime/gpu/cl/operators/ClMul.cpp",
"src/runtime/gpu/cl/operators/ClPRelu.cpp",
"src/runtime/gpu/cl/operators/ClPermute.cpp",
- "src/runtime/gpu/cl/operators/ClPixelWiseMultiplication.cpp",
"src/runtime/gpu/cl/operators/ClPooling.cpp",
"src/runtime/gpu/cl/operators/ClQuantization.cpp",
"src/runtime/gpu/cl/operators/ClReshape.cpp",