Skip to content

Commit

Permalink
Fix test_quad_precision_math_constants test
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Jun 9, 2023
1 parent a406372 commit bcd18c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/unit_test/TestQuadPrecisionMath.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ constexpr bool test_quad_precision_math_constants() {
static_assert(Kokkos::numbers::log10e_v<__float128> == M_LOG10Eq);
static_assert(Kokkos::numbers::pi_v <__float128> == M_PIq);
#if defined(KOKKOS_COMPILER_GNU) && (KOKKOS_COMPILER_GNU >= 930)
static_assert(Kokkos::::inv_pi_v<__float128> == M_1_PIq);
static_assert(Kokkos::numbers::inv_pi_v<__float128> == M_1_PIq);
#endif
// inv_sqrtpi_v
static_assert(Kokkos::numbers::ln2_v <__float128> == M_LN2q);
Expand Down

0 comments on commit bcd18c4

Please sign in to comment.