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
6 changes: 3 additions & 3 deletions dpnp/linalg/dpnp_utils_linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,12 @@ def _batched_eigh(a, UPLO, eigen_mode, w_type, v_type):
)

# TODO: Remove this w/a when MKLD-17201 is solved.
# Waiting for a host task executing an OneMKL LAPACK syevd call
# Waiting for a host task executing an OneMKL LAPACK syevd/heevd call
# on CPU causes deadlock due to serialization of all host tasks
# in the queue.
# We need to wait for each host tasks before calling _seyvd
# We need to wait for each host tasks before calling _seyvd and _heevd
# to avoid deadlock.
if lapack_func == "_syevd" and is_cpu_device:
if is_cpu_device:
ht_list_ev[2 * i].wait()

# call LAPACK extension function to get eigenvalues and
Expand Down