Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 9f90ae8

Browse files
committed
retrigger CI
1 parent a52e348 commit 9f90ae8

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

python/mxnet/ndarray/numpy/_op.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2369,6 +2369,7 @@ def var(a, axis=None, dtype=None, out=None, ddof=0, keepdims=False): # pylint:
23692369
def eye(N, M=None, k=0, dtype=_np.float32, **kwargs):
23702370
"""
23712371
Return a 2-D array with ones on the diagonal and zeros elsewhere.
2372+
23722373
Parameters
23732374
----------
23742375
N : int
@@ -2381,6 +2382,7 @@ def eye(N, M=None, k=0, dtype=_np.float32, **kwargs):
23812382
and a negative value to a lower diagonal.
23822383
dtype : data-type, optional
23832384
Data-type of the returned array.
2385+
23842386
Returns
23852387
-------
23862388
I : ndarray of shape (N,M)

python/mxnet/numpy/multiarray.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3814,6 +3814,7 @@ def var(a, axis=None, dtype=None, out=None, ddof=0, keepdims=None):
38143814
def eye(N, M=None, k=0, dtype=_np.float32, **kwargs):
38153815
"""
38163816
Return a 2-D array with ones on the diagonal and zeros elsewhere.
3817+
38173818
Parameters
38183819
----------
38193820
N : int
@@ -3826,6 +3827,7 @@ def eye(N, M=None, k=0, dtype=_np.float32, **kwargs):
38263827
and a negative value to a lower diagonal.
38273828
dtype : data-type, optional
38283829
Data-type of the returned array.
3830+
38293831
Returns
38303832
-------
38313833
I : ndarray of shape (N,M)

python/mxnet/symbol/numpy/_symbol.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2682,6 +2682,7 @@ def var(a, axis=None, dtype=None, out=None, ddof=0, keepdims=False): # pylint:
26822682
def eye(N, M=None, k=0, dtype=_np.float32, **kwargs):
26832683
"""
26842684
Return a 2-D array with ones on the diagonal and zeros elsewhere.
2685+
26852686
Parameters
26862687
----------
26872688
N : int
@@ -2694,6 +2695,7 @@ def eye(N, M=None, k=0, dtype=_np.float32, **kwargs):
26942695
and a negative value to a lower diagonal.
26952696
dtype : data-type, optional
26962697
Data-type of the returned array.
2698+
26972699
Returns
26982700
-------
26992701
I : ndarray of shape (N,M)

0 commit comments

Comments
 (0)