Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
41cee4e1
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
41cee4e1
编写于
10月 10, 2018
作者:
G
guosheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Reshape decoder output from 3D to 2D to use GEMM instead of BatchedGEMM
上级
1080d1b0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
25 addition
and
10 deletion
+25
-10
fluid/neural_machine_translation/transformer/model.py
fluid/neural_machine_translation/transformer/model.py
+3
-3
fluid/neural_machine_translation/transformer/profile.py
fluid/neural_machine_translation/transformer/profile.py
+22
-7
未找到文件。
fluid/neural_machine_translation/transformer/model.py
浏览文件 @
41cee4e1
...
...
@@ -523,8 +523,7 @@ def transformer(src_vocab_size,
epsilon
=
label_smooth_eps
)
cost
=
layers
.
softmax_with_cross_entropy
(
logits
=
layers
.
reshape
(
predict
,
shape
=
[
-
1
,
trg_vocab_size
]),
logits
=
predict
,
label
=
label
,
soft_label
=
True
if
label_smooth_eps
else
False
)
weighted_cost
=
cost
*
weights
...
...
@@ -637,6 +636,8 @@ def wrap_decoder(trg_vocab_size,
preprocess_cmd
,
postprocess_cmd
,
caches
=
caches
)
# Reshape to 2D tensor to use GEMM instead of BatchedGEMM
dec_output
=
layers
.
reshape
(
dec_output
,
shape
=
[
-
1
,
dec_output
.
shape
[
-
1
]])
if
weight_sharing
:
predict
=
layers
.
matmul
(
x
=
dec_output
,
...
...
@@ -751,7 +752,6 @@ def fast_decode(
dec_inputs
=
(
pre_ids
,
pre_pos
,
None
,
pre_src_attn_bias
),
enc_output
=
pre_enc_output
,
caches
=
pre_caches
)
logits
=
layers
.
reshape
(
logits
,
(
-
1
,
trg_vocab_size
))
topk_scores
,
topk_indices
=
layers
.
topk
(
input
=
layers
.
softmax
(
logits
),
k
=
beam_size
)
...
...
fluid/neural_machine_translation/transformer/profile.py
浏览文件 @
41cee4e1
import
argparse
import
ast
import
contextlib
import
multiprocessing
import
os
import
six
...
...
@@ -79,8 +80,7 @@ def parse_args():
type
=
lambda
x
:
str
(
x
.
encode
().
decode
(
"unicode-escape"
)),
default
=
" "
,
help
=
"The delimiter used to split tokens in source or target sentences. "
"For EN-DE BPE data we provided, use spaces as token delimiter. "
"For EN-FR wordpiece data we provided, use '
\x01
' as token delimiter."
)
"For EN-DE BPE data we provided, use spaces as token delimiter."
)
parser
.
add_argument
(
"--use_mem_opt"
,
type
=
ast
.
literal_eval
,
...
...
@@ -98,9 +98,14 @@ def parse_args():
help
=
"The iteration number to run in profiling."
)
parser
.
add_argument
(
"--use_parallel_exe"
,
type
=
boo
l
,
type
=
ast
.
literal_eva
l
,
default
=
False
,
help
=
"The flag indicating whether to use ParallelExecutor."
)
parser
.
add_argument
(
"--profile_ops"
,
type
=
ast
.
literal_eval
,
default
=
True
,
help
=
"The flag indicating whether to profile operators."
)
parser
.
add_argument
(
'opts'
,
help
=
'See config.py for all options'
,
...
...
@@ -247,20 +252,30 @@ def main(args):
return
reader_time
,
run_time
@
contextlib
.
contextmanager
def
profile_context
(
profile
=
True
):
if
profile
:
with
profiler
.
profiler
(
'All'
,
'total'
,
'/tmp/profile_file'
):
yield
else
:
yield
# start-up
init_flag
=
True
run
(
1
)
run
(
5
)
init_flag
=
False
# profiling
start
=
time
.
time
()
# currently only support profiling on one device
with
profile
r
.
profiler
(
'All'
,
'total'
,
'/tmp/profile_file'
):
with
profile
_context
(
args
.
profile_ops
):
reader_time
,
run_time
=
run
(
args
.
iter_num
)
end
=
time
.
time
()
total_time
=
end
-
start
print
(
"Total time: {0}, reader time: {1} s, run time: {2} s"
.
format
(
total_time
,
np
.
sum
(
reader_time
),
np
.
sum
(
run_time
)))
print
(
"Total time: {0}, reader time: {1} s, run time: {2} s, step number: {3}"
.
format
(
total_time
,
np
.
sum
(
reader_time
),
np
.
sum
(
run_time
),
args
.
iter_num
))
if
__name__
==
"__main__"
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录