We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcfc853 commit ada070eCopy full SHA for ada070e
dpnp/dpnp_utils/dpnp_utils_linearalgebra.py
@@ -899,11 +899,7 @@ def dpnp_matmul(
899
# workaround with extra copying of an input array in case when
900
# it has a small size and non-zero offset
901
# 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
-
+ if bi._is_lnl_arl_architecture(exec_q.get_sycl_device()):
907
def _need_to_copy(a):
908
a_usm = dpnp.get_usm_ndarray(a)
909
if a_usm._element_offset > 0 and a_usm.size < 16:
0 commit comments