From 6a8fdb30ab8ad52215dbce2e2f00131bf1f47459 Mon Sep 17 00:00:00 2001 From: ZhengQihao3f3f3f Date: Fri, 23 Apr 2021 14:26:56 +0800 Subject: [PATCH] mod ops 1 --- mindspore/ops/operations/sparse_ops.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mindspore/ops/operations/sparse_ops.py b/mindspore/ops/operations/sparse_ops.py index d3f187a30b..0f6ebca03b 100644 --- a/mindspore/ops/operations/sparse_ops.py +++ b/mindspore/ops/operations/sparse_ops.py @@ -34,6 +34,9 @@ class SparseToDense(PrimitiveWithInfer): Returns: Tensor, the shape of tensor is `dense_shape`. + Supported Platforms: + ``CPU`` + Examples: >>> indices = Tensor([[0, 1], [1, 2]]) >>> values = Tensor([1, 2], dtype=ms.float32)