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 7783a11 commit e719d63
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 @@ -41,7 +41,7 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]"
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 @@ -89,9 +89,9 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]"
});
};
#endif
}
}*/

/*WHEN("Multiplied (without saturation)") {
WHEN("Multiplied (without saturation)") {
ControlMul<false>(x, y, rCheck);
SIMD::Multiply<false>(x, y, r);

Expand Down Expand Up @@ -141,7 +141,7 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]"
#endif
}

WHEN("Multiplied in reverse (with saturation)") {
/*WHEN("Multiplied in reverse (with saturation)") {
ControlMul<true>(y, x, rCheck);
SIMD::Multiply<true>(y, x, r);
Expand Down

0 comments on commit e719d63

Please sign in to comment.