diff --git a/RELEASE.md b/RELEASE.md index 2a0a5ba1eb7..bb767fafe6a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,619 +1,776 @@ -# Release 1.0.0 +# MindSpore x.x.x Release Notes + +## MindSpore + +### Major Features and Improvements + +### Backwards Incompatible Change + +#### Python API + +##### `API name` xxx ([!id](PR_link)) + +Description. + +> - This section is an example. +> - The interface name should be enclosed by grave accent characters, such as `API name`. +> - Fenced code blocks should be surrounded by blank lines. +> - The Examples must be provided for the backwards incompatible change. + +
1.0.1 | 1.1.0 | +
+ +```python +>>> from mindspore.ops import operations as P +>>> +>>> input = Tensor(np.ones([10, 32, 32, 32]), mindspore.float32) +>>> weight = Tensor(np.ones([32, 32, 3, 3]), mindspore.float32) +>>> conv2d = P.Conv2D(out_channel=32, kernel_size=3) +>>> output = conv2d(input, weight) +>>> print(output.shape) +(10, 32, 30, 30) +``` + + | ++ +```python +>>> import mindspore.ops as ops +>>> +>>> input = Tensor(np.ones([10, 32, 32, 32]), mindspore.float32) +>>> weight = Tensor(np.ones([32, 32, 3, 3]), mindspore.float32) +>>> conv2d = ops.Conv2D(out_channel=32, kernel_size=3) +>>> output = conv2d(input, weight) +>>> print(output.shape) +(10, 32, 30, 30) +``` + + | +