Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Activate full tests of complex trigo / power on all archs #871

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions test/test_complex_power.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,7 @@ struct complex_power_test
template <class T, typename std::enable_if<std::is_same<T, float>::value, int>::type = 0>
void test_conditional_pow()
{

#if (XSIMD_X86_INSTR_SET >= XSIMD_X86_AVX512_VERSION) || (XSIMD_ARM_INSTR_SET >= XSIMD_ARM7_NEON_VERSION)
#if DEBUG_ACCURACY
test_pow_impl();
#endif
#else
test_pow_impl();
#endif
}
};

Expand Down
6 changes: 0 additions & 6 deletions test/test_complex_trigonometric.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,7 @@ struct complex_trigonometric_test
template <class T, typename std::enable_if<std::is_same<T, float>::value, int>::type = 0>
void test_conditional_tan()
{
#if (XSIMD_ARM_INSTR_SET >= XSIMD_ARM7_NEON_VERSION)
#if DEBUG_ACCURACY
test_tan_impl();
#endif
#else
test_tan_impl();
#endif
}
};

Expand Down