From 0dc0d8eda87a01c11f9caabc0d2f2933737ba469 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Fri, 30 Apr 2021 03:18:37 +0100 Subject: 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 Change-Id: I88108c2d22c888fce37ea1028863026160b9da97 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5534 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'SConscript') diff --git a/SConscript b/SConscript index 63c2a483dc..da92409867 100644 --- a/SConscript +++ b/SConscript @@ -312,7 +312,7 @@ if env['neon']: 'src/core/cpu/kernels/CpuElementwiseUnaryKernel.cpp', 'src/core/cpu/kernels/CpuFillKernel.cpp', 'src/core/cpu/kernels/CpuFloorKernel.cpp', - 'src/core/cpu/kernels/CpuPixelWiseMultiplicationKernel.cpp', + 'src/core/cpu/kernels/CpuMulKernel.cpp', 'src/core/cpu/kernels/CpuQuantizationKernel.cpp', 'src/core/cpu/kernels/CpuScaleKernel.cpp', 'src/core/cpu/kernels/CpuSoftmaxKernel.cpp', @@ -359,7 +359,7 @@ if env['neon']: 'src/runtime/cpu/operators/CpuElementwiseUnary.cpp', 'src/runtime/cpu/operators/CpuFill.cpp', 'src/runtime/cpu/operators/CpuFloor.cpp', - 'src/runtime/cpu/operators/CpuPixelWiseMultiplication.cpp', + 'src/runtime/cpu/operators/CpuMul.cpp', 'src/runtime/cpu/operators/CpuQuantization.cpp', 'src/runtime/cpu/operators/CpuReshape.cpp', 'src/runtime/cpu/operators/CpuScale.cpp', -- cgit v1.2.1