Skip to content

Commit 32887ff

Browse files
Merge pull request #1836 from IntelPython/verify-fix-for-mkl-umath
Revert work-around for problem in MKL 2024.2.0, fixed in 2024.2.1
2 parents 5fc8c95 + 1532e65 commit 32887ff

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

dpctl/tests/test_sycl_kernel_submit.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"""
1919

2020
import ctypes
21-
import sys
2221

2322
import numpy as np
2423
import pytest
@@ -81,14 +80,6 @@ def test_create_program_from_source(ctype_str, dtype, ctypes_ctor):
8180
b_np = dpt.asnumpy(b)
8281
a_np = dpt.asnumpy(a)
8382

84-
if "mkl_umath" in sys.modules:
85-
mod = sys.modules["mkl_umath"]
86-
if hasattr(mod, "restore"):
87-
# undo numpy umath patching to work around
88-
# incorrect reference result on
89-
# AMD EPYC 7763 64-Core Processor as observed in GH CI
90-
mod.restore()
91-
9283
for r in (
9384
[
9485
n_elems,

0 commit comments

Comments
 (0)