Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
fbb42173
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看板
未验证
提交
fbb42173
编写于
12月 30, 2019
作者:
C
Chen Weihang
提交者:
GitHub
12月 30, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix no hint problem when use ENFORCE for cuda, test=develop (#21994)
上级
e66f92d1
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
22 addition
and
22 deletion
+22
-22
paddle/fluid/platform/enforce.h
paddle/fluid/platform/enforce.h
+22
-22
未找到文件。
paddle/fluid/platform/enforce.h
浏览文件 @
fbb42173
...
...
@@ -207,6 +207,10 @@ inline std::string GetTraceBackString(StrType&& what, const char* file,
inline
bool
is_error
(
bool
stat
)
{
return
!
stat
;
}
inline
std
::
string
build_ex_string
(
bool
stat
,
const
std
::
string
&
msg
)
{
return
msg
;
}
inline
void
throw_on_error
(
bool
stat
,
const
std
::
string
&
msg
)
{
#ifndef REPLACE_ENFORCE_GLOG
throw
std
::
runtime_error
(
msg
);
...
...
@@ -215,14 +219,6 @@ inline void throw_on_error(bool stat, const std::string& msg) {
#endif
}
inline
void
throw_on_error
(
const
platform
::
ErrorSummary
&
error
)
{
#ifndef REPLACE_ENFORCE_GLOG
throw
std
::
runtime_error
(
error
.
ToString
());
#else
LOG
(
FATAL
)
<<
error
.
ToString
();
#endif
}
// Note: This Macro can only be used within enforce.h
#define __THROW_ERROR_INTERNAL__(...) \
do { \
...
...
@@ -271,18 +267,21 @@ struct EnforceNotMet : public std::exception {
} \
} while (0)
#else
#define PADDLE_ENFORCE(COND, ...) \
do { \
auto __cond__ = (COND); \
if (UNLIKELY(::paddle::platform::is_error(__cond__))) { \
try { \
::paddle::platform::throw_on_error( \
::paddle::platform::ErrorSummary(__VA_ARGS__)); \
} catch (...) { \
throw ::paddle::platform::EnforceNotMet(std::current_exception(), \
__FILE__, __LINE__); \
} \
} \
#define PADDLE_ENFORCE(COND, ...) \
do { \
auto __cond__ = (COND); \
if (UNLIKELY(::paddle::platform::is_error(__cond__))) { \
try { \
::paddle::platform::throw_on_error( \
__cond__, \
::paddle::platform::build_ex_string( \
__cond__, \
::paddle::platform::ErrorSummary(__VA_ARGS__).ToString())); \
} catch (...) { \
throw ::paddle::platform::EnforceNotMet(std::current_exception(), \
__FILE__, __LINE__); \
} \
} \
} while (0)
#endif
...
...
@@ -414,7 +413,8 @@ inline bool is_error(cudnnStatus_t stat) {
}
inline
std
::
string
build_ex_string
(
cudnnStatus_t
stat
,
const
std
::
string
&
msg
)
{
return
msg
+
"
\n
["
+
platform
::
dynload
::
cudnnGetErrorString
(
stat
)
+
"]"
;
return
msg
+
"
\n
[Hint: "
+
platform
::
dynload
::
cudnnGetErrorString
(
stat
)
+
"]"
;
}
inline
void
throw_on_error
(
cudnnStatus_t
stat
,
const
std
::
string
&
msg
)
{
...
...
@@ -451,7 +451,7 @@ inline std::string build_ex_string(cublasStatus_t stat,
}
else
if
(
stat
==
CUBLAS_STATUS_LICENSE_ERROR
)
{
err
=
"CUBLAS: license error."
;
}
return
msg
+
"
\n
["
+
err
+
"]"
;
return
msg
+
"
\n
[
Hint:
"
+
err
+
"]"
;
}
inline
void
throw_on_error
(
cublasStatus_t
stat
,
const
std
::
string
&
msg
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录