From 92c3d71bc23b92abc388da5c30d9c83841f41bb3 Mon Sep 17 00:00:00 2001 From: David Mansell Date: Thu, 9 Nov 2023 10:00:29 +0000 Subject: Remove duplicate definitions of BF16 fixed format kernels. Change-Id: Ie68b0a19040cc6b5bf47fca406989f39aa8d7b81 Signed-off-by: David Mansell Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10687 Reviewed-by: Viet-Hoa Do Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins Tested-by: Arm Jenkins --- src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'src/core/NEON/kernels') diff --git a/src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp b/src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp index 72b0fac96a..5c08e6137d 100644 --- a/src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp +++ b/src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp @@ -206,30 +206,6 @@ GemmImplementation::with_estimate( [](const GemmArgs &args) { return GemmInterleavedFixedFormat::estimate_cycles(args); }, [](const GemmArgs &args) { return new GemmInterleavedFixedFormat(args); } ), -GemmImplementation::with_estimate( - GemmMethod::GEMM_INTERLEAVED, - "a64_ffinterleaved_bf16fp32_mmla_8x12", - KernelWeightFormat::VL256_BL64, - [](const GemmArgs &args) { return args._ci->has_bf16(); }, - [](const GemmArgs &args) { return GemmInterleavedFixedFormat::estimate_cycles(args); }, - [](const GemmArgs &args) { return new GemmInterleavedFixedFormat(args); } -), -GemmImplementation::with_estimate( - GemmMethod::GEMM_INTERLEAVED, - "a64_ffhybrid_bf16fp32_mmla_6x16", - KernelWeightFormat::VL256_BL64, - [](const GemmArgs &args) { return args._ci->has_bf16(); }, - [](const GemmArgs &args) { return GemmHybridIndirectFixedFormat::estimate_cycles(args); }, - [](const GemmArgs &args) { return new GemmHybridIndirectFixedFormat(args); } -), -GemmImplementation::with_estimate( - GemmMethod::GEMM_INTERLEAVED, - "a64_ffinterleaved_bf16fp32_dot_8x12", - KernelWeightFormat::VL128_BL32, - [](const GemmArgs &args) { return args._ci->has_bf16(); }, - [](const GemmArgs &args) { return GemmInterleavedFixedFormat::estimate_cycles(args); }, - [](const GemmArgs &args) { return new GemmInterleavedFixedFormat(args); } -), #endif // ARM_COMPUTE_ENABLE_FIXED_FORMAT_KERNELS GemmImplementation::with_estimate( GemmMethod::GEMM_INTERLEAVED, -- cgit v1.2.1