forked from mindspore-Ecosystem/mindspore
!47716 [docs] True divide supported platforms
Merge pull request !47716 from shaojunsong/code_docs_true_divide
This commit is contained in:
commit
3089abbe74
|
@ -815,6 +815,9 @@ def subtract(x, other, *, alpha=1):
|
|||
def true_divide(dividend, divisor):
|
||||
r"""
|
||||
Alias for :func:`mindspore.ops.div` with :math:`rounding\_mode=None`.
|
||||
|
||||
Supported Platforms:
|
||||
``Ascend`` ``GPU`` ``CPU``
|
||||
"""
|
||||
return div(dividend, divisor, rounding_mode=None)
|
||||
|
||||
|
|
Loading…
Reference in New Issue