Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
593a4428
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看板
未验证
提交
593a4428
编写于
8月 29, 2023
作者:
R
ronnywang
提交者:
GitHub
8月 29, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ROCM] Remove the constraint with a maximum number of threads per block of 256, P3 (#56701)
上级
41e72a41
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
2 addition
and
63 deletion
+2
-63
paddle/phi/kernels/gpu/graph_reindex_kernel.cu
paddle/phi/kernels/gpu/graph_reindex_kernel.cu
+2
-22
paddle/phi/kernels/gpu/group_norm_grad_kernel.cu
paddle/phi/kernels/gpu/group_norm_grad_kernel.cu
+0
-5
paddle/phi/kernels/gpu/group_norm_kernel.cu
paddle/phi/kernels/gpu/group_norm_kernel.cu
+0
-8
paddle/phi/kernels/gpu/interpolate_grad_kernel.cu
paddle/phi/kernels/gpu/interpolate_grad_kernel.cu
+0
-4
paddle/phi/kernels/gpu/interpolate_kernel.cu
paddle/phi/kernels/gpu/interpolate_kernel.cu
+0
-4
paddle/phi/kernels/gpu/lu_kernel.cu
paddle/phi/kernels/gpu/lu_kernel.cu
+0
-4
paddle/phi/kernels/gpu/norm_grad_kernel.cu
paddle/phi/kernels/gpu/norm_grad_kernel.cu
+0
-4
paddle/phi/kernels/gpu/norm_kernel.cu
paddle/phi/kernels/gpu/norm_kernel.cu
+0
-4
paddle/phi/kernels/gpu/send_u_recv_grad_kernel.cu
paddle/phi/kernels/gpu/send_u_recv_grad_kernel.cu
+0
-4
paddle/phi/kernels/gpu/send_u_recv_kernel.cu
paddle/phi/kernels/gpu/send_u_recv_kernel.cu
+0
-4
未找到文件。
paddle/phi/kernels/gpu/graph_reindex_kernel.cu
浏览文件 @
593a4428
...
...
@@ -58,11 +58,7 @@ std::shared_ptr<phi::Allocation> FillHashTable(const Context& dev_ctx,
int
*
final_nodes_len
)
{
const
auto
place
=
dev_ctx
.
GetPlace
();
#ifdef PADDLE_WITH_HIP
int
block
=
256
;
#else
int
block
=
1024
;
#endif
int
max_grid_dimx
=
dev_ctx
.
GetCUDAMaxGridDimSize
()[
0
];
int
grid_tmp
=
(
num_input
+
block
-
1
)
/
block
;
int
grid
=
grid_tmp
<
max_grid_dimx
?
grid_tmp
:
max_grid_dimx
;
...
...
@@ -128,11 +124,7 @@ void FillBufferHashTable(const Context& dev_ctx,
thrust
::
device_vector
<
T
>*
unique_items
,
int
*
values
,
int
*
key_index
)
{
#ifdef PADDLE_WITH_HIP
int
block
=
256
;
#else
int
block
=
1024
;
#endif
int
max_grid_dimx
=
dev_ctx
.
GetCUDAMaxGridDimSize
()[
0
];
int
grid_tmp
=
(
num_input
+
block
-
1
)
/
block
;
int
grid
=
grid_tmp
<
max_grid_dimx
?
grid_tmp
:
max_grid_dimx
;
...
...
@@ -167,11 +159,7 @@ void ResetBufferHashTable(const Context& dev_ctx,
thrust
::
device_vector
<
T
>*
unique_items
,
int
*
values
,
int
*
key_index
)
{
#ifdef PADDLE_WITH_HIP
int
block
=
256
;
#else
int
block
=
1024
;
#endif
int
max_grid_dimx
=
dev_ctx
.
GetCUDAMaxGridDimSize
()[
0
];
int
grid_tmp
=
(
unique_items
->
size
()
+
block
-
1
)
/
block
;
int
grid
=
grid_tmp
<
max_grid_dimx
?
grid_tmp
:
max_grid_dimx
;
...
...
@@ -189,12 +177,8 @@ void ReindexSrc(const Context& dev_ctx,
int
*
values
,
int64_t
num_edges
,
int64_t
table_size
)
{
// Fill outputs with reindex result.
#ifdef PADDLE_WITH_HIP
int
block
=
256
;
#else
// Fill outputs with reindex result.
int
block
=
1024
;
#endif
int
max_grid_dimx
=
dev_ctx
.
GetCUDAMaxGridDimSize
()[
0
];
int
grid_tmp
=
(
num_edges
+
block
-
1
)
/
block
;
int
grid
=
grid_tmp
<
max_grid_dimx
?
grid_tmp
:
max_grid_dimx
;
...
...
@@ -289,12 +273,8 @@ void BufferReindex(const Context& dev_ctx,
out_nodes
->
resize
(
unique_nodes
.
size
());
thrust
::
copy
(
unique_nodes
.
begin
(),
unique_nodes
.
end
(),
out_nodes
->
begin
());
// Fill outputs with reindex result.
#ifdef PADDLE_WITH_HIP
int
block
=
256
;
#else
// Fill outputs with reindex result.
int
block
=
1024
;
#endif
int
max_grid_dimx
=
dev_ctx
.
GetCUDAMaxGridDimSize
()[
0
];
int
grid_tmp
=
(
num_edges
+
block
-
1
)
/
block
;
int
grid
=
grid_tmp
<
max_grid_dimx
?
grid_tmp
:
max_grid_dimx
;
...
...
paddle/phi/kernels/gpu/group_norm_grad_kernel.cu
浏览文件 @
593a4428
...
...
@@ -336,13 +336,8 @@ void GroupNormGradKernel(const Context& dev_ctx,
}
}
#ifdef __HIPCC__
int
block_size
=
std
::
max
(
std
::
min
(
256
,
imsize
),
64
);
const
int
block_dims
=
256
;
#else
int
block_size
=
std
::
min
(
1024
,
imsize
);
const
int
block_dims
=
1024
;
#endif
dim3
grid
(
group_size
,
groups
,
x_dims
[
0
]);
dim3
threads
(
block_size
,
1
,
1
);
int
flags
=
...
...
paddle/phi/kernels/gpu/group_norm_kernel.cu
浏览文件 @
593a4428
...
...
@@ -820,11 +820,7 @@ void GroupNormDirectCUDAFunctor<T, AccT>::operator()(
image_size
*=
input_ddim
[
i
];
}
}
#ifdef __HIPCC__
int
block_size
=
std
::
max
(
std
::
min
(
256
,
image_size
),
64
);
#else
int
block_size
=
std
::
min
(
1024
,
image_size
);
#endif
dim3
grid
(
group_size
,
groups
,
input_ddim
[
0
]);
dim3
threads
(
block_size
,
1
,
1
);
if
(
data_layout
==
DataLayout
::
kNCHW
)
{
...
...
@@ -943,11 +939,7 @@ void GroupNormGeneralCaseKernel(const Context& dev_ctx,
}
}
#ifdef __HIPCC__
int
block_size
=
std
::
max
(
std
::
min
(
256
,
imsize
),
64
);
#else
int
block_size
=
std
::
min
(
1024
,
imsize
);
#endif
dim3
grid
(
group_size
,
groups
,
x_dims
[
0
]);
dim3
threads
(
block_size
,
1
,
1
);
...
...
paddle/phi/kernels/gpu/interpolate_grad_kernel.cu
浏览文件 @
593a4428
...
...
@@ -1096,11 +1096,7 @@ static void Interpolate2DCUDABwd(
interp_divmods
);
}
}
else
if
(
"bicubic"
==
interp_method
)
{
#ifdef __HIPCC__
constexpr
int
thread_per_block
=
256
;
#else
constexpr
int
thread_per_block
=
512
;
#endif
KeBicubicInterpBw
<
T
>
<<<
config
.
block_per_grid
,
thread_per_block
,
0
,
dev_ctx
.
stream
()
>>>
(
input_grad_data
,
...
...
paddle/phi/kernels/gpu/interpolate_kernel.cu
浏览文件 @
593a4428
...
...
@@ -985,11 +985,7 @@ static void Interpolate2DCUDAFwd(
interp_divmods
);
}
}
else
if
(
"bicubic"
==
interp_method
)
{
#ifdef __HIPCC__
constexpr
int
thread_per_block
=
256
;
#else
constexpr
int
thread_per_block
=
512
;
#endif
KeBicubicInterpFw
<
T
>
<<<
config
.
block_per_grid
,
thread_per_block
,
0
,
dev_ctx
.
stream
()
>>>
(
input_data
,
...
...
paddle/phi/kernels/gpu/lu_kernel.cu
浏览文件 @
593a4428
...
...
@@ -127,11 +127,7 @@ void LUKernel(const Context& dev_ctx,
DenseTensor
*
out
,
DenseTensor
*
pivots
,
DenseTensor
*
infos
)
{
#ifdef __HIPCC__
const
int64_t
kMaxBlockDim
=
256
;
#else
const
int64_t
kMaxBlockDim
=
512
;
#endif
*
out
=
Transpose2DTo6D
<
Context
,
T
>
(
dev_ctx
,
x
);
...
...
paddle/phi/kernels/gpu/norm_grad_kernel.cu
浏览文件 @
593a4428
...
...
@@ -96,11 +96,7 @@ void NormGradKernel(const Context& ctx,
int
pre
,
n
,
post
;
funcs
::
GetPrePostNumel
(
xdim
,
axis
,
&
pre
,
&
n
,
&
post
);
#ifdef __HIPCC__
const
int
block
=
256
;
#else
const
int
block
=
512
;
#endif
int
max_threads
=
ctx
.
GetMaxPhysicalThreadCount
();
const
int
max_blocks
=
std
::
max
(
max_threads
/
block
,
1
);
int
grid
=
std
::
min
(
max_blocks
,
pre
*
post
);
...
...
paddle/phi/kernels/gpu/norm_kernel.cu
浏览文件 @
593a4428
...
...
@@ -108,11 +108,7 @@ void NormKernel(const Context& ctx,
int
pre
,
n
,
post
;
funcs
::
GetPrePostNumel
(
xdim
,
axis
,
&
pre
,
&
n
,
&
post
);
#ifdef __HIPCC__
const
int
block
=
256
;
#else
const
int
block
=
512
;
#endif
int
max_threads
=
ctx
.
GetMaxPhysicalThreadCount
();
const
int
max_blocks
=
std
::
max
(
max_threads
/
block
,
1
);
int
grid
=
std
::
min
(
max_blocks
,
pre
*
post
);
...
...
paddle/phi/kernels/gpu/send_u_recv_grad_kernel.cu
浏览文件 @
593a4428
...
...
@@ -63,11 +63,7 @@ void GraphSendRecvGradOpCUDAKernelLaunchHelper(
const
IndexT
*
s_index
=
src_index
.
data
<
IndexT
>
();
const
IndexT
*
d_index
=
dst_index
.
data
<
IndexT
>
();
#ifdef PADDLE_WITH_HIP
int
block
=
256
;
#else
int
block
=
1024
;
#endif
int64_t
n
=
slice_size
*
index_size
;
int64_t
max_grid_dimx
=
ctx
.
GetCUDAMaxGridDimSize
()[
0
];
int64_t
grid_tmp
=
(
n
+
block
-
1
)
/
block
;
...
...
paddle/phi/kernels/gpu/send_u_recv_kernel.cu
浏览文件 @
593a4428
...
...
@@ -90,11 +90,7 @@ void GraphSendRecvOpCUDAKernelLaunchHelper(const Context& ctx,
const
IndexT
*
s_index
=
src_index
.
data
<
IndexT
>
();
const
IndexT
*
d_index
=
dst_index
.
data
<
IndexT
>
();
#ifdef PADDLE_WITH_HIP
int
block
=
256
;
#else
int
block
=
1024
;
#endif
int64_t
n
=
slice_size
*
index_size
;
int64_t
max_grid_dimx
=
ctx
.
GetCUDAMaxGridDimSize
()[
0
];
int64_t
grid_tmp
=
(
n
+
block
-
1
)
/
block
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录