add dump change in release.md

This commit is contained in:
yelihua 2021-07-15 17:42:36 +08:00
parent 7352110561
commit c3300c9296
1 changed files with 13 additions and 0 deletions

View File

@ -68,6 +68,10 @@
- [STABLE] Add options to control the optimization level.
- [STABLE] Enhance the generalization ability on GPU. GraphKernel is enabled by default in 40+ networks which cover the field of NLP, CV, Recommender, NAS and Audio. The result shows their throughput is significantly improved, and you are Recommended enabling GraphKernel in your network.
#### Debug
- [STABLE] Unified dump function.
### API Change
#### Backwards Incompatible Change
@ -100,6 +104,15 @@ device_que(send_epoch_end=True, create_data_info_queue=False)
</tr>
</table>
##### Dump Config
Previously, we could only dump tensor data for one or all steps. To make the dump feature easier to use, we changed the dump configuration format and dump structure. View the [New Dump Tutorial](https://www.mindspore.cn/tutorial/training/zh-CN/r1.3/advanced_use/dump_in_graph_mode.html#dump)
| 1.2.1 | 1.3.0 |
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------- |
| `iteration` is an int. | `iteration` is a string. |
| `op_debug_mode` is in `async_dump_settings` field. | `op_debug_mode` is in `common_dump_settings` field. `async_dump_settings` is removed. |
### Bug fixes
#### FrontEnd