Skip to content

Commit fd13907

Browse files
committed
Fix import
1 parent 48e47e7 commit fd13907

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dpnp/dpnp_iface_manipulation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444

4545
import dpctl.tensor as dpt
4646
import numpy
47+
from dpctl.tensor._manipulation_functions import _broadcast_shapes
4748
from dpctl.tensor._numpy_helper import AxisError, normalize_axis_index
4849

4950
import dpnp
@@ -1003,7 +1004,7 @@ def broadcast_shapes(*args):
10031004
if hasattr(numpy, "broadcast_shapes"):
10041005
return numpy.broadcast_shapes(*args)
10051006

1006-
return dpt._broadcast_shapes(*args)
1007+
return _broadcast_shapes(*args)
10071008

10081009

10091010
# pylint: disable=redefined-outer-name

0 commit comments

Comments
 (0)