Skip to content

Commit

Permalink
Attempt to work around MSVC ICE
Browse files Browse the repository at this point in the history
  • Loading branch information
Epixu committed Feb 7, 2025
1 parent 57b3676 commit 874e29c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Multiply/TestMul-VV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]"
InitOne(y, -5);
}

/*WHEN("Multiplied as constexpr (with saturation)") {
WHEN("Multiplied as constexpr (with saturation)") {
static_assert(SIMD::Multiply<true>(T {0}, T {5}) == T {0});
}

WHEN("Multiplied as constexpr (without saturation)") {
static_assert(SIMD::Multiply<false>(T {0}, T {5}) == T {0});
}

WHEN("Multiplied (with saturation)") {
/*WHEN("Multiplied (with saturation)") {
ControlMul<true>(x, y, rCheck);
SIMD::Multiply<true>(x, y, r);
Expand Down Expand Up @@ -139,7 +139,7 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]"
});
};
#endif
}*/
}
WHEN("Multiplied in reverse (with saturation)") {
ControlMul<true>(y, x, rCheck);
Expand All @@ -153,6 +153,6 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]"
SIMD::Multiply<false>(y, x, r);
REQUIRE(r == rCheck);
}
}*/
}
}

0 comments on commit 874e29c

Please sign in to comment.