Skip to content

Commit ada070e

Browse files
committed
Enable w/a also for float dtype
1 parent bcfc853 commit ada070e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

dpnp/dpnp_utils/dpnp_utils_linearalgebra.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -899,11 +899,7 @@ def dpnp_matmul(
899899
# workaround with extra copying of an input array in case when
900900
# it has a small size and non-zero offset
901901
# TODO: remove the workaround once OneMKL issue is resolved
902-
if (
903-
compute_dtype != dpnp.float32
904-
and bi._is_lnl_arl_architecture(exec_q.get_sycl_device())
905-
):
906-
902+
if bi._is_lnl_arl_architecture(exec_q.get_sycl_device()):
907903
def _need_to_copy(a):
908904
a_usm = dpnp.get_usm_ndarray(a)
909905
if a_usm._element_offset > 0 and a_usm.size < 16:

0 commit comments

Comments
 (0)