Skip to content
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