Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
f3fdfd94
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
提交
f3fdfd94
编写于
1月 05, 2017
作者:
H
hedaoyuan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add some comments for Function.h
上级
41c52d3b
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
42 addition
and
26 deletion
+42
-26
paddle/function/BufferArg.h
paddle/function/BufferArg.h
+0
-26
paddle/function/Function.h
paddle/function/Function.h
+42
-0
未找到文件。
paddle/function/BufferArg.h
浏览文件 @
f3fdfd94
...
@@ -46,32 +46,6 @@ class SequenceArg;
...
@@ -46,32 +46,6 @@ class SequenceArg;
class
SparseMatrixArg
;
class
SparseMatrixArg
;
typedef
std
::
shared_ptr
<
BufferArg
>
BufferArgPtr
;
typedef
std
::
shared_ptr
<
BufferArg
>
BufferArgPtr
;
class
BufferArgs
{
public:
BufferArgs
()
{}
size_t
size
()
const
{
return
args_
.
size
();
}
// add argument into BufferArgss
template
<
typename
Tensor
>
void
addArg
(
const
Tensor
&
arg
)
{
args_
.
push_back
(
std
::
make_shared
<
BufferArg
>
(
arg
));
}
void
addArg
(
const
Matrix
&
arg
,
const
TensorShape
&
shape
);
void
addArg
(
const
CpuSparseMatrix
&
arg
);
void
addArg
(
const
GpuSparseMatrix
&
arg
);
// get argument
const
BufferArg
&
operator
[](
size_t
num
)
const
{
CHECK_LT
(
num
,
args_
.
size
());
return
*
args_
[
num
];
}
private:
std
::
vector
<
BufferArgPtr
>
args_
;
};
// an array of arbitrary dimensions
// an array of arbitrary dimensions
class
BufferArg
{
class
BufferArg
{
public:
public:
...
...
paddle/function/Function.h
浏览文件 @
f3fdfd94
...
@@ -22,6 +22,11 @@ limitations under the License. */
...
@@ -22,6 +22,11 @@ limitations under the License. */
namespace
paddle
{
namespace
paddle
{
/**
* Function Configuration.
* The argument type of Function::init.
* Follow-up will consider moving this data structure to Proto inside.
*/
class
FuncConfig
{
class
FuncConfig
{
public:
public:
union
value
{
union
value
{
...
@@ -41,6 +46,43 @@ protected:
...
@@ -41,6 +46,43 @@ protected:
std
::
map
<
std
::
string
,
value
>
valueMap_
;
std
::
map
<
std
::
string
,
value
>
valueMap_
;
};
};
/**
* Argument type for Function::calc().
* A BufferArgs contains a set of BufferArg,
* because Function can have multiple inputs, outputs and inouts.
*/
class
BufferArgs
{
public:
BufferArgs
()
{}
size_t
size
()
const
{
return
args_
.
size
();
}
// add argument into BufferArgss
template
<
typename
Tensor
>
void
addArg
(
const
Tensor
&
arg
)
{
args_
.
push_back
(
std
::
make_shared
<
BufferArg
>
(
arg
));
}
void
addArg
(
const
Matrix
&
arg
,
const
TensorShape
&
shape
);
void
addArg
(
const
CpuSparseMatrix
&
arg
);
void
addArg
(
const
GpuSparseMatrix
&
arg
);
// get argument
const
BufferArg
&
operator
[](
size_t
num
)
const
{
CHECK_LT
(
num
,
args_
.
size
());
return
*
args_
[
num
];
}
private:
std
::
vector
<
BufferArgPtr
>
args_
;
};
/**
* Base class for Function.
* The basic Function implementation requires override init and calc interfaces.
* Need to pay attention to the inouts argument. For the input argument
* that will be modified, it needs to be passed through inouts.
*/
class
FunctionBase
{
class
FunctionBase
{
public:
public:
virtual
~
FunctionBase
()
{}
virtual
~
FunctionBase
()
{}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录