Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
c0d6ec63
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看板
未验证
提交
c0d6ec63
编写于
1月 10, 2023
作者:
MarDino
提交者:
GitHub
1月 10, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add cuda compiled arch check (#49592)
上级
5a1d081f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
37 addition
and
0 deletion
+37
-0
cmake/cuda.cmake
cmake/cuda.cmake
+8
-0
paddle/phi/backends/CMakeLists.txt
paddle/phi/backends/CMakeLists.txt
+5
-0
paddle/phi/backends/gpu/gpu_resources.cc
paddle/phi/backends/gpu/gpu_resources.cc
+24
-0
未找到文件。
cmake/cuda.cmake
浏览文件 @
c0d6ec63
...
...
@@ -207,6 +207,7 @@ function(select_nvcc_arch_flags out_variable)
set
(
nvcc_flags
""
)
set
(
nvcc_archs_readable
""
)
set
(
nvcc_archs_bin_list
""
)
# Tell NVCC to add binaries for the specified GPUs
foreach
(
arch
${
cuda_arch_bin
}
)
...
...
@@ -215,10 +216,12 @@ function(select_nvcc_arch_flags out_variable)
string
(
APPEND nvcc_flags
" -gencode arch=compute_
${
CMAKE_MATCH_2
}
,code=sm_
${
CMAKE_MATCH_1
}
"
)
string
(
APPEND nvcc_archs_readable
" sm_
${
CMAKE_MATCH_1
}
"
)
string
(
APPEND nvcc_archs_bin_list
"
${
CMAKE_MATCH_1
}
"
)
else
()
# User didn't explicitly specify PTX for the concrete BIN, we assume PTX=BIN
string
(
APPEND nvcc_flags
" -gencode arch=compute_
${
arch
}
,code=sm_
${
arch
}
"
)
string
(
APPEND nvcc_archs_readable
" sm_
${
arch
}
"
)
string
(
APPEND nvcc_archs_bin_list
"
${
arch
}
"
)
endif
()
endforeach
()
...
...
@@ -230,12 +233,17 @@ function(select_nvcc_arch_flags out_variable)
endforeach
()
string
(
REPLACE
";"
" "
nvcc_archs_readable
"
${
nvcc_archs_readable
}
"
)
string
(
REGEX MATCHALL
"[0-9()]+"
nvcc_archs_bin_list
"
${
nvcc_archs_bin_list
}
"
)
string
(
JOIN
","
nvcc_real_archs
${
nvcc_archs_bin_list
}
)
set
(
${
out_variable
}
${
nvcc_flags
}
PARENT_SCOPE
)
set
(
${
out_variable
}
_readable
${
nvcc_archs_readable
}
PARENT_SCOPE
)
set
(
${
out_variable
}
_real_archs
${
nvcc_real_archs
}
PARENT_SCOPE
)
endfunction
()
message
(
STATUS
"CUDA detected: "
${
CMAKE_CUDA_COMPILER_VERSION
}
)
...
...
paddle/phi/backends/CMakeLists.txt
浏览文件 @
c0d6ec63
...
...
@@ -12,6 +12,11 @@ if(WITH_GPU OR WITH_ROCM)
gpu/gpu_resources.cc
)
if
(
WITH_GPU
)
list
(
APPEND BACKENDS_SRCS gpu/cuda/cuda_info.cc gpu/cuda/cuda_graph.cc
)
set_source_files_properties
(
gpu/gpu_resources.cc
PROPERTIES COMPILE_FLAGS
"-DCUDA_REAL_ARCHS=
\"
${
NVCC_FLAGS_EXTRA_real_archs
}
\"
"
)
endif
()
if
(
WITH_ROCM
)
list
(
APPEND BACKENDS_SRCS gpu/rocm/rocm_info.cc
)
...
...
paddle/phi/backends/gpu/gpu_resources.cc
浏览文件 @
c0d6ec63
...
...
@@ -14,6 +14,8 @@
#include "paddle/phi/backends/gpu/gpu_resources.h"
#include <set>
#include "paddle/phi/api/include/tensor.h"
#include "paddle/phi/backends/gpu/gpu_decls.h"
#include "paddle/phi/backends/gpu/gpu_info.h"
...
...
@@ -57,6 +59,28 @@ void InitGpuProperties(Place place,
*
driver_version
=
backends
::
gpu
::
GetGPUDriverVersion
(
place
.
GetDeviceId
());
*
runtime_version
=
backends
::
gpu
::
GetGPURuntimeVersion
(
place
.
GetDeviceId
());
const
gpuDeviceProp
&
prop
=
backends
::
gpu
::
GetDeviceProperties
(
place
.
GetDeviceId
());
#ifdef PADDLE_WITH_CUDA
static
const
std
::
set
<
int
>
compiled_archs
{
CUDA_REAL_ARCHS
};
// Make sure compiled cuda arch is as same as runtime cuda arch.
if
(
compiled_archs
.
find
(
*
compute_capability
)
==
compiled_archs
.
cend
()
&&
compiled_archs
.
find
(
prop
.
major
*
10
)
==
compiled_archs
.
cend
())
{
static
std
::
atomic
<
bool
>
once_flag
(
false
);
if
(
!
once_flag
.
exchange
(
true
))
{
std
::
string
compile_arch_str
=
""
;
for
(
const
int32_t
&
arch
:
compiled_archs
)
{
compile_arch_str
+=
std
::
to_string
(
arch
)
+
" "
;
}
LOG
(
WARNING
)
<<
"Paddle with runtime capability "
<<
*
compute_capability
<<
" is not compatible with Paddle installation with arch: "
<<
compile_arch_str
<<
". Please check compiled version of Paddle. "
;
}
}
#endif
// TODO(wilber): glog may be replaced in the future?
LOG_FIRST_N
(
WARNING
,
1
)
<<
"Please NOTE: device: "
<<
static_cast
<
int
>
(
place
.
device
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录