FastLED 3.9.15
Loading...
Searching...
No Matches

◆ test_load_store_u32_4_aligned()

bool autoresearch::simd_check::test_load_store_u32_4_aligned ( )
inline

Definition at line 94 of file AutoResearchSimd.h.

94 {
95 FL_ALIGNAS(16) uint32_t input[4] = {0xAAAAAAAA, 0xBBBBBBBB, 0xCCCCCCCC, 0xDDDDDDDD};
96 FL_ALIGNAS(16) uint32_t output[4] = {0};
97 simd_u32x4 v = load_u32_4_aligned(input);
98 store_u32_4_aligned(output, v);
99 return compare_u32(input, output, 4);
100}
bool compare_u32(const uint32_t *a, const uint32_t *b, size_t n)
platforms::simd_u32x4 simd_u32x4
Definition types.h:26
#define FL_ALIGNAS(N)

References compare_u32(), and FL_ALIGNAS.

Referenced by getTests().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: