diff --git a/RELEASE.md b/RELEASE.md index a984c27582e..6c3bc2edbd1 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -17,7 +17,6 @@ - [STABLE] Add CPU support for ops.ApplyGradientDescent. - [STABLE] Add CPU support for ops.ApplyPowerSign. - [STABLE] Add GPU and CPU support for ops.ApplyProximalAdagrad. -- [STABLE] Add CPU support for ops.ApplyProximalGradientDescent. - [STABLE] Add Ascend dynamic shape support for ops.ApplyRmsProp. - [STABLE] Add functional interface for ops.max. - [STABLE] Add functional interface for ops.atan2. @@ -42,7 +41,6 @@ - [STABLE] Add functional interface for ops.nll_loss. - [STABLE] Add functional interface for ops.one_hot. - [STABLE] Add functional interface for ops.pad. -- [STABLE] Add CPU support for ops.RandomCategorical. - [STABLE] Add CPU support for ops.random_gamma. - [STABLE] Add functional interface for ops.amax. - [STABLE] Add functional interface for ops.mean. @@ -62,8 +60,6 @@ - [STABLE] Add GPU and CPU support for ops.sparse_segment_mean. - [STABLE] Add functional interface for ops.squeeze. - [STABLE] Add CPU support for ops.standard_laplace. -- [BETA] Add GPU support for nn.InstanceNorm1d. -- [BETA] Add GPU support for nn.InstanceNorm3d. - [BETA] Add Ascend, GPU, and CPU support for nn.ReflectionPad1d. - [BETA] Add Ascend, GPU, and CPU support for nn.ReflectionPad2d. - [STABLE] Add Ascend, GPU, and CPU support for nn.SiLU. diff --git a/RELEASE_CN.md b/RELEASE_CN.md index 8272544782c..dc678a7a0b2 100644 --- a/RELEASE_CN.md +++ b/RELEASE_CN.md @@ -17,7 +17,6 @@ - [STABLE] ops.ApplyGradientDescent 新增CPU支持。 - [STABLE] ops.ApplyPowerSign 新增CPU支持。 - [STABLE] ops.ApplyProximalAdagrad 新增GPU、CPU支持。 -- [STABLE] ops.ApplyProximalGradientDescent 新增CPU支持。 - [STABLE] ops.ApplyRmsProp 新增Ascend动态shape支持。 - [STABLE] ops.max 新增functional接口。 - [STABLE] ops.atan2 新增functional接口。 @@ -42,7 +41,6 @@ - [STABLE] ops.nll_loss 新增functional接口。 - [STABLE] ops.one_hot 新增functional接口。 - [STABLE] ops.pad 新增functional接口。 -- [STABLE] ops.RandomCategorical 新增CPU支持。 - [STABLE] ops.random_gamma 新增CPU支持。 - [STABLE] ops.amax 新增functional接口。 - [STABLE] ops.mean 新增functional接口。 @@ -62,8 +60,6 @@ - [STABLE] ops.sparse_segment_mean 新增GPU、CPU支持。 - [STABLE] ops.squeeze 新增functional接口。 - [STABLE] ops.standard_laplace 新增CPU支持。 -- [BETA] nn.InstanceNorm1d 新增GPU支持。 -- [BETA] nn.InstanceNorm3d 新增GPU支持。 - [BETA] nn.ReflectionPad1d 新增Ascend、GPU、CPU支持。 - [BETA] nn.ReflectionPad2d 新增Ascend、GPU、CPU支持。 - [STABLE] nn.SiLU 新增Ascend、GPU、CPU支持。 diff --git a/mindspore/python/mindspore/ops/operations/nn_ops.py b/mindspore/python/mindspore/ops/operations/nn_ops.py index 6799d57afb5..97de1a615fc 100644 --- a/mindspore/python/mindspore/ops/operations/nn_ops.py +++ b/mindspore/python/mindspore/ops/operations/nn_ops.py @@ -5967,7 +5967,7 @@ class ApplyProximalAdagrad(Primitive): RuntimeError: If the data type of `var`, `accum` and `grad` conversion of Parameter is not supported. Supported Platforms: - ``Ascend`` + ``Ascend`` ``GPU`` ``CPU`` Examples: >>> class Net(nn.Cell): @@ -6349,7 +6349,7 @@ class ApplyGradientDescent(Primitive): RuntimeError: If the data type of `var` and `delta` conversion of Parameter is not supported. Supported Platforms: - ``Ascend`` ``GPU`` + ``Ascend`` ``GPU`` ``CPU`` Examples: >>> class Net(nn.Cell):