Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
cc0ae1f1
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
cc0ae1f1
编写于
3月 18, 2019
作者:
L
luotao1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine with comments
test=develop
上级
a275fd6e
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
8 addition
and
8 deletion
+8
-8
paddle/fluid/framework/ir/runtime_context_cache_pass.cc
paddle/fluid/framework/ir/runtime_context_cache_pass.cc
+1
-1
paddle/fluid/framework/operator.cc
paddle/fluid/framework/operator.cc
+1
-1
paddle/fluid/framework/operator.h
paddle/fluid/framework/operator.h
+6
-6
未找到文件。
paddle/fluid/framework/ir/runtime_context_cache_pass.cc
浏览文件 @
cc0ae1f1
...
...
@@ -25,7 +25,7 @@ std::unique_ptr<ir::Graph> RuntimeContextCachePass::ApplyImpl(
VLOG
(
3
)
<<
"Applies Runtime Context Cache strategy."
;
for
(
const
Node
*
n
:
graph
->
Nodes
())
{
if
(
n
->
IsOp
())
{
n
->
Op
()
->
SetAttr
(
kEnableRuntimeContext
,
true
);
n
->
Op
()
->
SetAttr
(
kEnable
Cache
RuntimeContext
,
true
);
}
}
return
graph
;
...
...
paddle/fluid/framework/operator.cc
浏览文件 @
cc0ae1f1
...
...
@@ -876,7 +876,7 @@ std::vector<KernelConfig>* OperatorWithKernel::GetKernelConfig(
RuntimeContext
*
OperatorWithKernel
::
GetRuntimeContext
(
const
Scope
&
scope
)
const
{
if
(
!
HasAttr
(
kEnableRuntimeContext
))
{
if
(
!
HasAttr
(
kEnable
Cache
RuntimeContext
))
{
return
new
RuntimeContext
(
Inputs
(),
Outputs
(),
scope
);
}
else
{
const
Scope
*
cur_scope
=
&
scope
;
...
...
paddle/fluid/framework/operator.h
浏览文件 @
cc0ae1f1
...
...
@@ -63,12 +63,12 @@ constexpr char kZeroVarSuffix[] = "@ZERO";
constexpr
char
kNewGradSuffix
[]
=
"@NEWGRAD@"
;
/// RuntimeContext is used to relate input/output names of Operator with
/// the corresponding variables in
S
cope.
/// If an Op has attribute kEnable
RuntimeContext, it means that in a same Scope,
///
since the input/output names of this Op do not change in the execution,
///
RuntimeContext could be created only at the first iteration of this Op's
/// execution to save the elapsed time.
constexpr
char
kEnable
RuntimeContext
[]
=
"@ENABL
E_RUNTIME_CONTEXT@"
;
/// the corresponding variables in
name s
cope.
/// If an Op has attribute kEnable
CacheRuntimeContext, it means that in a same
///
name scope, since the input/output names of this Op do not change in the
///
execution, RuntimeContext could be created only at the first iteration of
///
this Op's
execution to save the elapsed time.
constexpr
char
kEnable
CacheRuntimeContext
[]
=
"@ENABLE_CACH
E_RUNTIME_CONTEXT@"
;
/// If an Op has this attribute, all its kernels should calculate output
/// variable's shape in the corresponding Compute() function. And
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录