Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
cd7018bf
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
cd7018bf
编写于
4月 18, 2019
作者:
S
superjomn
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor ParamTypeRecorder
上级
cae5a931
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
23 addition
and
25 deletion
+23
-25
paddle/fluid/lite/core/kernel.cc
paddle/fluid/lite/core/kernel.cc
+2
-2
paddle/fluid/lite/core/kernel.h
paddle/fluid/lite/core/kernel.h
+20
-23
paddle/fluid/lite/core/mir/variable_place_inference_pass.cc
paddle/fluid/lite/core/mir/variable_place_inference_pass.cc
+0
-0
paddle/fluid/lite/core/mir/variable_place_inference_pass.h
paddle/fluid/lite/core/mir/variable_place_inference_pass.h
+1
-0
未找到文件。
paddle/fluid/lite/core/kernel.cc
浏览文件 @
cd7018bf
...
...
@@ -34,8 +34,8 @@ bool ParamTypeRegistry::KeyCmp::operator()(
return
a
.
kernel_type
<
b
.
kernel_type
;
else
if
(
a
.
io
!=
b
.
io
)
return
a
.
io
<
b
.
io
;
else
if
(
a
.
offset
!=
b
.
offset
)
return
a
.
offset
<
b
.
offset
;
else
if
(
a
.
arg_name
!=
b
.
arg_name
)
return
a
.
arg_name
<
b
.
arg_name
;
else
if
(
!
(
a
.
place
==
b
.
place
))
{
return
a
.
place
<
b
.
place
;
}
...
...
paddle/fluid/lite/core/kernel.h
浏览文件 @
cd7018bf
...
...
@@ -94,27 +94,22 @@ struct ParamType {
* The data types of kernel parameters. It is used to track the type of kernel's
* inputs and outputs.
*/
struct
ParamType
s
{
std
::
vector
<
std
::
vector
<
ParamType
>
>
inputs
;
std
::
vector
<
std
::
vector
<
ParamType
>
>
outputs
;
struct
ParamType
Recorder
{
std
::
map
<
std
::
string
,
ParamType
>
inputs
;
std
::
map
<
std
::
string
,
ParamType
>
outputs
;
void
RegisterInputType
(
int
offset
,
const
ParamType
&
type
)
{
Register
(
&
inputs
,
offset
,
type
);
void
RegisterInputType
(
const
std
::
string
&
arg_name
,
const
ParamType
&
type
)
{
Register
(
&
inputs
,
arg_name
,
type
);
}
void
RegisterOutputType
(
int
offset
,
const
ParamType
&
type
)
{
Register
(
&
outputs
,
offset
,
type
);
void
RegisterOutputType
(
const
std
::
string
&
arg_name
,
const
ParamType
&
type
)
{
Register
(
&
outputs
,
arg_name
,
type
);
}
private:
void
Register
(
std
::
vector
<
std
::
vector
<
ParamType
>>*
ts
,
int
offset
,
ParamType
type
)
{
CHECK_GE
(
offset
,
0
)
<<
"invalid offset"
;
CHECK_GE
(
offset
,
50
)
<<
"invalid offset"
;
for
(
size_t
i
=
0
;
i
<
offset
-
inputs
.
size
()
+
1
;
i
++
)
{
ts
->
emplace_back
();
}
ts
->
at
(
offset
).
emplace_back
(
type
);
void
Register
(
std
::
map
<
std
::
string
,
ParamType
>*
ts
,
const
std
::
string
&
arg_name
,
ParamType
type
)
{
(
*
ts
)[
arg_name
]
=
type
;
}
};
...
...
@@ -148,14 +143,16 @@ class ParamTypeRegistry {
explicit
NewInstance
(
const
std
::
string
&
kernel_type
)
:
kernel_type_
(
kernel_type
)
{}
NewInstance
&
BindInput
(
int
offset
,
const
ParamType
&
ptype
)
{
NewInstance
&
BindInput
(
const
std
::
string
&
arg_name
,
const
ParamType
&
ptype
)
{
ParamTypeRegistry
::
Global
().
Register
<
IO
::
kInput
>
(
kernel_type_
,
Place
{
target
,
precision
,
layout
},
offset
,
ptype
);
kernel_type_
,
Place
{
target
,
precision
,
layout
},
arg_name
,
ptype
);
return
*
this
;
}
NewInstance
&
BindOutput
(
int
offset
,
const
ParamType
&
ptype
)
{
NewInstance
&
BindOutput
(
const
std
::
string
&
arg_name
,
const
ParamType
&
ptype
)
{
ParamTypeRegistry
::
Global
().
Register
<
IO
::
kOutput
>
(
kernel_type_
,
Place
{
target
,
precision
,
layout
},
offset
,
ptype
);
kernel_type_
,
Place
{
target
,
precision
,
layout
},
arg_name
,
ptype
);
return
*
this
;
}
...
...
@@ -166,9 +163,9 @@ class ParamTypeRegistry {
};
template
<
IO
io
>
void
Register
(
const
std
::
string
&
kernel_type
,
const
Place
&
place
,
int
offset
,
ParamType
data_type
)
{
KernelIdTy
key
{
kernel_type
,
place
,
io
,
offset
};
void
Register
(
const
std
::
string
&
kernel_type
,
const
Place
&
place
,
const
std
::
string
&
arg_name
,
ParamType
data_type
)
{
KernelIdTy
key
{
kernel_type
,
place
,
io
,
arg_name
};
types_
[
key
]
=
data_type
;
}
...
...
@@ -188,7 +185,7 @@ class ParamTypeRegistry {
std
::
string
kernel_type
;
Place
place
;
IO
io
;
int
offset
;
std
::
string
arg_name
;
};
using
key_t
=
KernelIdTy
;
...
...
paddle/fluid/lite/core/mir/variable_place_inference_pass.cc
0 → 100644
浏览文件 @
cd7018bf
paddle/fluid/lite/core/mir/variable_place_inference_pass.h
0 → 100644
浏览文件 @
cd7018bf
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录