Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
e64536a3
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
403
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e64536a3
编写于
3月 11, 2022
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(imperative): fix the dtype promote problem when amp
GitOrigin-RevId: 43e1035fc86bc5d9212f5de00e4cce347940a7dd
上级
2b80806f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
9 deletion
+7
-9
imperative/python/src/transformation.h
imperative/python/src/transformation.h
+1
-1
imperative/src/impl/transformations/dtype_promote.cpp
imperative/src/impl/transformations/dtype_promote.cpp
+6
-8
未找到文件。
imperative/python/src/transformation.h
浏览文件 @
e64536a3
...
...
@@ -25,8 +25,8 @@ namespace mgb::imperative::python {
struct
TransformationManager
{
enum
Segment
{
ModuleTrace
,
Grad
,
DTypePromote
,
Grad
,
Scalar
,
Trace
,
Eval
,
...
...
imperative/src/impl/transformations/dtype_promote.cpp
浏览文件 @
e64536a3
...
...
@@ -218,17 +218,15 @@ ValueRefList convolution_backward_rule(const OpDef& op, Span<ValueRef> inputs) {
ValueRefList
batch_norm_rule
(
const
OpDef
&
op
,
Span
<
ValueRef
>
inputs
)
{
if
(
DTypePromoteCfg
::
amp_dtype_autocast_enabled
)
{
mgb_assert
(
inputs
.
size
()
>
0
);
SmallVector
<
DType
>
dtypes
=
get_value_dtypes
(
inputs
);
ValueRefList
converted
(
inputs
.
size
());
converted
[
0
]
=
imperative
::
apply
(
ApplyOp
(
*
TypeCvt
::
make
(
dtype
::
Float16
())),
inputs
[
0
])[
0
];
for
(
size_t
i
=
1
;
i
<
inputs
.
size
();
++
i
)
{
DType
idtype
=
*
(
inputs
[
i
].
dtype
());
if
(
idtype
!=
DTypePromoteCfg
::
amp_high_prec_dtype
)
{
for
(
size_t
i
=
0
;
i
<
inputs
.
size
();
++
i
)
{
mgb
::
DType
target_dtype
=
i
==
0
?
DTypePromoteCfg
::
amp_low_prec_dtype
:
DTypePromoteCfg
::
amp_high_prec_dtype
;
if
(
dtypes
[
i
]
!=
target_dtype
)
{
converted
[
i
]
=
imperative
::
apply
(
ApplyOp
(
*
TypeCvt
::
make
(
DTypePromoteCfg
::
amp_high_prec_dtype
)),
inputs
[
i
])[
0
];
ApplyOp
(
*
TypeCvt
::
make
(
target_dtype
)),
inputs
[
i
])[
0
];
}
else
{
converted
[
i
]
=
inputs
[
i
];
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录