Skip to content

Commit aa571fd

Browse files
committed
Add more clarification to the comment
1 parent 073c9d6 commit aa571fd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dpnp/backend/extensions/blas/gemm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ std::tuple<sycl::event, sycl::event, bool>
323323
return std::make_tuple(args_ev, gemm_ev, is_row_major);
324324
}
325325

326-
bool _is_lnl_bm_architecture(sycl::device &dev)
326+
bool _is_lnl_bm_architecture(const sycl::device &dev);
327327
{
328328
#if !defined(USE_ONEMKL_CUBLAS)
329329
if (dev.ext_oneapi_architecture_is(

dpnp/dpnp_utils/dpnp_utils_linearalgebra.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,6 +899,7 @@ def dpnp_matmul(
899899
# to implement a temporary workaround with extra copying of
900900
# an input array in case when it has a small size and
901901
# non-zero offset
902+
# The issue was detected by failing tests for eig/eigh
902903
# TODO: remove the workaround once OneMKL issue is resolved
903904
if bi._is_lnl_bm_architecture(exec_q.get_sycl_device()):
904905

0 commit comments

Comments
 (0)