aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/gemm/CLGEMMKernelSelection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/gemm/CLGEMMKernelSelection.h')
-rw-r--r--src/runtime/CL/gemm/CLGEMMKernelSelection.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/runtime/CL/gemm/CLGEMMKernelSelection.h b/src/runtime/CL/gemm/CLGEMMKernelSelection.h
index 69f8349d27..6189a324cf 100644
--- a/src/runtime/CL/gemm/CLGEMMKernelSelection.h
+++ b/src/runtime/CL/gemm/CLGEMMKernelSelection.h
@@ -25,9 +25,9 @@
#define SRC_CLGEMMKERNELSELECTION_H
#include "arm_compute/runtime/CL/ICLGEMMKernelSelection.h"
-#include "src/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.h"
-#include "src/runtime/CL/gemm/CLGEMMKernelSelectionMidgard.h"
-#include "src/runtime/CL/gemm/CLGEMMKernelSelectionValhall.h"
+#include "src/runtime/CL/gemm/CLGEMMDefaultTypeBifrost.h"
+#include "src/runtime/CL/gemm/CLGEMMDefaultTypeMidgard.h"
+#include "src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h"
namespace arm_compute
{
@@ -48,11 +48,11 @@ public:
switch(get_arch_from_target(gpu))
{
case GPUTarget::MIDGARD:
- return std::make_unique<CLGEMMKernelSelectionMidgard>(gpu);
+ return std::make_unique<CLGEMMDefaultTypeMidgard>(gpu);
case GPUTarget::BIFROST:
- return std::make_unique<CLGEMMKernelSelectionBifrost>(gpu);
+ return std::make_unique<CLGEMMDefaultTypeBifrost>(gpu);
case GPUTarget::VALHALL:
- return std::make_unique<CLGEMMKernelSelectionValhall>(gpu);
+ return std::make_unique<CLGEMMDefaultTypeValhall>(gpu);
default:
ARM_COMPUTE_ERROR("Not supported GPU target");
}