From 03b2971ac69a86f10a1566938d1a25afee15746c Mon Sep 17 00:00:00 2001 From: Viet-Hoa Do Date: Wed, 1 Jun 2022 11:47:14 +0100 Subject: Integrate SME2 kernels * Add SME/SME2 detection. * Integrate SME2 implementation for: - Normal convolution - Winograd - Depthwise convolution - Pooling Resolves: COMPMID-5700 Signed-off-by: Viet-Hoa Do Change-Id: I2f1ca1d05f8cfeee9309ed1c0a36096a4a6aad5c Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8692 Reviewed-by: Gunes Bayir Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- .../kernels/arm_conv/depthwise/depthwise_u8q.cpp | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) (limited to 'src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp') diff --git a/src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp b/src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp index b1489d0b59..9dbd89fb52 100644 --- a/src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp +++ b/src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp @@ -28,11 +28,19 @@ #include "depthwise_depthfirst.hpp" #include "depthwise_depthfirst_generic.hpp" #include "depthwise_depthfirst_multiplier.hpp" +#include "depthwise_planar.hpp" #include "depthwise_implementation_constraints.hpp" #if defined(__aarch64__) #if defined(ARM_COMPUTE_ENABLE_SVE) +#if defined(ARM_COMPUTE_ENABLE_SME2) +#include "kernels/sme2_u8q_planar_3x3_s1_4rows_dot_za.hpp" +#include "kernels/sme2_u8q_planar_3x3_s2_4rows_dot_za.hpp" +#include "kernels/sme2_u8q_planar_5x5_s1_4rows_dot_za.hpp" +#include "kernels/sme2_u8q_planar_5x5_s2_4rows_dot_za.hpp" +#endif // defined(ARM_COMPUTE_ENABLE_SME2) + #include "kernels/sve_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst.hpp" #include "kernels/sve_u8q_nhwc_3x3_s1_output2x2_mla_depthfirst.hpp" #include "kernels/sve_u8q_nhwc_3x3_s2_output2x2_mla_depthfirst.hpp" @@ -66,6 +74,60 @@ namespace depthwise { static const DepthwiseImplementation depthwise_u8q_methods[] = { #if defined(__aarch64__) #if defined(ARM_COMPUTE_ENABLE_SVE) +#if defined(ARM_COMPUTE_ENABLE_SME2) + { + DepthwiseMethod::PLANAR, + "sme2_u8q_planar_3x3_s1_4rows_dot_za", + constraint(cpu_has_sme, cpu_has_sme2, + is_supported, + has_no_channel_multiplier, + qp_has_no_left_shift, no_prime_right_pad), + nullptr, + [] (const DepthwiseArgs &args, const Requantize32 &qp) -> DepthwiseCommon * { + auto strat = new sme2_u8q_planar_3x3_s1_4rows_dot_za(args.cpu_info); + return new DepthwisePlanar(strat, args, qp); + }, + }, + { + DepthwiseMethod::PLANAR, + "sme2_u8q_planar_3x3_s2_4rows_dot_za", + constraint(cpu_has_sme, cpu_has_sme2, + is_supported, + has_no_channel_multiplier, + qp_has_no_left_shift, no_prime_right_pad), + nullptr, + [] (const DepthwiseArgs &args, const Requantize32 &qp) -> DepthwiseCommon * { + auto strat = new sme2_u8q_planar_3x3_s2_4rows_dot_za(args.cpu_info); + return new DepthwisePlanar(strat, args, qp); + }, + }, + { + DepthwiseMethod::PLANAR, + "sme2_u8q_planar_5x5_s1_4rows_dot_za", + constraint(cpu_has_sme, cpu_has_sme2, + is_supported, + has_no_channel_multiplier, + qp_has_no_left_shift, no_prime_right_pad), + nullptr, + [] (const DepthwiseArgs &args, const Requantize32 &qp) -> DepthwiseCommon * { + auto strat = new sme2_u8q_planar_5x5_s1_4rows_dot_za(args.cpu_info); + return new DepthwisePlanar(strat, args, qp); + }, + }, + { + DepthwiseMethod::PLANAR, + "sme2_u8q_planar_5x5_s2_4rows_dot_za", + constraint(cpu_has_sme, cpu_has_sme2, + is_supported, + has_no_channel_multiplier, + qp_has_no_left_shift, no_prime_right_pad), + nullptr, + [] (const DepthwiseArgs &args, const Requantize32 &qp) -> DepthwiseCommon * { + auto strat = new sme2_u8q_planar_5x5_s2_4rows_dot_za(args.cpu_info); + return new DepthwisePlanar(strat, args, qp); + }, + }, +#endif // defined(ARM_COMPUTE_ENABLE_SME2) { DepthwiseMethod::DEPTHFIRST, "sve_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst", -- cgit v1.2.1