We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f120e commit 2045895Copy full SHA for 2045895
sycl/test-e2e/DeviceLib/exp/exp-std-complex-edge-cases.hpp
@@ -333,13 +333,6 @@ template <typename T> bool test() {
333
} else if (std::isfinite(testcases[i].imag()) &&
334
std::abs(testcases[i].imag()) <= 1) {
335
CHECK(!std::signbit(r.real()), passed, i);
336
-#ifdef _WIN32
337
- // This check fails on win, temporary skipping:
338
- // CMPLRLLVM-64900
339
- // TODO: Delete this macro block when fixed
340
- if (std::is_same_v<typename decltype(r)::value_type, float>)
341
- continue;
342
-#endif
343
CHECK(std::signbit(r.imag()) == std::signbit(testcases[i].imag()),
344
passed, i);
345
// Those tests were taken from oneDPL, not sure what is the corner case
0 commit comments