Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
9a23cd60
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看板
You need to sign in or sign up before continuing.
提交
9a23cd60
编写于
5月 25, 2017
作者:
Y
Yu Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Clean Unused functions
上级
273e3f44
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
3 addition
and
29 deletion
+3
-29
.gitignore
.gitignore
+3
-0
paddle/parameter/Parameter.h
paddle/parameter/Parameter.h
+0
-29
未找到文件。
.gitignore
浏览文件 @
9a23cd60
...
...
@@ -16,3 +16,6 @@ third_party/
*~
bazel-*
third_party/
# clion workspace.
cmake-build-*
paddle/parameter/Parameter.h
浏览文件 @
9a23cd60
...
...
@@ -40,17 +40,6 @@ class Parameter;
typedef
std
::
function
<
void
(
Parameter
*
param
)
>
UpdateCallback
;
typedef
std
::
function
<
void
(
int
paramId
,
Parameter
*
param
)
>
ParamInitCallback
;
struct
Segment
{
int64_t
beginDim
;
int64_t
endDim
;
// We allow the possibility that the parameters are not stored at contiguous
// memory locations for speed reason (i.e. data alignemnt)
// This means that the dimenstion is not same as the position in the memroy
// buffer.
int64_t
beginPos
;
// beginning position in the local value or grad buffer
};
class
Parameter
;
typedef
std
::
shared_ptr
<
Parameter
>
ParameterPtr
;
...
...
@@ -167,13 +156,6 @@ public:
}
}
void
enableSharedType
(
ParameterType
type
,
VectorPtr
vec
,
MatType
matType
)
{
if
(
!
bufs_
[
type
])
{
bufs_
[
type
]
=
vec
;
setMat
(
type
,
matType
);
}
}
/// for batchGradientMachine: blockNum is number of partitions of the matrix.
bool
isGradShared
(
size_t
*
blockNum
=
NULL
);
...
...
@@ -203,12 +185,6 @@ public:
const
MatrixPtr
&
getMat
(
ParameterType
pType
)
const
{
return
mats_
[
pType
];
}
const
IVectorPtr
&
getIntBuf
(
ParameterType
pType
)
{
return
intBufs_
[
pType
];
}
void
setIntBuf
(
ParameterType
pType
,
const
IVectorPtr
&
iVec
)
{
intBufs_
[
pType
]
=
iVec
;
}
void
setValueUpdated
()
{
updated_
=
true
;
}
void
clearValueUpdated
()
{
updated_
=
false
;
}
...
...
@@ -235,8 +211,6 @@ public:
*/
bool
load
(
std
::
istream
&
is
);
std
::
vector
<
Segment
>&
getGradientSegments
()
{
return
gradSegments_
;
}
void
incShared
()
{
sharedCount_
++
;
}
/**
...
...
@@ -343,7 +317,6 @@ protected:
int
sharedCount_
;
int
updateCounter_
;
std
::
vector
<
Segment
>
gradSegments_
;
// segments of non-zero gradient
bool
updated_
;
SparseFormat
format_
;
...
...
@@ -351,10 +324,8 @@ protected:
std
::
vector
<
std
::
shared_ptr
<
IParameterUpdaterHook
>>
updaterHooks_
;
public:
void
setSharedCount
(
int
cnt
)
{
sharedCount_
=
cnt
;
}
int
getSharedCount
()
{
return
sharedCount_
;
}
void
singleUpdate
(
void
*
data
);
bool
isSparse
()
{
return
config_
.
is_sparse
();
}
SparseFormat
getFormat
()
{
return
format_
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录