Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
742a6153
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
337
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
742a6153
编写于
5月 17, 2018
作者:
W
wangliu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
simplify the interfaces in operatorBase & dynamic release variable menmory
上级
333ff13f
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
12 addition
and
14 deletion
+12
-14
src/framework/operator.cpp
src/framework/operator.cpp
+0
-3
src/framework/operator.h
src/framework/operator.h
+9
-6
src/framework/variable.h
src/framework/variable.h
+0
-3
src/operators/conv_op.h
src/operators/conv_op.h
+3
-2
未找到文件。
src/framework/operator.cpp
浏览文件 @
742a6153
...
...
@@ -32,9 +32,6 @@ OperatorBase<Dtype>::OperatorBase(const std::string &type,
scope_
(
scope
)
{
CheckAllInputOutputSet
();
}
template
<
typename
Dtype
>
void
OperatorBase
<
Dtype
>::
Run
()
{
RunImpl
();
}
template
<
typename
Dtype
>
void
OperatorBase
<
Dtype
>::
CheckAllInputOutputSet
()
const
{}
...
...
src/framework/operator.h
浏览文件 @
742a6153
...
...
@@ -41,11 +41,18 @@ public:
const
VariableNameMap
&
outputs
,
const
AttributeMap
&
attrs
,
std
::
shared_ptr
<
Scope
>
scope
);
virtual
~
OperatorBase
()
{}
virtual
void
Run
();
virtual
void
Run
()
const
=
0
;
const
VariableNameMap
&
Inputs
()
const
{
return
inputs_
;
}
const
VariableNameMap
&
Outputs
()
const
{
return
outputs_
;
}
const
std
::
string
&
Type
()
const
{
return
type_
;
}
const
AttributeMap
&
Attrs
()
const
{
return
attrs_
;
}
void
ClearVariables
()
const
{
if
(
this
->
scope_
)
{
this
->
scope_
->
EraseVars
(
this
->
inputs_
.
at
(
"Filter"
));
this
->
scope_
->
EraseVars
(
this
->
inputs_
.
at
(
"Input"
));
}
}
protected:
std
::
shared_ptr
<
Scope
>
scope_
;
...
...
@@ -56,7 +63,6 @@ protected:
private:
void
CheckAllInputOutputSet
()
const
;
virtual
void
RunImpl
()
const
=
0
;
};
template
<
typename
Dtype
>
...
...
@@ -68,10 +74,7 @@ public:
:
OperatorBase
<
Dtype
>
(
type
,
inputs
,
outputs
,
attrs
,
scope
)
{}
virtual
void
InferShape
()
const
=
0
;
protected:
virtual
void
RunImpl
()
const
=
0
;
private:
virtual
void
Run
()
const
=
0
;
};
template
<
typename
Dtype
,
typename
P
>
class
OpKernelBase
:
PaddleMobileObject
{
...
...
src/framework/variable.h
浏览文件 @
742a6153
...
...
@@ -29,9 +29,6 @@ namespace paddle_mobile {
namespace
framework
{
class
Variable
:
public
PaddleMobileObject
{
public:
Variable
()
{}
~
Variable
()
{}
template
<
typename
T
>
const
T
*
Get
()
const
{
return
static_cast
<
const
T
*>
(
holder_
->
Ptr
());
}
...
...
src/operators/conv_op.h
浏览文件 @
742a6153
...
...
@@ -39,12 +39,13 @@ public:
using
framework
::
OperatorWithKernel
<
DeviceType
>::
OperatorWithKernel
;
void
InferShape
()
const
override
;
protected:
void
RunImpl
()
const
{
void
Run
()
const
{
operators
::
ConvKernel
<
DeviceType
,
T
,
ConvParam
>
kernel
;
kernel
.
Compute
(
param_
);
this
->
ClearVariables
();
}
private:
ConvParam
param_
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录