Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
f0a3fb6e
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
提交
f0a3fb6e
编写于
6月 29, 2017
作者:
Y
Yu Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Using paddle::string in enforce
上级
ff000ae7
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
14 addition
and
62 deletion
+14
-62
paddle/framework/CMakeLists.txt
paddle/framework/CMakeLists.txt
+1
-2
paddle/framework/enforce.h
paddle/framework/enforce.h
+9
-54
paddle/framework/enforce_test.cc
paddle/framework/enforce_test.cc
+4
-5
paddle/platform/CMakeLists.txt
paddle/platform/CMakeLists.txt
+0
-1
未找到文件。
paddle/framework/CMakeLists.txt
浏览文件 @
f0a3fb6e
cc_library
(
ddim SRCS ddim.cc
)
cc_library
(
ddim SRCS ddim.cc
)
cc_test
(
ddim_test SRCS ddim_test.cc DEPS ddim
)
cc_test
(
ddim_test SRCS ddim_test.cc DEPS ddim
)
nv_test
(
dim_test SRCS dim_test.cu DEPS ddim
)
nv_test
(
dim_test SRCS dim_test.cu DEPS ddim
)
cc_test
(
variable_test SRCS variable_test.cc
)
cc_test
(
variable_test SRCS variable_test.cc
)
cc_test
(
enforce_test SRCS enforce_test.cc
)
paddle/
platform
/enforce.h
→
paddle/
framework
/enforce.h
浏览文件 @
f0a3fb6e
...
@@ -10,11 +10,12 @@ See the License for the specific language governing permissions and
...
@@ -10,11 +10,12 @@ See the License for the specific language governing permissions and
limitations under the License. */
limitations under the License. */
#pragma once
#pragma once
#include <paddle/string/printf.h>
#include <exception>
#include <exception>
#include <sstream>
#include <sstream>
namespace
paddle
{
namespace
paddle
{
namespace
platform
{
namespace
framework
{
/**
/**
* @brief Enforce exception. Inherits std::exception
* @brief Enforce exception. Inherits std::exception
...
@@ -23,10 +24,9 @@ namespace platform {
...
@@ -23,10 +24,9 @@ namespace platform {
*/
*/
class
EnforceNotMet
:
public
std
::
exception
{
class
EnforceNotMet
:
public
std
::
exception
{
public:
public:
EnforceNotMet
(
const
std
::
string
&
msg
,
const
char
*
file
,
int
fileline
)
EnforceNotMet
(
const
std
::
string
&
msg
,
const
char
*
file
,
int
fileline
)
{
:
file_
(
file
),
fileline_
(
fileline
)
{
std
::
ostringstream
sout
;
std
::
ostringstream
sout
;
sout
<<
msg
<<
" at ["
<<
file
_
<<
":"
<<
fileline_
<<
"];"
;
sout
<<
msg
<<
" at ["
<<
file
<<
":"
<<
fileline
<<
"];"
;
all_msg_
=
sout
.
str
();
all_msg_
=
sout
.
str
();
}
}
...
@@ -34,52 +34,8 @@ class EnforceNotMet : public std::exception {
...
@@ -34,52 +34,8 @@ class EnforceNotMet : public std::exception {
private:
private:
std
::
string
all_msg_
;
std
::
string
all_msg_
;
const
char
*
file_
;
int
fileline_
;
};
};
namespace
details
{
inline
void
MakeStringInternal
(
std
::
ostringstream
&
stream
)
{}
template
<
typename
T
>
inline
void
MakeStringInternal
(
std
::
ostringstream
&
stream
,
T
v
)
{
stream
<<
v
;
}
template
<
typename
T
,
typename
...
ARGS
>
inline
void
MakeStringInternal
(
std
::
ostringstream
&
stream
,
T
v
,
ARGS
...
args
)
{
MakeStringInternal
(
stream
,
v
);
MakeStringInternal
(
stream
,
args
...);
};
/**
* @brief Make string will concat all args into a string.
*/
template
<
typename
...
ARGS
>
inline
std
::
string
MakeString
(
ARGS
...
args
)
{
std
::
ostringstream
sout
;
details
::
MakeStringInternal
(
sout
,
args
...);
return
sout
.
str
();
}
/**
* @brief special handle string
*/
template
<
>
inline
std
::
string
MakeString
<
std
::
string
>
(
std
::
string
str
)
{
return
str
;
}
/**
* @brief special handle const char*
*/
template
<
>
inline
std
::
string
MakeString
<
const
char
*>
(
const
char
*
str
)
{
return
std
::
string
(
str
);
}
}
// namespace details
// From https://stackoverflow.com/questions/30130930/
// From https://stackoverflow.com/questions/30130930/
// __buildin_expect is in C++ 11 standard. Since the condition which enforced
// __buildin_expect is in C++ 11 standard. Since the condition which enforced
// should be true in most situation, it will make the compiler generate faster
// should be true in most situation, it will make the compiler generate faster
...
@@ -95,9 +51,8 @@ inline std::string MakeString<const char*>(const char* str) {
...
@@ -95,9 +51,8 @@ inline std::string MakeString<const char*>(const char* str) {
*/
*/
#define PADDLE_THROW(...) \
#define PADDLE_THROW(...) \
do { \
do { \
throw ::paddle::platform::EnforceNotMet( \
throw ::paddle::framework::EnforceNotMet( \
::paddle::platform::details::MakeString(__VA_ARGS__), __FILE__, \
::paddle::string::Sprintf(__VA_ARGS__), __FILE__, __LINE__); \
__LINE__); \
} while (0)
} while (0)
/**
/**
...
@@ -110,5 +65,5 @@ inline std::string MakeString<const char*>(const char* str) {
...
@@ -110,5 +65,5 @@ inline std::string MakeString<const char*>(const char* str) {
} \
} \
} while (0)
} while (0)
}
// namespace
platform
}
// namespace
framework
}
// namespace paddle
}
// namespace paddle
paddle/
platform
/enforce_test.cc
→
paddle/
framework
/enforce_test.cc
浏览文件 @
f0a3fb6e
...
@@ -10,10 +10,10 @@ See the License for the specific language governing permissions and
...
@@ -10,10 +10,10 @@ See the License for the specific language governing permissions and
limitations under the License. */
limitations under the License. */
#include <gtest/gtest.h>
#include <gtest/gtest.h>
#include <paddle/
platform
/enforce.h>
#include <paddle/
framework
/enforce.h>
TEST
(
ENFORCE
,
OK
)
{
TEST
(
ENFORCE
,
OK
)
{
PADDLE_ENFORCE
(
true
,
"Enforce is ok
"
,
123
,
"now"
,
0.345
);
PADDLE_ENFORCE
(
true
,
"Enforce is ok
%d now %f"
,
123
,
0.345
);
size_t
val
=
1
;
size_t
val
=
1
;
const
size_t
limit
=
10
;
const
size_t
limit
=
10
;
PADDLE_ENFORCE
(
val
<
limit
,
"Enforce is OK too"
);
PADDLE_ENFORCE
(
val
<
limit
,
"Enforce is OK too"
);
...
@@ -22,8 +22,8 @@ TEST(ENFORCE, OK) {
...
@@ -22,8 +22,8 @@ TEST(ENFORCE, OK) {
TEST
(
ENFORCE
,
FAILED
)
{
TEST
(
ENFORCE
,
FAILED
)
{
bool
in_catch
=
false
;
bool
in_catch
=
false
;
try
{
try
{
PADDLE_ENFORCE
(
false
,
"Enforce is not ok
"
,
123
,
" at all"
);
PADDLE_ENFORCE
(
false
,
"Enforce is not ok
%d at all"
,
123
);
}
catch
(
paddle
::
platform
::
EnforceNotMet
err
)
{
}
catch
(
paddle
::
framework
::
EnforceNotMet
err
)
{
in_catch
=
true
;
in_catch
=
true
;
std
::
string
msg
=
"Enforce is not ok 123 at all"
;
std
::
string
msg
=
"Enforce is not ok 123 at all"
;
const
char
*
what
=
err
.
what
();
const
char
*
what
=
err
.
what
();
...
@@ -31,6 +31,5 @@ TEST(ENFORCE, FAILED) {
...
@@ -31,6 +31,5 @@ TEST(ENFORCE, FAILED) {
ASSERT_EQ
(
what
[
i
],
msg
[
i
]);
ASSERT_EQ
(
what
[
i
],
msg
[
i
]);
}
}
}
}
ASSERT_TRUE
(
in_catch
);
ASSERT_TRUE
(
in_catch
);
}
}
\ No newline at end of file
paddle/platform/CMakeLists.txt
浏览文件 @
f0a3fb6e
...
@@ -2,4 +2,3 @@ nv_test(cuda_test SRCS cuda_test.cu)
...
@@ -2,4 +2,3 @@ nv_test(cuda_test SRCS cuda_test.cu)
cc_library
(
place SRCS place.cc
)
cc_library
(
place SRCS place.cc
)
cc_test
(
place_test SRCS place_test.cc DEPS place glog gflags
)
cc_test
(
place_test SRCS place_test.cc DEPS place glog gflags
)
cc_test
(
enforce_test SRCS enforce_test.cc
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录