From 52ebf4219385efe54463dc794ba806b82a6137b3 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 17 Dec 2018 18:21:02 +0000 Subject: COMPMID-1809: Create a neon vector wrapper using register size. Change-Id: I2657f0c09918924a38a75c395301414e50edc198 Reviewed-on: https://review.mlplatform.org/412 Tested-by: Arm Jenkins Reviewed-by: Giuseppe Rossini --- arm_compute/core/NEON/wrapper/traits.h | 42 +++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) (limited to 'arm_compute/core/NEON/wrapper/traits.h') diff --git a/arm_compute/core/NEON/wrapper/traits.h b/arm_compute/core/NEON/wrapper/traits.h index 5cd6086c0c..0dbd90ddf8 100644 --- a/arm_compute/core/NEON/wrapper/traits.h +++ b/arm_compute/core/NEON/wrapper/traits.h @@ -40,7 +40,7 @@ struct vector_64_tag {}; /** 128-bit vector tag */ struct vector_128_tag {}; -/** Create the appropriate NEON vector given its type and size */ +/** Create the appropriate NEON vector given its type and size in terms of elements */ template struct neon_vector; // Specializations #ifndef DOXYGEN_SKIP_THIS @@ -72,6 +72,46 @@ template <> struct neon_vector{ using type = float16x8_t; using ta template using neon_vector_t = typename neon_vector::type; /** Helper type template to get the tag type of a neon vector */ template using neon_vector_tag_t = typename neon_vector::tag_type; + +/** Vector bit-width enum class */ +enum class BitWidth +{ + W64, /**< 64-bit width */ + W128, /**< 128-bit width */ +}; + +/** Create the appropriate NEON vector given its type and size in terms of bits */ +template struct neon_bitvector; +// Specializations +#ifndef DOXYGEN_SKIP_THIS +template <> struct neon_bitvector{ using type = uint8x8_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = int8x8_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = uint8x16_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = int8x16_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = uint16x4_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = int16x4_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = uint16x8_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = int16x8_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = uint32x2_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = int32x2_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = uint32x4_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = int32x4_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = uint64x1_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = int64x1_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = uint64x2_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = int64x2_t; using tag_type = vector_128_tag; }; +template <> struct neon_bitvector{ using type = float32x2_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = float32x4_t; using tag_type = vector_128_tag; }; +#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC +template <> struct neon_bitvector{ using type = float16x4_t; using tag_type = vector_64_tag; }; +template <> struct neon_bitvector{ using type = float16x8_t; using tag_type = vector_128_tag; }; +#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC +#endif /* DOXYGEN_SKIP_THIS */ + +/** Helper type template to get the type of a neon vector */ +template using neon_bitvector_t = typename neon_bitvector::type; +/** Helper type template to get the tag type of a neon vector */ +template using neon_bitvector_tag_t = typename neon_bitvector::tag_type; // clang-format on // *INDENT-ON* } // namespace traits -- cgit v1.2.1