Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
f4ec1563
P
Paddle
项目概览
机器未来
/
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看板
未验证
提交
f4ec1563
编写于
9月 19, 2022
作者:
X
xiaoxiaohehe001
提交者:
GitHub
9月 19, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
convfusion_cache (#46054)
上级
dabb8f23
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
67 addition
and
45 deletion
+67
-45
paddle/fluid/framework/conv_search_cache.h
paddle/fluid/framework/conv_search_cache.h
+4
-2
paddle/fluid/framework/operator_kernel_configs.h
paddle/fluid/framework/operator_kernel_configs.h
+10
-0
paddle/fluid/operators/fused/conv_fusion_op.cu
paddle/fluid/operators/fused/conv_fusion_op.cu
+53
-43
未找到文件。
paddle/fluid/framework/conv_search_cache.h
浏览文件 @
f4ec1563
...
@@ -55,7 +55,8 @@ class ConvSearchCache {
...
@@ -55,7 +55,8 @@ class ConvSearchCache {
AlgorithmsCache
<
cudnnConvolutionBwdFilterAlgo_t
>*
GetBackwardFilter
()
{
AlgorithmsCache
<
cudnnConvolutionBwdFilterAlgo_t
>*
GetBackwardFilter
()
{
return
&
backward_filter_cache_
;
return
&
backward_filter_cache_
;
}
}
AlgorithmsCache
<
cudnnConvolutionFwdAlgo_t
>*
GetConvFusion
()
{
AlgorithmsCache
<
SearchFuseResult
<
cudnnConvolutionFwdAlgo_t
>>*
GetConvFusion
()
{
return
&
fusion_forward_cache_
;
return
&
fusion_forward_cache_
;
}
}
#endif
#endif
...
@@ -75,7 +76,8 @@ class ConvSearchCache {
...
@@ -75,7 +76,8 @@ class ConvSearchCache {
AlgorithmsCache
<
cudnnConvolutionFwdAlgo_t
>
forward_cache_
;
AlgorithmsCache
<
cudnnConvolutionFwdAlgo_t
>
forward_cache_
;
AlgorithmsCache
<
cudnnConvolutionBwdDataAlgo_t
>
backward_data_cache_
;
AlgorithmsCache
<
cudnnConvolutionBwdDataAlgo_t
>
backward_data_cache_
;
AlgorithmsCache
<
cudnnConvolutionBwdFilterAlgo_t
>
backward_filter_cache_
;
AlgorithmsCache
<
cudnnConvolutionBwdFilterAlgo_t
>
backward_filter_cache_
;
AlgorithmsCache
<
cudnnConvolutionFwdAlgo_t
>
fusion_forward_cache_
;
AlgorithmsCache
<
SearchFuseResult
<
cudnnConvolutionFwdAlgo_t
>>
fusion_forward_cache_
;
#endif
#endif
};
};
...
...
paddle/fluid/framework/operator_kernel_configs.h
浏览文件 @
f4ec1563
...
@@ -24,6 +24,16 @@ limitations under the License. */
...
@@ -24,6 +24,16 @@ limitations under the License. */
namespace
paddle
{
namespace
paddle
{
namespace
framework
{
namespace
framework
{
template
<
typename
AlgoT
>
struct
SearchFuseResult
{
SearchFuseResult
()
{}
explicit
SearchFuseResult
(
AlgoT
a
)
:
algo
(
a
)
{}
AlgoT
algo
=
static_cast
<
AlgoT
>
(
0
);
float
time
=
-
1.
f
;
size_t
workspace_size
=
0
;
};
// thread-safe.
// thread-safe.
template
<
typename
TAlgorithm
>
template
<
typename
TAlgorithm
>
class
AlgorithmsCache
{
class
AlgorithmsCache
{
...
...
paddle/fluid/operators/fused/conv_fusion_op.cu
浏览文件 @
f4ec1563
...
@@ -35,6 +35,7 @@ using ScopedActivationDescriptor = platform::ScopedActivationDescriptor;
...
@@ -35,6 +35,7 @@ using ScopedActivationDescriptor = platform::ScopedActivationDescriptor;
using
DataLayout
=
platform
::
DataLayout
;
using
DataLayout
=
platform
::
DataLayout
;
using
framework
::
AlgorithmsCache
;
using
framework
::
AlgorithmsCache
;
using
framework
::
ConvSearchCache
;
using
framework
::
ConvSearchCache
;
using
framework
::
SearchFuseResult
;
template
<
typename
T
>
template
<
typename
T
>
using
ScalingParamType
=
typename
platform
::
CudnnDataType
<
T
>::
ScalingParamType
;
using
ScalingParamType
=
typename
platform
::
CudnnDataType
<
T
>::
ScalingParamType
;
...
@@ -348,34 +349,35 @@ class CUDNNConvFusionOpKernel : public framework::OpKernel<T> {
...
@@ -348,34 +349,35 @@ class CUDNNConvFusionOpKernel : public framework::OpKernel<T> {
&
perf_count
,
&
perf_count
,
perf_results
.
get
()));
perf_results
.
get
()));
algo
=
(
perf_results
.
get
())[
best_algo_idx
].
algo
;
algo
=
(
perf_results
.
get
())[
best_algo_idx
].
algo
;
#else
PADDLE_ENFORCE_GPU_SUCCESS
(
PADDLE_ENFORCE_GPU_SUCCESS
(
platform
::
dynload
::
cudnnGetConvolutionForward
WorkspaceSize
(
platform
::
dynload
::
cudnnGetConvolutionForward
Algorithm
(
handle
,
handle
,
cudnn_input_desc
,
cudnn_input_desc
,
cudnn_filter_desc
,
cudnn_filter_desc
,
cudnn_conv_desc
,
cudnn_conv_desc
,
cudnn_output_desc
,
cudnn_output_desc
,
algo
,
CUDNN_CONVOLUTION_FWD_SPECIFY_WORKSPACE_LIMIT
,
&
workspace_size_in_bytes
));
workspace_size_limit
,
if
(
workspace_size_in_bytes
>
workspace_size_limit
)
&
algo
));
workspace_size_limit
=
workspace_size_in_bytes
;
#endif
#else
PADDLE_ENFORCE_GPU_SUCCESS
(
PADDLE_ENFORCE_GPU_SUCCESS
(
platform
::
dynload
::
cudnnGetConvolutionForward
Algorithm
(
platform
::
dynload
::
cudnnGetConvolutionForward
WorkspaceSize
(
handle
,
handle
,
cudnn_input_desc
,
cudnn_input_desc
,
cudnn_filter_desc
,
cudnn_filter_desc
,
cudnn_conv_desc
,
cudnn_conv_desc
,
cudnn_output_desc
,
cudnn_output_desc
,
CUDNN_CONVOLUTION_FWD_SPECIFY_WORKSPACE_LIMIT
,
algo
,
workspace_size_limit
,
&
workspace_size_in_bytes
));
&
algo
));
if
(
workspace_size_in_bytes
>
workspace_size_limit
)
workspace_size_limit
=
workspace_size_in_bytes
;
VLOG
(
3
)
<<
"cuDNN forward algo "
<<
algo
;
VLOG
(
3
)
<<
"cuDNN forward algo "
<<
algo
;
#endif
}
else
{
}
else
{
std
::
function
<
cudnnConvolutionFwdAlgo_t
()
>
search_func
=
std
::
function
<
SearchFuseResult
<
cudnnConvolutionFwdAlgo_t
>
()
>
search_func
=
[
&
]()
->
cudnnConvolutionFwdAlgo_t
{
[
&
]()
->
SearchFuseResult
<
cudnnConvolutionFwdAlgo_t
>
{
int
returned_algo_count
;
int
returned_algo_count
;
SearchFuseResult
<
cudnnConvolutionFwdAlgo_t
>
fwd_result
;
std
::
array
<
cudnnConvolutionFwdAlgoPerf_t
,
kNUM_CUDNN_FWD_ALGS
>
std
::
array
<
cudnnConvolutionFwdAlgoPerf_t
,
kNUM_CUDNN_FWD_ALGS
>
fwd_perf_stat
;
fwd_perf_stat
;
auto
cudnn_find_func
=
[
&
](
void
*
cudnn_workspace
)
{
auto
cudnn_find_func
=
[
&
](
void
*
cudnn_workspace
)
{
...
@@ -402,11 +404,34 @@ class CUDNNConvFusionOpKernel : public framework::OpKernel<T> {
...
@@ -402,11 +404,34 @@ class CUDNNConvFusionOpKernel : public framework::OpKernel<T> {
VLOG
(
3
)
<<
stat
.
algo
<<
": "
<<
stat
.
status
<<
" "
<<
stat
.
time
<<
" "
VLOG
(
3
)
<<
stat
.
algo
<<
": "
<<
stat
.
status
<<
" "
<<
stat
.
time
<<
" "
<<
stat
.
memory
;
<<
stat
.
memory
;
}
}
return
fwd_perf_stat
[
0
].
algo
;
PADDLE_ENFORCE_GPU_SUCCESS
(
platform
::
dynload
::
cudnnGetConvolutionForwardWorkspaceSize
(
handle
,
cudnn_input_desc
,
cudnn_filter_desc
,
cudnn_conv_desc
,
cudnn_output_desc
,
fwd_perf_stat
[
0
].
algo
,
&
workspace_size_in_bytes
));
// PADDLE_ENFORCE_LE(
// workspace_size_in_bytes,
// workspace_size_limit,
// platform::errors::InvalidArgument(
// "The actual workspace size to be allocated for cuDNN is
// expected " "to be less than the limit. But received: the
// actual workspace " "size = %d, limit = %d.",
// workspace_size_in_bytes,
// workspace_size_limit));
fwd_result
.
algo
=
fwd_perf_stat
[
0
].
algo
;
fwd_result
.
workspace_size
=
workspace_size_in_bytes
;
return
fwd_result
;
};
};
AlgorithmsCache
<
cudnnConvolutionFwdAlgo_t
>&
algo_cache
=
AlgorithmsCache
<
SearchFuseResult
<
cudnnConvolutionFwdAlgo_t
>
>&
algo_cache
=
*
(
framework
::
ConvSearchCache
::
Instance
().
GetConvFusion
());
*
(
framework
::
ConvSearchCache
::
Instance
().
GetConvFusion
());
int
search_times
=
ctx
.
Attr
<
int
>
(
"search_times"
);
int
search_times
=
ctx
.
Attr
<
int
>
(
"search_times"
);
SearchFuseResult
<
cudnnConvolutionFwdAlgo_t
>
algo_result
;
search_times
=
std
::
max
(
search_times
=
std
::
max
(
static_cast
<
int
>
(
FLAGS_cudnn_exhaustive_search_times
),
search_times
);
static_cast
<
int
>
(
FLAGS_cudnn_exhaustive_search_times
),
search_times
);
// TODO(dangqingqing): Unify this if-else.
// TODO(dangqingqing): Unify this if-else.
...
@@ -414,39 +439,24 @@ class CUDNNConvFusionOpKernel : public framework::OpKernel<T> {
...
@@ -414,39 +439,24 @@ class CUDNNConvFusionOpKernel : public framework::OpKernel<T> {
// The searched algo will be cached by `search_times` times for
// The searched algo will be cached by `search_times` times for
// different input dimension. For other dimensions, select the algo
// different input dimension. For other dimensions, select the algo
// of closest area.
// of closest area.
algo
=
algo_cache
.
GetAlgorithm
(
algo
_result
=
algo_cache
.
GetAlgorithm
(
x_dims
[
2
]
*
x_dims
[
3
],
search_times
,
0
,
search_func
);
x_dims
[
2
]
*
x_dims
[
3
],
search_times
,
0
,
search_func
);
algo
=
algo_result
.
algo
;
workspace_size_in_bytes
=
algo_result
.
workspace_size
;
}
else
{
}
else
{
algo
=
algo_cache
.
GetAlgorithm
(
x_dims
,
algo_result
=
algo_cache
.
GetAlgorithm
(
x_dims
,
f_dims
,
f_dims
,
strides
,
strides
,
paddings
,
paddings
,
dilations
,
dilations
,
0
,
0
,
dtype
,
dtype
,
search_func
);
search_func
);
algo
=
algo_result
.
algo
;
workspace_size_in_bytes
=
algo_result
.
workspace_size
;
}
}
VLOG
(
3
)
<<
"choose algo "
<<
algo
;
VLOG
(
3
)
<<
"choose algo "
<<
algo
;
}
}
PADDLE_ENFORCE_GPU_SUCCESS
(
platform
::
dynload
::
cudnnGetConvolutionForwardWorkspaceSize
(
handle
,
cudnn_input_desc
,
cudnn_filter_desc
,
cudnn_conv_desc
,
cudnn_output_desc
,
algo
,
&
workspace_size_in_bytes
));
// PADDLE_ENFORCE_LE(
// workspace_size_in_bytes,
// workspace_size_limit,
// platform::errors::InvalidArgument(
// "The actual workspace size to be allocated for cuDNN is expected
// " "to be less than the limit. But received: the actual workspace
// " "size = %d, limit = %d.", workspace_size_in_bytes,
// workspace_size_limit));
if
((
activation
==
"identity"
)
&&
(
!
residual
))
{
if
((
activation
==
"identity"
)
&&
(
!
residual
))
{
// Only the CUDNN_CONVOLUTION_FWD_ALGO_IMPLICIT_PRECOMP_GEMM algo is
// Only the CUDNN_CONVOLUTION_FWD_ALGO_IMPLICIT_PRECOMP_GEMM algo is
// enabled with CUDNN_ACTIVATION_IDENTITY in cuDNN lib.
// enabled with CUDNN_ACTIVATION_IDENTITY in cuDNN lib.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录