From 2fad05497d4ceb60ef00b9807794e24a42a63d41 Mon Sep 17 00:00:00 2001 From: sunsuodong Date: Fri, 23 Sep 2022 19:31:14 -0700 Subject: [PATCH] addcdiv addcmul docs --- mindspore/python/mindspore/common/tensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mindspore/python/mindspore/common/tensor.py b/mindspore/python/mindspore/common/tensor.py index 96cbe544bf4..7c58328c88c 100644 --- a/mindspore/python/mindspore/common/tensor.py +++ b/mindspore/python/mindspore/common/tensor.py @@ -651,7 +651,7 @@ class Tensor(Tensor_): Tensor, has the same shape and dtype as x1/x2. Supported Platforms: - ``Ascend`` ``CPU`` + ``Ascend`` ``GPU`` ``CPU`` Examples: >>> x = Tensor(np.array([1, 1, 1, 1]), mindspore.float32) @@ -683,7 +683,7 @@ class Tensor(Tensor_): Tensor, has the same shape and dtype as x1*x2. Supported Platforms: - ``Ascend`` ``CPU`` + ``Ascend`` ``GPU`` ``CPU`` Examples: >>> x = Tensor(np.array([1, 1, 1]), mindspore.float32)