Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
3bc94738
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看板
提交
3bc94738
编写于
8月 16, 2021
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(profiler): do not assume clock duration and time_point type
GitOrigin-RevId: 2015bc30bdb54d2c3f0101d651dbe2b9ab72cc5d
上级
b7e6bd7b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
8 deletion
+9
-8
imperative/src/impl/profiler/memory_chunk.cpp
imperative/src/impl/profiler/memory_chunk.cpp
+6
-5
imperative/src/include/megbrain/imperative/profiler.h
imperative/src/include/megbrain/imperative/profiler.h
+3
-3
未找到文件。
imperative/src/impl/profiler/memory_chunk.cpp
浏览文件 @
3bc94738
...
...
@@ -125,6 +125,7 @@ struct MemoryFlow {
}
XMLWriter
to_svg
()
const
{
using
namespace
std
::
chrono_literals
;
XMLWriter
writer
;
auto
&&
[
addr_begin
,
addr_end
]
=
address_range
();
auto
&&
[
time_begin
,
time_end
]
=
time_range
();
...
...
@@ -135,15 +136,15 @@ struct MemoryFlow {
auto
svg
=
writer
.
element
(
"svg"
);
svg
.
attr
(
"xmlns"
,
std
::
string
{
"http://www.w3.org/2000/svg"
});
svg
.
attr
(
"xmlns:tag"
,
std
::
string
{
"https://megengine.org.cn"
});
double
time_scale
=
1e5
;
auto
time_scale
=
100us
;
double
addr_scale
=
1e6
;
svg
.
attr
(
"width"
,
(
time_end
-
time_begin
)
.
count
()
/
time_scale
);
svg
.
attr
(
"width"
,
(
time_end
-
time_begin
)
/
time_scale
);
svg
.
attr
(
"height"
,
(
addr_end
-
addr_begin
)
/
addr_scale
);
{
auto
rect
=
writer
.
element
(
"rect"
);
rect
.
attr
(
"x"
,
0
);
rect
.
attr
(
"y"
,
0
);
rect
.
attr
(
"width"
,
(
time_end
-
time_begin
)
.
count
()
/
time_scale
);
rect
.
attr
(
"width"
,
(
time_end
-
time_begin
)
/
time_scale
);
rect
.
attr
(
"height"
,
(
addr_end
-
addr_begin
)
/
addr_scale
);
rect
.
attr
(
"fill"
,
std
::
string
{
"blue"
});
}
...
...
@@ -198,8 +199,8 @@ struct MemoryFlow {
for
(
auto
&&
[
id
,
chunk
]
:
chunks
)
{
MGB_MARK_USED_VAR
(
id
);
if
(
chunk
.
empty
())
continue
;
double
left
=
(
chunk
.
time
[
0
]
-
time_begin
)
.
count
()
/
time_scale
;
double
right
=
(
chunk
.
time
[
1
]
-
time_begin
)
.
count
()
/
time_scale
;
double
left
=
(
chunk
.
time
[
0
]
-
time_begin
)
/
time_scale
;
double
right
=
(
chunk
.
time
[
1
]
-
time_begin
)
/
time_scale
;
double
top
=
(
chunk
.
address
[
0
]
-
addr_begin
)
/
addr_scale
;
double
bottom
=
(
chunk
.
address
[
1
]
-
addr_begin
)
/
addr_scale
;
double
duration
=
(
chunk
.
time
[
1
]
-
chunk
.
time
[
0
]).
count
();
...
...
imperative/src/include/megbrain/imperative/profiler.h
浏览文件 @
3bc94738
...
...
@@ -34,11 +34,11 @@ namespace imperative {
namespace
profiler
{
using
HostTime
=
std
::
chrono
::
time_point
<
std
::
chrono
::
system_clock
>
;
using
HostTime
=
std
::
chrono
::
system_clock
::
time_point
;
using
Duration
=
std
::
chrono
::
nanoseconds
;
using
Duration
=
std
::
chrono
::
system_clock
::
duration
;
using
RealDuration
=
std
::
chrono
::
duration
<
double
,
std
::
nano
>
;
using
RealDuration
=
std
::
chrono
::
duration
<
Duration
::
rep
,
Duration
::
period
>
;
using
Time
=
HostTime
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录