Skip to content

Commit 8e75f1f

Browse files
WIP
1 parent c584d3f commit 8e75f1f

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

test/test_conversion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "test_utils.hpp"
1616

17-
#if (!XSIMD_WITH_NEON && !XSIMD_WITH_ALTIVEC) || XSIMD_WITH_NEON64
17+
#if !XSIMD_WITH_NEON || XSIMD_WITH_NEON64
1818
template <class CP>
1919
struct conversion_test
2020
{

test/test_shuffle.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ struct zip_test : zip_base<typename B::value_type, B::size>
9494

9595
#if !XSIMD_WITH_AVX512F || XSIMD_WITH_AVX512BW
9696
#define ZIP_BATCH_TYPES BATCH_TYPES
97-
#elif XSIMD_WITH_ALTIVEC
98-
#define ZIP_BATCH_TYPES xsimd::batch<float>, xsimd::batch<int32_t>
9997
#else
10098
#define ZIP_BATCH_TYPES xsimd::batch<float>, xsimd::batch<double>, xsimd::batch<int32_t>, xsimd::batch<int64_t>
10199
#endif
@@ -349,11 +347,7 @@ struct compress_test
349347
}
350348
};
351349

352-
#if XSIMD_WITH_ALTIVEC
353-
#define XSIMD_COMPRESS_TYPES BATCH_FLOAT_TYPES, xsimd::batch<uint8_t>, xsimd::batch<int8_t>, xsimd::batch<uint16_t>, xsimd::batch<int16_t>, xsimd::batch<uint32_t>, xsimd::batch<int32_t>
354-
#else
355350
#define XSIMD_COMPRESS_TYPES BATCH_FLOAT_TYPES, xsimd::batch<uint8_t>, xsimd::batch<int8_t>, xsimd::batch<uint16_t>, xsimd::batch<int16_t>, xsimd::batch<uint32_t>, xsimd::batch<int32_t>, xsimd::batch<uint64_t>, xsimd::batch<int64_t>
356-
#endif
357351

358352
TEST_CASE_TEMPLATE("[compress]", B, XSIMD_COMPRESS_TYPES)
359353
{
@@ -700,11 +694,7 @@ struct shuffle_test
700694
}
701695
};
702696

703-
#if XSIMD_WITH_ALTIVEC
704-
#define XSIMD_SHUFFLE_TYPES BATCH_FLOAT_TYPES, xsimd::batch<uint32_t>, xsimd::batch<int32_t>
705-
#else
706697
#define XSIMD_SHUFFLE_TYPES BATCH_FLOAT_TYPES, xsimd::batch<uint32_t>, xsimd::batch<int32_t>, xsimd::batch<uint64_t>, xsimd::batch<int64_t>
707-
#endif
708698

709699
TEST_CASE_TEMPLATE("[shuffle]", B, XSIMD_SHUFFLE_TYPES)
710700
{

0 commit comments

Comments
 (0)