aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/sse/ut/test.cpp
diff options
context:
space:
mode:
authortobo <tobo@yandex-team.ru>2022-02-10 16:47:27 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:27 +0300
commit7fe839092527589b38f014d854c51565b3c1adfa (patch)
tree309e97022d3530044b712b8f71318c78faf7856e /library/cpp/sse/ut/test.cpp
parentd0d68c395c10da4cb56a1c845504570a04d7893e (diff)
downloadydb-7fe839092527589b38f014d854c51565b3c1adfa.tar.gz
Restoring authorship annotation for <tobo@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/sse/ut/test.cpp')
-rw-r--r--library/cpp/sse/ut/test.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/sse/ut/test.cpp b/library/cpp/sse/ut/test.cpp
index 33c999d284..ad07abe063 100644
--- a/library/cpp/sse/ut/test.cpp
+++ b/library/cpp/sse/ut/test.cpp
@@ -60,15 +60,15 @@ struct T_mm_CallWrapper {
T_mm_CallWrapper<__m128, decltype(_mm_func), _mm_func>
#define WrapD(_mm_func) \
T_mm_CallWrapper<__m128d, decltype(_mm_func), _mm_func>
-using int8x16_t = std::array<i8, 16>;
-using int16x8_t = std::array<i16, 8>;
-using int32x4_t = std::array<i32, 4>;
-using int64x2_t = std::array<i64, 2>;
-using uint8x16_t = std::array<ui8, 16>;
-using uint16x8_t = std::array<ui16, 8>;
-using uint32x4_t = std::array<ui32, 4>;
-using uint64x2_t = std::array<ui64, 2>;
-using float32x4_t = std::array<float, 4>;
+using int8x16_t = std::array<i8, 16>;
+using int16x8_t = std::array<i16, 8>;
+using int32x4_t = std::array<i32, 4>;
+using int64x2_t = std::array<i64, 2>;
+using uint8x16_t = std::array<ui8, 16>;
+using uint16x8_t = std::array<ui16, 8>;
+using uint32x4_t = std::array<ui32, 4>;
+using uint64x2_t = std::array<ui64, 2>;
+using float32x4_t = std::array<float, 4>;
using float64x2_t = std::array<double, 2>;
template <typename TVectorType>