blob: 3452b76761c4172c3490d8446df3f4253556a37c [file] [log] [blame]
Georgios Pinitas82833b82018-01-30 12:14:24 +00001/*
Michalis Spyroub5a450a2021-01-06 17:40:30 +00002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitas82833b82018-01-30 12:14:24 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_WRAPPER_TRAITS_H
25#define ARM_COMPUTE_WRAPPER_TRAITS_H
Georgios Pinitas82833b82018-01-30 12:14:24 +000026
27#include <arm_neon.h>
28
Michalis Spyroub5a450a2021-01-06 17:40:30 +000029#if defined(__ARM_FEATURE_SVE)
30#include <arm_sve.h>
31#endif /* defined(__ARM_FEATURE_SVE) */
32
Georgios Pinitas82833b82018-01-30 12:14:24 +000033namespace arm_compute
34{
35namespace wrapper
36{
37namespace traits
38{
39// *INDENT-OFF*
40// clang-format off
41
Georgios Pinitas57c033b2018-02-15 12:29:44 +000042/** 64-bit vector tag */
43struct vector_64_tag {};
44/** 128-bit vector tag */
45struct vector_128_tag {};
46
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000047/** Create the appropriate SIMD vector given its type and size in terms of elements */
Georgios Pinitas82833b82018-01-30 12:14:24 +000048template <typename T, int S> struct neon_vector;
Manuel Bottinib4bb8272019-12-18 18:01:27 +000049
Alex Gildayc357c472018-03-21 13:54:09 +000050// Specializations
51#ifndef DOXYGEN_SKIP_THIS
giuros01d5134362019-05-14 16:12:53 +010052template <> struct neon_vector<uint8_t, 8>{ using scalar_type = uint8_t; using type = uint8x8_t; using tag_type = vector_64_tag; };
53template <> struct neon_vector<int8_t, 8>{ using scalar_type = int8_t; using type = int8x8_t; using tag_type = vector_64_tag; };
54template <> struct neon_vector<uint8_t, 16>{ using scalar_type = uint8_t; using type = uint8x16_t; using tag_type = vector_128_tag; };
55template <> struct neon_vector<int8_t, 16>{ using scalar_type = int8_t; using type = int8x16_t; using tag_type = vector_128_tag; };
56template <> struct neon_vector<uint16_t, 4>{ using scalar_type = uint16_t; using type = uint16x4_t; using tag_type = vector_64_tag; };
57template <> struct neon_vector<int16_t, 4>{ using scalar_type = int16_t; using type = int16x4_t; using tag_type = vector_64_tag; };
58template <> struct neon_vector<uint16_t, 8>{ using scalar_type = uint16_t; using type = uint16x8_t; using tag_type = vector_128_tag; };
Manuel Bottinib4bb8272019-12-18 18:01:27 +000059template <> struct neon_vector<uint16_t, 16>{ using scalar_type = uint16_t; using type = uint16x8x2_t; };
giuros01d5134362019-05-14 16:12:53 +010060template <> struct neon_vector<int16_t, 8>{ using scalar_type = int16_t; using type = int16x8_t; using tag_type = vector_128_tag; };
Manuel Bottinib4bb8272019-12-18 18:01:27 +000061template <> struct neon_vector<int16_t, 16>{ using scalar_type = int16_t; using type = int16x8x2_t; };
giuros01d5134362019-05-14 16:12:53 +010062template <> struct neon_vector<uint32_t, 2>{ using scalar_type = uint32_t; using type = uint32x2_t; using tag_type = vector_64_tag; };
63template <> struct neon_vector<int32_t, 2>{ using scalar_type = int32_t; using type = int32x2_t; using tag_type = vector_64_tag; };
64template <> struct neon_vector<uint32_t, 4>{ using scalar_type = uint32_t; using type = uint32x4_t; using tag_type = vector_128_tag; };
65template <> struct neon_vector<int32_t, 4>{ using scalar_type = int32_t; using type = int32x4_t; using tag_type = vector_128_tag; };
66template <> struct neon_vector<uint64_t, 1>{ using scalar_type = uint64_t;using type = uint64x1_t; using tag_type = vector_64_tag; };
67template <> struct neon_vector<int64_t, 1>{ using scalar_type = int64_t; using type = int64x1_t; using tag_type = vector_64_tag; };
68template <> struct neon_vector<uint64_t, 2>{ using scalar_type = uint64_t; using type = uint64x2_t; using tag_type = vector_128_tag; };
69template <> struct neon_vector<int64_t, 2>{ using scalar_type = int64_t; using type = int64x2_t; using tag_type = vector_128_tag; };
70template <> struct neon_vector<float_t, 2>{ using scalar_type = float_t; using type = float32x2_t; using tag_type = vector_64_tag; };
71template <> struct neon_vector<float_t, 4>{ using scalar_type = float_t; using type = float32x4_t; using tag_type = vector_128_tag; };
Manuel Bottinib4bb8272019-12-18 18:01:27 +000072
Georgios Pinitasaaba4c62018-08-22 16:20:21 +010073#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
giuros01d5134362019-05-14 16:12:53 +010074template <> struct neon_vector<float16_t, 4>{ using scalar_type = float16_t; using type = float16x4_t; using tag_type = vector_64_tag; };
75template <> struct neon_vector<float16_t, 8>{ using scalar_type = float16_t; using type = float16x8_t; using tag_type = vector_128_tag; };
Georgios Pinitasaaba4c62018-08-22 16:20:21 +010076#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Alex Gildayc357c472018-03-21 13:54:09 +000077#endif /* DOXYGEN_SKIP_THIS */
Georgios Pinitas57c033b2018-02-15 12:29:44 +000078
79/** Helper type template to get the type of a neon vector */
Georgios Pinitas82833b82018-01-30 12:14:24 +000080template <typename T, int S> using neon_vector_t = typename neon_vector<T, S>::type;
Georgios Pinitas57c033b2018-02-15 12:29:44 +000081/** Helper type template to get the tag type of a neon vector */
82template <typename T, int S> using neon_vector_tag_t = typename neon_vector<T, S>::tag_type;
Georgios Pinitas52ebf422018-12-17 18:21:02 +000083
84/** Vector bit-width enum class */
85enum class BitWidth
86{
87 W64, /**< 64-bit width */
88 W128, /**< 128-bit width */
89};
90
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000091/** Create the appropriate SIMD vector given its type and size in terms of bits */
Georgios Pinitas52ebf422018-12-17 18:21:02 +000092template <typename T, BitWidth BW> struct neon_bitvector;
93// Specializations
94#ifndef DOXYGEN_SKIP_THIS
95template <> struct neon_bitvector<uint8_t, BitWidth::W64>{ using type = uint8x8_t; using tag_type = vector_64_tag; };
96template <> struct neon_bitvector<int8_t, BitWidth::W64>{ using type = int8x8_t; using tag_type = vector_64_tag; };
97template <> struct neon_bitvector<uint8_t, BitWidth::W128>{ using type = uint8x16_t; using tag_type = vector_128_tag; };
98template <> struct neon_bitvector<int8_t, BitWidth::W128>{ using type = int8x16_t; using tag_type = vector_128_tag; };
99template <> struct neon_bitvector<uint16_t, BitWidth::W64>{ using type = uint16x4_t; using tag_type = vector_64_tag; };
100template <> struct neon_bitvector<int16_t, BitWidth::W64>{ using type = int16x4_t; using tag_type = vector_64_tag; };
101template <> struct neon_bitvector<uint16_t, BitWidth::W128>{ using type = uint16x8_t; using tag_type = vector_128_tag; };
102template <> struct neon_bitvector<int16_t, BitWidth::W128>{ using type = int16x8_t; using tag_type = vector_128_tag; };
103template <> struct neon_bitvector<uint32_t, BitWidth::W64>{ using type = uint32x2_t; using tag_type = vector_64_tag; };
104template <> struct neon_bitvector<int32_t, BitWidth::W64>{ using type = int32x2_t; using tag_type = vector_64_tag; };
105template <> struct neon_bitvector<uint32_t, BitWidth::W128>{ using type = uint32x4_t; using tag_type = vector_128_tag; };
106template <> struct neon_bitvector<int32_t, BitWidth::W128>{ using type = int32x4_t; using tag_type = vector_128_tag; };
107template <> struct neon_bitvector<uint64_t, BitWidth::W64>{ using type = uint64x1_t; using tag_type = vector_64_tag; };
108template <> struct neon_bitvector<int64_t, BitWidth::W64>{ using type = int64x1_t; using tag_type = vector_64_tag; };
109template <> struct neon_bitvector<uint64_t, BitWidth::W128>{ using type = uint64x2_t; using tag_type = vector_128_tag; };
110template <> struct neon_bitvector<int64_t, BitWidth::W128>{ using type = int64x2_t; using tag_type = vector_128_tag; };
111template <> struct neon_bitvector<float_t, BitWidth::W64>{ using type = float32x2_t; using tag_type = vector_64_tag; };
112template <> struct neon_bitvector<float_t, BitWidth::W128>{ using type = float32x4_t; using tag_type = vector_128_tag; };
113#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
114template <> struct neon_bitvector<float16_t, BitWidth::W64>{ using type = float16x4_t; using tag_type = vector_64_tag; };
115template <> struct neon_bitvector<float16_t, BitWidth::W128>{ using type = float16x8_t; using tag_type = vector_128_tag; };
116#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Michalis Spyroub5a450a2021-01-06 17:40:30 +0000117
118
119#if defined(__ARM_FEATURE_SVE)
120/** Create the appropriate SVE vector given its type */
121template <typename T> struct sve_vector;
122
123template <> struct sve_vector<uint8_t>{ using scalar_type = uint8_t; using type = svuint8_t; };
124template <> struct sve_vector<int8_t>{ using scalar_type = int8_t; using type = svint8_t; };
125#endif /* defined(__ARM_FEATURE_SVE) */
126
Georgios Pinitas52ebf422018-12-17 18:21:02 +0000127#endif /* DOXYGEN_SKIP_THIS */
128
129/** Helper type template to get the type of a neon vector */
130template <typename T, BitWidth BW> using neon_bitvector_t = typename neon_bitvector<T, BW>::type;
131/** Helper type template to get the tag type of a neon vector */
132template <typename T, BitWidth BW> using neon_bitvector_tag_t = typename neon_bitvector<T, BW>::tag_type;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100133
134/** Promote a type */
135template <typename T> struct promote { };
136template <> struct promote<uint8_t> { using type = uint16_t; };
137template <> struct promote<int8_t> { using type = int16_t; };
138template <> struct promote<uint16_t> { using type = uint32_t; };
139template <> struct promote<int16_t> { using type = int32_t; };
140template <> struct promote<uint32_t> { using type = uint64_t; };
141template <> struct promote<int32_t> { using type = int64_t; };
142template <> struct promote<float> { using type = float; };
143template <> struct promote<half> { using type = half; };
144
145/** Get promoted type */
146template <typename T>
147using promote_t = typename promote<T>::type;
148
Georgios Pinitas82833b82018-01-30 12:14:24 +0000149// clang-format on
150// *INDENT-ON*
Georgios Pinitas57c033b2018-02-15 12:29:44 +0000151} // namespace traits
152} // namespace wrapper
153} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000154#endif /* ARM_COMPUTE_WRAPPER_TRAITS_H */