Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
79aa5122
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看板
提交
79aa5122
编写于
1月 15, 2018
作者:
C
chengduoZH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix conv, pool, conv_trans to decide use cudnn or not
上级
78dc9343
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
13 addition
and
0 deletion
+13
-0
paddle/operators/conv_op.cc
paddle/operators/conv_op.cc
+2
-0
paddle/operators/conv_op.h
paddle/operators/conv_op.h
+1
-0
paddle/operators/conv_transpose_op.cc
paddle/operators/conv_transpose_op.cc
+2
-0
paddle/operators/conv_transpose_op.h
paddle/operators/conv_transpose_op.h
+1
-0
paddle/operators/pool_op.cc
paddle/operators/pool_op.cc
+2
-0
paddle/operators/pool_op.h
paddle/operators/pool_op.h
+1
-0
paddle/platform/dynload/cudnn.cc
paddle/platform/dynload/cudnn.cc
+4
-0
未找到文件。
paddle/operators/conv_op.cc
浏览文件 @
79aa5122
...
...
@@ -70,6 +70,7 @@ void ConvOp::InferShape(framework::InferShapeContext* ctx) const {
framework
::
OpKernelType
ConvOp
::
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
bool
use_cudnn
=
ctx
.
Attr
<
bool
>
(
"use_cudnn"
);
use_cudnn
&=
platform
::
dynload
::
HasCUDNN
();
framework
::
LibraryType
library_
;
if
(
use_cudnn
)
{
library_
=
framework
::
LibraryType
::
kCUDNN
;
...
...
@@ -283,6 +284,7 @@ void ConvOpGrad::InferShape(framework::InferShapeContext* ctx) const {
framework
::
OpKernelType
ConvOpGrad
::
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
bool
use_cudnn
=
ctx
.
Attr
<
bool
>
(
"use_cudnn"
);
use_cudnn
&=
platform
::
dynload
::
HasCUDNN
();
framework
::
LibraryType
library_
;
if
(
use_cudnn
)
{
library_
=
framework
::
LibraryType
::
kCUDNN
;
...
...
paddle/operators/conv_op.h
浏览文件 @
79aa5122
...
...
@@ -19,6 +19,7 @@ limitations under the License. */
#include "paddle/operators/math/im2col.h"
#include "paddle/operators/math/math_function.h"
#include "paddle/operators/math/vol2col.h"
#include "paddle/platform/dynload/cudnn.h"
namespace
paddle
{
namespace
operators
{
...
...
paddle/operators/conv_transpose_op.cc
浏览文件 @
79aa5122
...
...
@@ -61,6 +61,7 @@ void ConvTransposeOp::InferShape(framework::InferShapeContext* ctx) const {
framework
::
OpKernelType
ConvTransposeOp
::
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
bool
use_cudnn
=
ctx
.
Attr
<
bool
>
(
"use_cudnn"
);
use_cudnn
&=
platform
::
dynload
::
HasCUDNN
();
framework
::
LibraryType
library_
;
if
(
use_cudnn
)
{
library_
=
framework
::
LibraryType
::
kCUDNN
;
...
...
@@ -263,6 +264,7 @@ void ConvTransposeOpGrad::InferShape(framework::InferShapeContext* ctx) const {
framework
::
OpKernelType
ConvTransposeOpGrad
::
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
bool
use_cudnn
=
ctx
.
Attr
<
bool
>
(
"use_cudnn"
);
use_cudnn
&=
platform
::
dynload
::
HasCUDNN
();
framework
::
LibraryType
library_
;
if
(
use_cudnn
)
{
library_
=
framework
::
LibraryType
::
kCUDNN
;
...
...
paddle/operators/conv_transpose_op.h
浏览文件 @
79aa5122
...
...
@@ -19,6 +19,7 @@ limitations under the License. */
#include "paddle/operators/math/im2col.h"
#include "paddle/operators/math/math_function.h"
#include "paddle/operators/math/vol2col.h"
#include "paddle/platform/dynload/cudnn.h"
namespace
paddle
{
namespace
operators
{
...
...
paddle/operators/pool_op.cc
浏览文件 @
79aa5122
...
...
@@ -64,6 +64,7 @@ void PoolOp::InferShape(framework::InferShapeContext *ctx) const {
framework
::
OpKernelType
PoolOp
::
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
bool
use_cudnn
=
ctx
.
Attr
<
bool
>
(
"use_cudnn"
);
use_cudnn
&=
platform
::
dynload
::
HasCUDNN
();
framework
::
LibraryType
library_
;
if
(
use_cudnn
)
{
library_
=
framework
::
LibraryType
::
kCUDNN
;
...
...
@@ -88,6 +89,7 @@ void PoolOpGrad::InferShape(framework::InferShapeContext *ctx) const {
framework
::
OpKernelType
PoolOpGrad
::
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
bool
use_cudnn
=
ctx
.
Attr
<
bool
>
(
"use_cudnn"
);
use_cudnn
&=
platform
::
dynload
::
HasCUDNN
();
framework
::
LibraryType
library_
;
if
(
use_cudnn
)
{
library_
=
framework
::
LibraryType
::
kCUDNN
;
...
...
paddle/operators/pool_op.h
浏览文件 @
79aa5122
...
...
@@ -18,6 +18,7 @@ limitations under the License. */
#include "paddle/framework/op_registry.h"
#include "paddle/operators/math/math_function.h"
#include "paddle/operators/math/pooling.h"
#include "paddle/platform/dynload/cudnn.h"
namespace
paddle
{
namespace
operators
{
...
...
paddle/platform/dynload/cudnn.cc
浏览文件 @
79aa5122
...
...
@@ -57,6 +57,10 @@ void EnforceCUDNNLoaded(const char* fn_name) {
bool
HasCUDNN
()
{
return
true
;
}
#endif
#ifndef PADDLE_WITH_CUDA
bool
HasCUDNN
()
{
return
false
;
}
#endif
}
// namespace dynload
}
// namespace platform
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录