From a085a0c91c5b3061e616fa810d81be5798b240d8 Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Wed, 2 Dec 2020 14:54:34 +0000 Subject: Rename the files and classes required by the OpenCL GEMM heuristic All existing kernel type selection heuristics CLGEMMKernelSelection are renamed to CLGEMMDefaultType All existing kernel configuration heuristics CLGEMMKernelConfiguration are renamed to CLGEMMDefaultConfig This refactoring is required to make room for tuner-based heuristics Resolves COMPMID-3842 Change-Id: I2c9f1029ad67f1e2808c79871698fc4486d45306 Signed-off-by: SiCong Li Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4639 Tested-by: Arm Jenkins Reviewed-by: Manuel Bottini Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- Android.bp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'Android.bp') diff --git a/Android.bp b/Android.bp index bf68dd4535..8c29386a28 100644 --- a/Android.bp +++ b/Android.bp @@ -71,13 +71,13 @@ cc_library_static { "src/core/CL/ICLTensor.cpp", "src/core/CL/OpenCL.cpp", "src/core/CL/gemm/CLGEMMHelpers.cpp", - "src/core/CL/gemm/native/CLGEMMNativeKernelConfigurationBifrost.cpp", - "src/core/CL/gemm/native/CLGEMMNativeKernelConfigurationMidgard.cpp", - "src/core/CL/gemm/native/CLGEMMNativeKernelConfigurationValhall.cpp", - "src/core/CL/gemm/reshaped/CLGEMMReshapedKernelConfigurationBifrost.cpp", - "src/core/CL/gemm/reshaped/CLGEMMReshapedKernelConfigurationValhall.cpp", - "src/core/CL/gemm/reshaped_only_rhs/CLGEMMReshapedOnlyRHSKernelConfigurationBifrost.cpp", - "src/core/CL/gemm/reshaped_only_rhs/CLGEMMReshapedOnlyRHSKernelConfigurationValhall.cpp", + "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeBifrost.cpp", + "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeMidgard.cpp", + "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeValhall.cpp", + "src/core/CL/gemm/reshaped/CLGEMMDefaultConfigReshapedBifrost.cpp", + "src/core/CL/gemm/reshaped/CLGEMMDefaultConfigReshapedValhall.cpp", + "src/core/CL/gemm/reshaped_only_rhs/CLGEMMDefaultConfigReshapedRHSOnlyBifrost.cpp", + "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", @@ -584,9 +584,9 @@ cc_library_static { "src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp", "src/runtime/CL/functions/CLWinogradInputTransform.cpp", "src/runtime/CL/functions/CLYOLOLayer.cpp", - "src/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.cpp", - "src/runtime/CL/gemm/CLGEMMKernelSelectionMidgard.cpp", - "src/runtime/CL/gemm/CLGEMMKernelSelectionValhall.cpp", + "src/runtime/CL/gemm/CLGEMMDefaultTypeBifrost.cpp", + "src/runtime/CL/gemm/CLGEMMDefaultTypeMidgard.cpp", + "src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.cpp", "src/runtime/CL/tuners/BifrostTuner.cpp", "src/runtime/CL/tuners/CLLWSList.cpp", "src/runtime/CL/tuners/MidgardTuner.cpp", -- cgit v1.2.1