forked from mindspore-Ecosystem/mindspore
modify the format of files 1207
This commit is contained in:
parent
a59088f61a
commit
b77f2c41a9
|
@ -328,7 +328,7 @@ def hamming_window(window_length, periodic=True, alpha=0.54, beta=0.46, *, dtype
|
|||
|
||||
Args:
|
||||
window_length (int): The size of returned window. Must be a non negative integer.
|
||||
periodic (bool): If True, return a periodic window. If False, return a symmetric window.
|
||||
periodic (bool, optional): If True, return a periodic window. If False, return a symmetric window.
|
||||
alpha (float, optional): The coefficient α.
|
||||
beta (float, optional): The coefficient β.
|
||||
|
||||
|
|
|
@ -2389,8 +2389,8 @@ def bitwise_right_shift(x, other):
|
|||
\end{aligned}
|
||||
|
||||
Args:
|
||||
x (Tensor or Scalar): The input to be right shifted.
|
||||
other(Tensor or Scalar): The number of bit to be applied on right arithmetic shift.
|
||||
x (Union[Tensor, Scalar]): The input to be right shifted.
|
||||
other (Union[Tensor, Scalar]): The number of bit to be applied on right arithmetic shift.
|
||||
|
||||
Returns:
|
||||
Tensor, the result after bitwise right shift.
|
||||
|
|
Loading…
Reference in New Issue