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

◆ test_crossval_sra_i32_4()

bool autoresearch::simd_check::test_crossval_sra_i32_4 ( )
inline

Definition at line 894 of file AutoResearchSimd.h.

894 {
895 uint32_t v[4] = {0x80000000, 0xFFFFFFFF, 0x7FFFFFFF, 0xDEADBEEF};
896 for (int shift = 0; shift <= 31; shift += 7) {
897 uint32_t expected[4], actual[4];
898 ref_sra_i32_4(v, shift, expected);
899 store_u32_4(actual, sra_i32_4(load_u32_4(v), shift));
900 if (!compare_u32(expected, actual, 4)) return false;
901 }
902 return true;
903}
bool compare_u32(const uint32_t *a, const uint32_t *b, size_t n)
void ref_sra_i32_4(const uint32_t *v, int shift, uint32_t *out)

References compare_u32(), and ref_sra_i32_4().

Referenced by getTests().

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