aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorSiCong Li <sicong.li@arm.com>2020-12-02 14:54:34 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-12-03 23:17:44 +0000
commita085a0c91c5b3061e616fa810d81be5798b240d8 (patch)
treeb7f880f948969ff1383f671f36ca17f4d38f32fe /Android.bp
parentcd22cbfd02a4fcb49cb40622372a13b865db80ee (diff)
downloadComputeLibrary-a085a0c91c5b3061e616fa810d81be5798b240d8.tar.gz
Rename the files and classes required by the OpenCL GEMM heuristic
All existing kernel type selection heuristics CLGEMMKernelSelection<Architecture> are renamed to CLGEMMDefaultType<Architecture> All existing kernel configuration heuristics CLGEMM<KernelType>KernelConfiguration<Architecture> are renamed to CLGEMMDefaultConfig<KernelType><Architecture> This refactoring is required to make room for tuner-based heuristics Resolves COMPMID-3842 Change-Id: I2c9f1029ad67f1e2808c79871698fc4486d45306 Signed-off-by: SiCong Li <sicong.li@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4639 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp20
1 files changed, 10 insertions, 10 deletions
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",