Skip to content

Commit 2045895

Browse files
[SYCL][E2E] Re-enable test case for exp(float) on win (#16639)
The issue was fixed by #17440 --------- Co-authored-by: jinge90 <[email protected]>
1 parent 44f120e commit 2045895

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

sycl/test-e2e/DeviceLib/exp/exp-std-complex-edge-cases.hpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -333,13 +333,6 @@ template <typename T> bool test() {
333333
} else if (std::isfinite(testcases[i].imag()) &&
334334
std::abs(testcases[i].imag()) <= 1) {
335335
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
343336
CHECK(std::signbit(r.imag()) == std::signbit(testcases[i].imag()),
344337
passed, i);
345338
// Those tests were taken from oneDPL, not sure what is the corner case

0 commit comments

Comments
 (0)