Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
6911b848
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6911b848
编写于
1月 27, 2017
作者:
H
Helin Wang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
remove `allow_inefficient_sparse_update` since it's only defined but never used.
上级
b1f09f27
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
4 addition
and
29 deletion
+4
-29
doc/howto/usage/cmd_parameter/arguments_cn.md
doc/howto/usage/cmd_parameter/arguments_cn.md
+0
-5
doc/howto/usage/cmd_parameter/arguments_en.md
doc/howto/usage/cmd_parameter/arguments_en.md
+0
-5
doc/howto/usage/cmd_parameter/detail_introduction_cn.md
doc/howto/usage/cmd_parameter/detail_introduction_cn.md
+0
-4
doc/howto/usage/cmd_parameter/detail_introduction_en.md
doc/howto/usage/cmd_parameter/detail_introduction_en.md
+0
-4
paddle/math/SparseRowMatrix.cpp
paddle/math/SparseRowMatrix.cpp
+0
-4
paddle/math/SparseRowMatrix.h
paddle/math/SparseRowMatrix.h
+4
-7
未找到文件。
doc/howto/usage/cmd_parameter/arguments_cn.md
浏览文件 @
6911b848
...
...
@@ -127,11 +127,6 @@
<td
class=
"left"
>
√
</td><td
class=
"left"
>
√
</td><td
class=
"left"
></td><td
class=
"left"
></td>
</tr>
<tr>
<td
class=
"left"
>
allow_inefficient_sparse_update
</td>
<td
class=
"left"
>
√
</td><td
class=
"left"
>
√
</td><td
class=
"left"
></td><td
class=
"left"
></td>
</tr>
<tr>
<td
class=
"left"
>
start_pass
</td>
<td
class=
"left"
>
√
</td><td
class=
"left"
>
√
</td><td
class=
"left"
></td><td
class=
"left"
></td>
...
...
doc/howto/usage/cmd_parameter/arguments_en.md
浏览文件 @
6911b848
...
...
@@ -127,11 +127,6 @@ It looks like there are a lot of arguments. However, most of them are for develo
<td
class=
"left"
>
√
</td><td
class=
"left"
>
√
</td><td
class=
"left"
></td><td
class=
"left"
></td>
</tr>
<tr>
<td
class=
"left"
>
allow_inefficient_sparse_update
</td>
<td
class=
"left"
>
√
</td><td
class=
"left"
>
√
</td><td
class=
"left"
></td><td
class=
"left"
></td>
</tr>
<tr>
<td
class=
"left"
>
start_pass
</td>
<td
class=
"left"
>
√
</td><td
class=
"left"
>
√
</td><td
class=
"left"
></td><td
class=
"left"
></td>
...
...
doc/howto/usage/cmd_parameter/detail_introduction_cn.md
浏览文件 @
6911b848
...
...
@@ -306,10 +306,6 @@
-
指示是否显示参数服务器上的稀疏参数分布的日志细节.
-
类型: bool (默认: 0).
*
`--allow_inefficient_sparse_update`
-
指示是否允许低效率的稀疏更新.
-
类型: bool (默认: 0).
*
`--check_sparse_distribution_batches`
-
每运行多少个批次执行一次稀疏参数分布的检查.
-
类型: int32 (默认: 100).
...
...
doc/howto/usage/cmd_parameter/detail_introduction_en.md
浏览文件 @
6911b848
...
...
@@ -310,10 +310,6 @@
-
show log details for sparse parameter distribution in pserver.
-
type: bool (default: 0).
*
`--allow_inefficient_sparse_update`
-
Whether to allow inefficient sparse update.
-
type: bool (default: 0).
*
`--check_sparse_distribution_batches`
-
Running sparse parameter distribution check every so many batches.
-
type: int32 (default: 100).
...
...
paddle/math/SparseRowMatrix.cpp
浏览文件 @
6911b848
...
...
@@ -24,10 +24,6 @@ limitations under the License. */
#include "paddle/utils/Thread.h"
#include "paddle/utils/Util.h"
DEFINE_bool
(
allow_inefficient_sparse_update
,
false
,
"Whether to allow inefficient sparse update"
);
namespace
paddle
{
const
unsigned
int
SparseRowCpuMatrix
::
kUnusedId_
=
-
1U
;
...
...
paddle/math/SparseRowMatrix.h
浏览文件 @
6911b848
...
...
@@ -21,8 +21,6 @@ limitations under the License. */
#include "RowBuffer.h"
#include "paddle/utils/Util.h"
DECLARE_bool
(
allow_inefficient_sparse_update
);
namespace
paddle
{
/**
...
...
@@ -183,11 +181,10 @@ protected:
inline
void
checkStoreSize
()
{
if
(
buf_
->
isAutoGrowth
())
{
if
(
buf_
->
getRowCount
()
>
0.5
*
height_
)
{
LOG
(
WARNING
)
<<
"There are more than 0.5*height ("
<<
localIndices_
->
size
()
<<
") rows are used for sparse "
<<
"update, which is not efficient. Considering not use "
<<
"sparse_update or set --allow_inefficient_sparse_update=true"
;
LOG
(
WARNING
)
<<
"There are more than 0.5*height ("
<<
localIndices_
->
size
()
<<
") rows are used for sparse "
<<
"update, which is not efficient. Considering not use "
<<
"sparse_update."
;
}
}
else
{
CHECK_LE
(
localIndices_
->
size
(),
buf_
->
getRowCount
());
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录