Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
9812bb8b
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9812bb8b
编写于
8月 02, 2018
作者:
M
minqiyang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix pserver can NOT start with DebugString problem
上级
3185d38a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
47 addition
and
15 deletion
+47
-15
cmake/cudnn.cmake
cmake/cudnn.cmake
+1
-0
paddle/fluid/framework/operator.cc
paddle/fluid/framework/operator.cc
+46
-15
未找到文件。
cmake/cudnn.cmake
浏览文件 @
9812bb8b
...
@@ -21,6 +21,7 @@ list(APPEND CUDNN_CHECK_LIBRARY_DIRS
...
@@ -21,6 +21,7 @@ list(APPEND CUDNN_CHECK_LIBRARY_DIRS
${
CUDNN_ROOT
}
/lib64
${
CUDNN_ROOT
}
/lib64
${
CUDNN_ROOT
}
/lib
${
CUDNN_ROOT
}
/lib
${
CUDNN_ROOT
}
/lib/
${
TARGET_ARCH
}
-linux-gnu
${
CUDNN_ROOT
}
/lib/
${
TARGET_ARCH
}
-linux-gnu
${
CUDNN_ROOT
}
/local/cuda-8.0/targets/
${
TARGET_ARCH
}
-linux/lib/
$ENV{CUDNN_ROOT}
$ENV{CUDNN_ROOT}
$ENV{CUDNN_ROOT}/lib64
$ENV{CUDNN_ROOT}/lib64
$ENV{CUDNN_ROOT}/lib
$ENV{CUDNN_ROOT}/lib
...
...
paddle/fluid/framework/operator.cc
浏览文件 @
9812bb8b
...
@@ -18,6 +18,7 @@ limitations under the License. */
...
@@ -18,6 +18,7 @@ limitations under the License. */
#include "paddle/fluid/framework/data_transform.h"
#include "paddle/fluid/framework/data_transform.h"
#include "paddle/fluid/framework/executor.h"
#include "paddle/fluid/framework/executor.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/shape_inference.h"
#include "paddle/fluid/framework/shape_inference.h"
#include "paddle/fluid/framework/var_type.h"
#include "paddle/fluid/framework/var_type.h"
...
@@ -56,13 +57,22 @@ static DDim GetDims(const Scope& scope, const std::string& name,
...
@@ -56,13 +57,22 @@ static DDim GetDims(const Scope& scope, const std::string& name,
return
DDim
({
-
1
});
return
DDim
({
-
1
});
}
}
if
(
var
->
IsType
<
LoDTensor
>
())
{
if
(
var
->
IsInitialized
())
{
return
var
->
Get
<
LoDTensor
>
().
dims
();
if
(
var
->
IsType
<
LoDTensor
>
())
{
}
else
if
(
var
->
IsType
<
SelectedRows
>
())
{
const
LoDTensor
&
tensor
=
var
->
Get
<
LoDTensor
>
();
if
(
get_actual_dim
)
{
if
(
tensor
.
IsInitialized
())
{
return
var
->
Get
<
SelectedRows
>
().
value
().
dims
();
return
tensor
.
dims
();
}
else
{
return
DDim
({
-
1
});
}
}
else
if
(
var
->
IsType
<
SelectedRows
>
())
{
if
(
get_actual_dim
)
{
return
var
->
Get
<
SelectedRows
>
().
value
().
dims
();
}
else
{
return
var
->
Get
<
SelectedRows
>
().
GetCompleteDims
();
}
}
else
{
}
else
{
return
var
->
Get
<
SelectedRows
>
().
GetCompleteDims
(
);
return
DDim
({
-
1
}
);
}
}
}
else
{
}
else
{
return
DDim
({
-
1
});
return
DDim
({
-
1
});
...
@@ -74,11 +84,21 @@ static std::string GetDtype(const Scope& scope, const std::string& name) {
...
@@ -74,11 +84,21 @@ static std::string GetDtype(const Scope& scope, const std::string& name) {
if
(
var
==
nullptr
)
{
if
(
var
==
nullptr
)
{
return
""
;
return
""
;
}
}
if
(
var
->
IsType
<
LoDTensor
>
())
{
return
DataTypeToString
(
ToDataType
(
var
->
Get
<
LoDTensor
>
().
type
()));
if
(
var
->
IsInitialized
())
{
}
else
if
(
var
->
IsType
<
SelectedRows
>
())
{
if
(
var
->
IsType
<
LoDTensor
>
())
{
return
DataTypeToString
(
const
LoDTensor
&
tensor
=
var
->
Get
<
LoDTensor
>
();
ToDataType
(
var
->
Get
<
SelectedRows
>
().
value
().
type
()));
if
(
tensor
.
IsInitialized
())
{
return
DataTypeToString
(
ToDataType
(
tensor
.
type
()));
}
else
{
return
""
;
}
}
else
if
(
var
->
IsType
<
SelectedRows
>
())
{
return
DataTypeToString
(
ToDataType
(
var
->
Get
<
SelectedRows
>
().
value
().
type
()));
}
else
{
return
""
;
}
}
else
{
}
else
{
return
""
;
return
""
;
}
}
...
@@ -90,8 +110,10 @@ static int GetRowSize(const Scope& scope, const std::string& name) {
...
@@ -90,8 +110,10 @@ static int GetRowSize(const Scope& scope, const std::string& name) {
return
-
1
;
return
-
1
;
}
}
if
(
var
->
IsType
<
SelectedRows
>
())
{
if
(
var
->
IsInitialized
())
{
return
var
->
Get
<
SelectedRows
>
().
rows
().
size
();
if
(
var
->
IsType
<
SelectedRows
>
())
{
return
var
->
Get
<
SelectedRows
>
().
rows
().
size
();
}
}
}
return
-
1
;
return
-
1
;
...
@@ -105,8 +127,17 @@ static LoD GetLoD(const Scope& scope, const std::string& name) {
...
@@ -105,8 +127,17 @@ static LoD GetLoD(const Scope& scope, const std::string& name) {
return
default_lod
;
return
default_lod
;
}
}
if
(
var
->
IsType
<
LoDTensor
>
())
{
if
(
var
->
IsInitialized
())
{
return
var
->
Get
<
LoDTensor
>
().
lod
();
if
(
var
->
IsType
<
LoDTensor
>
())
{
const
LoDTensor
&
tensor
=
var
->
Get
<
LoDTensor
>
();
if
(
tensor
.
IsInitialized
())
{
return
tensor
.
lod
();
}
else
{
return
default_lod
;
}
}
else
{
return
default_lod
;
}
}
else
{
}
else
{
return
default_lod
;
return
default_lod
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录