File: test-sse.h

package info (click to toggle)
simde 0.7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,284 kB
  • sloc: ansic: 410,189; sh: 174; makefile: 41; python: 26
file content (12 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#if !defined(SIMDE_TEST_X86_TEST_SSE_H)
#define SIMDE_TEST_X86_TEST_SSE_H

#include "test-x86.h"
#include "test-mmx.h"
#include "../../simde/x86/sse.h"

SIMDE_TEST_X86_GENERATE_FLOAT_TYPE_FUNCS_(__m128, 32, 4, simde_mm_storeu_ps)

#define simde_test_x86_assert_equal_f32x4(a, b, precision) do { if (simde_test_x86_assert_equal_f32x4_(a, b, 1e-##precision##f, __FILE__, __LINE__, #a, #b)) { return 1; } } while (0)

#endif /* !defined(SIMDE_TEST_X86_TEST_SSE_H) */