diff --git a/troubleshooter/RELEASE.md b/troubleshooter/RELEASE.md index f0a5365f79b283e29504fabe00de88a4911ba000..1757847d3d050baaac704801fcf37619707d46e6 100644 --- a/troubleshooter/RELEASE.md +++ b/troubleshooter/RELEASE.md @@ -1,5 +1,16 @@ # TroubleShooter Release Notes +## 1.0.17 Release Notes + +### 主要特性和增强 + +- `save/save_grad`支持bf16类型,数据保存为fp32; +- API级别数据dump与比对,适配mindtorch 0.3版本。 + +### 问题修复 + +- 修复若干bug + ## 1.0.16 Release Notes ### 主要特性和增强 diff --git a/troubleshooter/setup.py b/troubleshooter/setup.py index 52ff22252e1eb1dd19a3efd4a18c2631abd59362..83ee66f7a938b004e1d51c15f679eb14271ea329 100644 --- a/troubleshooter/setup.py +++ b/troubleshooter/setup.py @@ -24,7 +24,7 @@ from setuptools import find_packages, setup from setuptools.command.build_py import build_py from setuptools.command.egg_info import egg_info -version = '1.0.16' +version = '1.0.17' cur_dir = os.path.dirname(os.path.realpath(__file__)) pkg_dir = os.path.join(cur_dir, 'build')