Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
38d3e84e
B
book
项目概览
PaddlePaddle
/
book
通知
16
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
40
列表
看板
标记
里程碑
合并请求
37
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
B
book
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
40
Issue
40
列表
看板
标记
里程碑
合并请求
37
合并请求
37
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
38d3e84e
编写于
4月 17, 2017
作者:
Q
qijun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add profiling scripts
上级
15013709
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
36 addition
and
1 deletion
+36
-1
.tools/build_docker.sh
.tools/build_docker.sh
+2
-1
.tools/profile/get_stats.py
.tools/profile/get_stats.py
+12
-0
.tools/profile/profile.sh
.tools/profile/profile.sh
+22
-0
未找到文件。
.tools/build_docker.sh
浏览文件 @
38d3e84e
...
@@ -32,9 +32,10 @@ RUN ${update_mirror_cmd}
...
@@ -32,9 +32,10 @@ RUN ${update_mirror_cmd}
apt-get update &&
\
apt-get update &&
\
apt-get install -y locales &&
\
apt-get install -y locales &&
\
apt-get -y install gcc &&
\
apt-get -y install gcc &&
\
apt-get -y install graphviz &&
\
apt-get -y clean &&
\
apt-get -y clean &&
\
localedef -f UTF-8 -i en_US en_US.UTF-8 &&
\
localedef -f UTF-8 -i en_US en_US.UTF-8 &&
\
pip install -U matplotlib jupyter numpy requests scipy
pip install -U matplotlib jupyter numpy requests scipy
gprof2dot
EXPOSE 8888
EXPOSE 8888
CMD ["sh", "-c", "jupyter notebook --ip=0.0.0.0 --no-browser --allow-root --NotebookApp.token='' --NotebookApp.disable_check_xsrf=True /book/"]
CMD ["sh", "-c", "jupyter notebook --ip=0.0.0.0 --no-browser --allow-root --NotebookApp.token='' --NotebookApp.disable_check_xsrf=True /book/"]
...
...
.tools/profile/get_stats.py
0 → 100755
浏览文件 @
38d3e84e
#!/usr/local/bin/python
import
pstats
import
sys
file_readable
=
sys
.
argv
[
1
]
+
".readable"
stream
=
open
(
file_readable
,
"w"
)
p
=
pstats
.
Stats
(
sys
.
argv
[
1
],
stream
=
stream
)
p
.
strip_dirs
().
sort_stats
(
"time"
).
print_stats
(
20
)
p
.
strip_dirs
().
sort_stats
(
"cumtime"
).
print_stats
(
20
)
stream
.
close
()
.tools/profile/profile.sh
0 → 100755
浏览文件 @
38d3e84e
#!/bin/bash
book_dir
=
/book
work_dir
=
/book/.tools/profile
pushd
$book_dir
array
=()
while
IFS
=
read
-r
-d
$'
\0
'
;
do
array+
=(
"
$REPLY
"
)
done
< <
(
find
${
book_dir
}
-name
train.py
-print0
)
for
file
in
"
${
array
[@]
}
"
;
do
echo
$file
dir
=
$(
dirname
"
${
file
}
"
)
result
=
${
file
%.*
}
'.prof'
result_png
=
${
result
}
'.png'
pushd
$dir
python
-m
cProfile
-o
$result
$file
popd
${
work_dir
}
/get_stats.py
$result
gprof2dot
-f
pstats
$result
| dot
-Tpng
-o
$result_png
done
popd
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录