@@ -72,7 +72,7 @@ class dpnp_array:
7272 An array object represents a multidimensional tensor of numeric elements
7373 stored in a USM allocation on a SYCL device.
7474
75- This is a wrapper around :class:`dpctl .tensor.usm_ndarray` that provides
75+ This is a wrapper around :class:`dpnp .tensor.usm_ndarray` that provides
7676 methods to be compliant with original NumPy.
7777
7878 """
@@ -609,12 +609,12 @@ def __usm_ndarray__(self):
609609 """
610610 Property to support ``__usm_ndarray__`` protocol.
611611
612- It assumes to return :class:`dpctl .tensor.usm_ndarray` instance
612+ It assumes to return :class:`dpnp .tensor.usm_ndarray` instance
613613 corresponding to the content of the object.
614614
615615 This property is intended to speed-up conversion from
616- :class:`dpnp.ndarray` to :class:`dpctl .tensor.usm_ndarray` passed into
617- :func:`dpctl .tensor.asarray` function. The input object that implements
616+ :class:`dpnp.ndarray` to :class:`dpnp .tensor.usm_ndarray` passed into
617+ :func:`dpnp .tensor.asarray` function. The input object that implements
618618 ``__usm_ndarray__`` protocol is recognized as owner of USM allocation
619619 that is managed by a smart pointer, and asynchronous deallocation
620620 will not involve GIL.
@@ -631,13 +631,13 @@ def __xor__(self, other, /):
631631 def _create_from_usm_ndarray (usm_ary : dpt .usm_ndarray ):
632632 """
633633 Return :class:`dpnp.ndarray` instance from USM allocation providing
634- by an instance of :class:`dpctl .tensor.usm_ndarray`.
634+ by an instance of :class:`dpnp .tensor.usm_ndarray`.
635635
636636 """
637637
638638 if not isinstance (usm_ary , dpt .usm_ndarray ):
639639 raise TypeError (
640- f"Expected dpctl .tensor.usm_ndarray, got { type (usm_ary )} "
640+ f"Expected dpnp .tensor.usm_ndarray, got { type (usm_ary )} "
641641 )
642642 res = dpnp_array .__new__ (dpnp_array )
643643 res ._array_obj = usm_ary
@@ -956,7 +956,7 @@ def astype(
956956 `device` can be ``None``, a oneAPI filter selector string,
957957 an instance of :class:`dpctl.SyclDevice` corresponding to
958958 a non-partitioned SYCL device, an instance of
959- :class:`dpctl.SyclQueue`, or a :class:`dpctl .tensor.Device` object
959+ :class:`dpctl.SyclQueue`, or a :class:`dpnp .tensor.Device` object
960960 returned by :attr:`dpnp.ndarray.device`.
961961 If the value is ``None``, returned array is created on the same
962962 device as that array.
@@ -1067,7 +1067,7 @@ def copy(
10671067 `device` can be ``None``, a oneAPI filter selector string,
10681068 an instance of :class:`dpctl.SyclDevice` corresponding to
10691069 a non-partitioned SYCL device, an instance of
1070- :class:`dpctl.SyclQueue`, or a :class:`dpctl .tensor.Device` object
1070+ :class:`dpctl.SyclQueue`, or a :class:`dpnp .tensor.Device` object
10711071 returned by :attr:`dpnp.ndarray.device`.
10721072
10731073 Default: ``None``.
@@ -1162,7 +1162,7 @@ def data(self):
11621162 @property
11631163 def device (self ):
11641164 """
1165- Return :class:`dpctl .tensor.Device` object representing residence of
1165+ Return :class:`dpnp .tensor.Device` object representing residence of
11661166 the array data.
11671167
11681168 The ``Device`` object represents Array API notion of the device, and
@@ -1329,7 +1329,7 @@ def flatten(self, /, order="C"):
13291329 return self .reshape (- 1 , order = order , copy = True )
13301330
13311331 def get_array (self ):
1332- """Get :class:`dpctl .tensor.usm_ndarray` object."""
1332+ """Get :class:`dpnp .tensor.usm_ndarray` object."""
13331333 return self ._array_obj
13341334
13351335 # 'getfield',
@@ -2182,7 +2182,7 @@ def to_device(self, device, /, *, stream=None):
21822182 `device` can be ``None``, a oneAPI filter selector string,
21832183 an instance of :class:`dpctl.SyclDevice` corresponding to
21842184 a non-partitioned SYCL device, an instance of
2185- :class:`dpctl.SyclQueue`, or a :class:`dpctl .tensor.Device` object
2185+ :class:`dpctl.SyclQueue`, or a :class:`dpnp .tensor.Device` object
21862186 returned by :attr:`dpnp.ndarray.device`.
21872187 stream : {SyclQueue, None}, optional
21882188 Execution queue to synchronize with. If ``None``, synchronization
0 commit comments