Skip to content

Commit

Permalink
Fix boolean logic (#92)
Browse files Browse the repository at this point in the history
The tester wasn't running vector tests
  • Loading branch information
adbancroft authored Feb 8, 2022
1 parent b785c76 commit 93bc078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/DivideTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ using namespace libdivide;

#define UNUSED(x) (void)(x)

#if defined(LIBDIVIDE_SSE2) && defined(LIBDIVIDE_AVX2) && defined(LIBDIVIDE_AVX512) && defined(LIBDIVIDE_NEON)
#if defined(LIBDIVIDE_SSE2) || defined(LIBDIVIDE_AVX2) || defined(LIBDIVIDE_AVX512) || defined(LIBDIVIDE_NEON)
#define VECTOR_TESTS
#endif

Expand Down

0 comments on commit 93bc078

Please sign in to comment.