Skip to content

Commit a56f007

Browse files
committed
address comment
1 parent 5aa4b4d commit a56f007

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

dpnp/dpnp_utils/dpnp_utils_linearalgebra.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,6 @@ def _get_result_shape_vecdot(x1, x2, x1_ndim, x2_ndim):
327327
if x1_shape[-1] != x2_shape[-1]:
328328
_shape_error(x1_shape[-1], x2_shape[-1], "vecdot", err_msg=0)
329329

330-
_, x1_is_1D, _ = _define_dim_flags(x1, axis=-1)
331-
_, x2_is_1D, _ = _define_dim_flags(x2, axis=-1)
332-
333330
if x1_ndim == 1 and x2_ndim == 1:
334331
result_shape = ()
335332
elif x1_ndim == 1:

0 commit comments

Comments
 (0)