@@ -195,9 +195,9 @@ def allclose(a, b, rtol=1.0e-5, atol=1.0e-8, equal_nan=False):
195
195
Parameters
196
196
----------
197
197
a : {dpnp.ndarray, usm_ndarray, scalar}
198
- First input array, expected to have numeric data type.
198
+ First input array, expected to have a numeric data type.
199
199
b : {dpnp.ndarray, usm_ndarray, scalar}
200
- Second input array, also expected to have numeric data type.
200
+ Second input array, also expected to have a numeric data type.
201
201
rtol : {dpnp.ndarray, usm_ndarray, scalar}, optional
202
202
The relative tolerance parameter.
203
203
@@ -552,9 +552,9 @@ def array_equiv(a1, a2):
552
552
Parameters
553
553
----------
554
554
x1 : {dpnp.ndarray, usm_ndarray, scalar}
555
- First input array, expected to have a boolean or numeric data type.
555
+ First input array, may have any data type.
556
556
x2 : {dpnp.ndarray, usm_ndarray, scalar}
557
- Second input array, also expected to have a boolean or numeric data type.
557
+ Second input array, also may have any data type.
558
558
out : {None, dpnp.ndarray, usm_ndarray}, optional
559
559
Output array to populate.
560
560
Array have the correct shape and the expected data type.
@@ -632,9 +632,9 @@ def array_equiv(a1, a2):
632
632
Parameters
633
633
----------
634
634
x1 : {dpnp.ndarray, usm_ndarray, scalar}
635
- First input array, expected to have a boolean or numeric data type.
635
+ First input array, may have any data type.
636
636
x2 : {dpnp.ndarray, usm_ndarray, scalar}
637
- Second input array, also expected to have a boolean or numeric data type.
637
+ Second input array, also may have any data type.
638
638
out : {None, dpnp.ndarray, usm_ndarray}, optional
639
639
Output array to populate.
640
640
Array must have the correct shape and the expected data type.
@@ -706,9 +706,9 @@ def array_equiv(a1, a2):
706
706
Parameters
707
707
----------
708
708
x1 : {dpnp.ndarray, usm_ndarray, scalar}
709
- First input array, expected to have a boolean or numeric data type.
709
+ First input array, may have any data type.
710
710
x2 : {dpnp.ndarray, usm_ndarray, scalar}
711
- Second input array, also expected to have a boolean or numeric data type.
711
+ Second input array, also may have any data type.
712
712
out : {None, dpnp.ndarray, usm_ndarray}, optional
713
713
Output array to populate.
714
714
Array must have the correct shape and the expected data type.
@@ -790,9 +790,9 @@ def isclose(a, b, rtol=1e-05, atol=1e-08, equal_nan=False):
790
790
Parameters
791
791
----------
792
792
a : {dpnp.ndarray, usm_ndarray, scalar}
793
- First input array, expected to have numeric data type.
793
+ First input array, expected to have a numeric data type.
794
794
b : {dpnp.ndarray, usm_ndarray, scalar}
795
- Second input array, also expected to have numeric data type.
795
+ Second input array, also expected to have a numeric data type.
796
796
rtol : {dpnp.ndarray, usm_ndarray, scalar}, optional
797
797
The relative tolerance parameter.
798
798
@@ -992,7 +992,7 @@ def iscomplexobj(x):
992
992
Parameters
993
993
----------
994
994
x : {dpnp.ndarray, usm_ndarray}
995
- Input array, expected to have a boolean or numeric data type.
995
+ Input array, may have any data type.
996
996
out : {None, dpnp.ndarray, usm_ndarray}, optional
997
997
Output array to populate.
998
998
Array must have the correct shape and the expected data type.
@@ -1124,7 +1124,7 @@ def isfortran(a):
1124
1124
Parameters
1125
1125
----------
1126
1126
x : {dpnp.ndarray, usm_ndarray}
1127
- Input array, expected to have a boolean or numeric data type.
1127
+ Input array, may have any data type.
1128
1128
out : {None, dpnp.ndarray, usm_ndarray}, optional
1129
1129
Output array to populate.
1130
1130
Array must have the correct shape and the expected data type.
@@ -1182,7 +1182,7 @@ def isfortran(a):
1182
1182
Parameters
1183
1183
----------
1184
1184
x : {dpnp.ndarray, usm_ndarray}
1185
- Input array, expected to have a boolean or numeric data type.
1185
+ Input array, may have any data type.
1186
1186
out : {None, dpnp.ndarray, usm_ndarray}, optional
1187
1187
Output array to populate.
1188
1188
Array must have the correct shape and the expected data type.
@@ -1517,9 +1517,9 @@ def isscalar(element):
1517
1517
Parameters
1518
1518
----------
1519
1519
x1 : {dpnp.ndarray, usm_ndarray, scalar}
1520
- First input array, expected to have a boolean or numeric data type.
1520
+ First input array, may have any data type.
1521
1521
x2 : {dpnp.ndarray, usm_ndarray, scalar}
1522
- Second input array, also expected to have a boolean or numeric data type.
1522
+ Second input array, also may have any data type.
1523
1523
out : {None, dpnp.ndarray, usm_ndarray}, optional
1524
1524
Output array to populate.
1525
1525
Array must have the correct shape and the expected data type.
@@ -1591,9 +1591,9 @@ def isscalar(element):
1591
1591
Parameters
1592
1592
----------
1593
1593
x1 : {dpnp.ndarray, usm_ndarray, scalar}
1594
- First input array, expected to have a boolean or numeric data type.
1594
+ First input array, may have any data type.
1595
1595
x2 : {dpnp.ndarray, usm_ndarray, scalar}
1596
- Second input array, also expected to have a boolean or numeric data type.
1596
+ Second input array, also may have any data type.
1597
1597
out : {None, dpnp.ndarray, usm_ndarray}, optional
1598
1598
Output array to populate.
1599
1599
Array must have the correct shape and the expected data type.
@@ -1664,9 +1664,9 @@ def isscalar(element):
1664
1664
Parameters
1665
1665
----------
1666
1666
x1 : {dpnp.ndarray, usm_ndarray, scalar}
1667
- First input array, expected to have a boolean or numeric data type.
1667
+ First input array, may have any data type.
1668
1668
x2 : {dpnp.ndarray, usm_ndarray, scalar}
1669
- Second input array, also expected to have a boolean or numeric data type.
1669
+ Second input array, also may have any data type.
1670
1670
out : {None, dpnp.ndarray, usm_ndarray}, optional
1671
1671
Output array to populate.
1672
1672
Array must have the correct shape and the expected data type.
@@ -1739,7 +1739,7 @@ def isscalar(element):
1739
1739
Parameters
1740
1740
----------
1741
1741
x : {dpnp.ndarray, usm_ndarray}
1742
- Input array, expected to have a boolean or numeric data type.
1742
+ Input array, may have any data type.
1743
1743
out : {None, dpnp.ndarray, usm_ndarray}, optional
1744
1744
Output array to populate.
1745
1745
Array must have the correct shape and the expected data type.
@@ -1803,9 +1803,9 @@ def isscalar(element):
1803
1803
Parameters
1804
1804
----------
1805
1805
x1 : {dpnp.ndarray, usm_ndarray, scalar}
1806
- First input array, expected to have a boolean or numeric data type.
1806
+ First input array, may have any data type.
1807
1807
x2 : {dpnp.ndarray, usm_ndarray, scalar}
1808
- Second input array, also expected to have a boolean or numeric data type.
1808
+ Second input array, also may have any data type.
1809
1809
out : {None, dpnp.ndarray, usm_ndarray}, optional
1810
1810
Output array to populate.
1811
1811
Array must have the correct shape and the expected data type.
@@ -1879,9 +1879,9 @@ def isscalar(element):
1879
1879
Parameters
1880
1880
----------
1881
1881
x1 : {dpnp.ndarray, usm_ndarray, scalar}
1882
- First input array, expected to have a boolean or numeric data type.
1882
+ First input array, may have any data type.
1883
1883
x2 : {dpnp.ndarray, usm_ndarray, scalar}
1884
- Second input array, also expected to have a boolean or numeric data type.
1884
+ Second input array, also may have any data type.
1885
1885
out : {None, dpnp.ndarray, usm_ndarray}, optional
1886
1886
Output array to populate.
1887
1887
Array must have the correct shape and the expected data type.
@@ -1953,9 +1953,9 @@ def isscalar(element):
1953
1953
Parameters
1954
1954
----------
1955
1955
x1 : {dpnp.ndarray, usm_ndarray, scalar}
1956
- First input array, expected to have a boolean or numeric data type.
1956
+ First input array, may have any data type.
1957
1957
x2 : {dpnp.ndarray, usm_ndarray, scalar}
1958
- Second input array, also expected to have a boolean or numeric data type.
1958
+ Second input array, also may have any data type.
1959
1959
out : {None, dpnp.ndarray, usm_ndarray}, optional
1960
1960
Output array to populate.
1961
1961
Array must have the correct shape and the expected data type.
0 commit comments