Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
5b1383e0
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
404
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看板
提交
5b1383e0
编写于
11月 22, 2021
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mgb/plugin): fix io dump for qint4, quint4 and bool type tensors
GitOrigin-RevId: bad1e8869069ae6cceb9d0ef2963e4815ec09018
上级
5e07e1e0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
19 addition
and
7 deletion
+19
-7
src/plugin/impl/opr_io_dump.cpp
src/plugin/impl/opr_io_dump.cpp
+19
-7
未找到文件。
src/plugin/impl/opr_io_dump.cpp
浏览文件 @
5b1383e0
...
...
@@ -34,6 +34,14 @@ double as_double(megdnn::dt_qint8& a) {
return
static_cast
<
double
>
(
a
.
as_int8
());
}
template
<
>
double
as_double
(
megdnn
::
dt_quint4
&
a
)
{
return
static_cast
<
double
>
(
a
.
as_uint8
());
}
template
<
>
double
as_double
(
megdnn
::
dt_qint4
&
a
)
{
return
static_cast
<
double
>
(
a
.
as_int8
());
}
template
<
>
double
as_double
(
megdnn
::
dt_qint32
&
a
)
{
return
static_cast
<
double
>
(
a
.
as_int32
());
}
...
...
@@ -69,7 +77,10 @@ void do_print_host_val(
sum2
+=
as_double
(
i
)
*
as_double
(
i
);
};
size_t
nr
=
val
.
layout
.
total_nr_elems
();
if
(
val
.
layout
.
is_contiguous
())
{
bool
normal_contig
=
!
val
.
layout
.
dtype
.
is_low_bit
()
&&
val
.
layout
.
is_contiguous
();
bool
lowbit_contig
=
val
.
layout
.
dtype
.
is_low_bit
()
&&
val
.
layout
.
is_physical_contiguous
();
if
(
normal_contig
||
lowbit_contig
)
{
ctype
*
ptr
=
val
.
ptr
<
ctype
>
();
for
(
size_t
i
=
0
;
i
<
nr
;
++
i
)
{
update
(
ptr
[
i
]);
...
...
@@ -99,13 +110,14 @@ void print_host_val(
fout, max_nr_print, val, print_stat);
MEGDNN_FOREACH_COMPUTING_DTYPE
(
cb
)
MEGDNN_FOREACH_QUANTIZED_DTYPE
(
cb
)
MEGDNN_FOREACH_QUANTIZED_LOWBIT_DTYPE
(
cb
)
cb
(
dtype
::
Bool
)
#undef cb
default:
mgb_throw
(
MegBrainError
,
"can not handle dtype %s in "
"print_host_val"
,
val
.
layout
.
dtype
.
name
());
default
:
mgb_throw
(
MegBrainError
,
"can not handle dtype %s in "
"print_host_val"
,
val
.
layout
.
dtype
.
name
());
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录