Skip to content

Revert work-around for problem in MKL 2024.2.0, fixed in 2024.2.1 #1836

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions dpctl/tests/test_sycl_kernel_submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"""

import ctypes
import sys

import numpy as np
import pytest
Expand Down Expand Up @@ -81,14 +80,6 @@ def test_create_program_from_source(ctype_str, dtype, ctypes_ctor):
b_np = dpt.asnumpy(b)
a_np = dpt.asnumpy(a)

if "mkl_umath" in sys.modules:
mod = sys.modules["mkl_umath"]
if hasattr(mod, "restore"):
# undo numpy umath patching to work around
# incorrect reference result on
# AMD EPYC 7763 64-Core Processor as observed in GH CI
mod.restore()

for r in (
[
n_elems,
Expand Down
Loading