Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
78c3e1de
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
78c3e1de
编写于
8月 09, 2017
作者:
F
fengjiayi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor
上级
9a52056d
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
58 addition
and
57 deletion
+58
-57
paddle/framework/op_registry.h
paddle/framework/op_registry.h
+58
-57
未找到文件。
paddle/framework/op_registry.h
浏览文件 @
78c3e1de
...
@@ -307,22 +307,37 @@ class OpRegistry {
...
@@ -307,22 +307,37 @@ class OpRegistry {
}
}
};
};
class
Registrar
{};
template
<
typename
OpType
,
typename
ProtoMakerType
>
template
<
typename
OpType
,
typename
ProtoMakerType
>
class
OpRegist
erHelpe
r
{
class
OpRegist
rar
:
public
Registra
r
{
public:
public:
explicit
OpRegist
erHelpe
r
(
const
char
*
op_type
)
{
explicit
OpRegist
ra
r
(
const
char
*
op_type
)
{
OpRegistry
::
RegisterOp
<
OpType
,
ProtoMakerType
>
(
op_type
);
OpRegistry
::
RegisterOp
<
OpType
,
ProtoMakerType
>
(
op_type
);
}
}
};
};
template
<
typename
GradOpType
>
template
<
typename
GradOpType
>
class
GradOpRegist
erHelpe
r
{
class
GradOpRegist
rar
:
public
Registra
r
{
public:
public:
GradOpRegist
erHelpe
r
(
const
char
*
op_type
,
const
char
*
grad_op_type
)
{
GradOpRegist
ra
r
(
const
char
*
op_type
,
const
char
*
grad_op_type
)
{
OpRegistry
::
RegisterGradOp
<
GradOpType
>
(
op_type
,
grad_op_type
);
OpRegistry
::
RegisterGradOp
<
GradOpType
>
(
op_type
,
grad_op_type
);
}
}
};
};
template
<
typename
PlaceType
,
typename
KernelType
>
class
OpKernelRegistrar
:
public
Registrar
{
public:
explicit
OpKernelRegistrar
(
const
char
*
op_type
)
{
::
paddle
::
framework
::
OperatorWithKernel
::
OpKernelKey
key
;
key
.
place_
=
PlaceType
();
::
paddle
::
framework
::
OperatorWithKernel
::
AllOpKernels
()[
op_type
][
key
].
reset
(
new
KernelType
);
}
};
int
TouchRegistrar
(
const
Registrar
&
registrar
)
{
return
0
;
}
/**
/**
* check if MACRO is used in GLOBAL NAMESPACE.
* check if MACRO is used in GLOBAL NAMESPACE.
*/
*/
...
@@ -335,71 +350,57 @@ class GradOpRegisterHelper {
...
@@ -335,71 +350,57 @@ class GradOpRegisterHelper {
/**
/**
* Macro to Register Operator.
* Macro to Register Operator.
*/
*/
#define REGISTER_OP(__op_type, __op_class, __op_maker_class) \
#define REGISTER_OP(op_type, op_class, op_maker_class) \
STATIC_ASSERT_GLOBAL_NAMESPACE(__reg_op__##__op_type, \
STATIC_ASSERT_GLOBAL_NAMESPACE( \
"REGISTER_OP must be in global namespace"); \
__reg_op__##op_type, "REGISTER_OP must be called in global namespace"); \
static ::paddle::framework::OpRegisterHelper<__op_class, __op_maker_class> \
static ::paddle::framework::OpRegistrar<op_class, op_maker_class> \
__op_register_##__op_type##__(#__op_type); \
__op_registrar_##op_type##__(#op_type);
int __op_register_##__op_type##_handle__() { return 0; }
/**
/**
* Macro to Register Gradient Operator.
* Macro to Register Gradient Operator.
*/
*/
#define REGISTER_GRADIENT_OP(
__op_type, __grad_op_type, __grad_op_class)
\
#define REGISTER_GRADIENT_OP(
op_type, grad_op_type, grad_op_class)
\
STATIC_ASSERT_GLOBAL_NAMESPACE( \
STATIC_ASSERT_GLOBAL_NAMESPACE( \
__reg_gradient_op__##__op_type##__grad_op_type, \
__reg_gradient_op__##op_type##_##grad_op_type, \
"REGISTER_GRADIENT_OP must be in global namespace"); \
"REGISTER_GRADIENT_OP must be called in global namespace"); \
static ::paddle::framework::GradOpRegisterHelper<__grad_op_class> \
static ::paddle::framework::GradOpRegistrar<grad_op_class> \
__op_gradient_register_##__op_type##__grad_op_type##__(#__op_type, \
__op_gradient_register_##op_type##_##grad_op_type##__(#op_type, \
#__grad_op_type); \
#grad_op_type);
int __op_gradient_register_##__op_type##__grad_op_type##_handle__() { \
return 0; \
}
/**
/**
* Macro to
Forbid user register Gradient Operator
.
* Macro to
Register OperatorKernel
.
*/
*/
#define
NO_GRADIENT(__op_type)
\
#define
REGISTER_OP_KERNEL(op_type, DEVICE_TYPE, place_class, kernel_class)
\
STATIC_ASSERT_GLOBAL_NAMESPACE( \
STATIC_ASSERT_GLOBAL_NAMESPACE( \
__reg_gradient_op__##__op_type##__op_type##_grad, \
__reg_op_kernel_##op_type##_##DEVICE_TYPE##__, \
"NO_GRADIENT must be in global namespace")
"REGISTER_OP_KERNEL must be called in global namespace"); \
static ::paddle::framework::OpKernelRegistrar<place_class, kernel_class> \
__op_kernel_registrar_##op_type##_##DEVICE_TYPE##__(#op_type);
/**
/**
* Macro to
Register OperatorKernel
.
* Macro to
Forbid user register Gradient Operator
.
*/
*/
#define
REGISTER_OP_KERNEL(type, DEVICE_TYPE, PlaceType, ...)
\
#define
NO_GRADIENT(op_type)
\
STATIC_ASSERT_GLOBAL_NAMESPACE( \
STATIC_ASSERT_GLOBAL_NAMESPACE( \
__reg_op_kernel_##type##_##DEVICE_TYPE##__, \
__reg_gradient_op__##op_type##_##op_type##_grad, \
"REGISTER_OP_KERNEL must be in global namespace"); \
"NO_GRADIENT must be called in global namespace")
struct __op_kernel_register__##type##__##DEVICE_TYPE##__ { \
__op_kernel_register__##type##__##DEVICE_TYPE##__() { \
#define REGISTER_OP_GPU_KERNEL(op_type, kernel_class) \
::paddle::framework::OperatorWithKernel::OpKernelKey key; \
REGISTER_OP_KERNEL(op_type, GPU, ::paddle::platform::GPUPlace, kernel_class)
key.place_ = PlaceType(); \
::paddle::framework::OperatorWithKernel::AllOpKernels()[#type][key] \
#define REGISTER_OP_CPU_KERNEL(op_type, kernel_class) \
.reset(new __VA_ARGS__()); \
REGISTER_OP_KERNEL(op_type, CPU, ::paddle::platform::CPUPlace, kernel_class)
} \
}; \
static __op_kernel_register__##type##__##DEVICE_TYPE##__ \
__reg_kernel_##type##__##DEVICE_TYPE##__; \
int __op_kernel_register_##type##_handle_##DEVICE_TYPE##__() { return 0; }
// (type, KernelType)
#define REGISTER_OP_GPU_KERNEL(type, ...) \
REGISTER_OP_KERNEL(type, GPU, ::paddle::platform::GPUPlace, __VA_ARGS__)
// (type, KernelType)
#define REGISTER_OP_CPU_KERNEL(type, ...) \
REGISTER_OP_KERNEL(type, CPU, ::paddle::platform::CPUPlace, __VA_ARGS__)
/**
/**
* Macro to mark what Operator and Kernel we will use and tell the compiler to
* Macro to mark what Operator and Kernel we will use and tell the compiler to
* link them into target.
* link them into target.
*/
*/
#define USE_OP_
WITHOUT_KERNEL(op_type)
\
#define USE_OP_
ITSELF(op_type)
\
STATIC_ASSERT_GLOBAL_NAMESPACE( \
STATIC_ASSERT_GLOBAL_NAMESPACE( \
__use_op_without_kernel_##op_type, \
__use_op_itself_##op_type, \
"USE_OP_WITHOUT_KERNEL must be in global namespace"); \
"USE_OP_ITSELF must be called in global namespace"); \
extern int __op_register_##op_type##_handle__(); \
extern ::paddle::framework::OpRegistrar<op_class, op_maker_class> \
__op_registrar_##op_type##__; \
static int __use_op_ptr_##op_type##_without_kernel__ \
static int __use_op_ptr_##op_type##_without_kernel__ \
__attribute__((unused)) = __op_register_##op_type##_handle__()
__attribute__((unused)) = __op_register_##op_type##_handle__()
...
@@ -414,7 +415,7 @@ class GradOpRegisterHelper {
...
@@ -414,7 +415,7 @@ class GradOpRegisterHelper {
// use Operator with only cpu kernel.
// use Operator with only cpu kernel.
#define USE_OP_CPU(op_type) \
#define USE_OP_CPU(op_type) \
USE_OP_
WITHOUT_KERNEL(op_type);
\
USE_OP_
ITSELF(op_type);
\
USE_OP_KERNEL(op_type, CPU)
USE_OP_KERNEL(op_type, CPU)
#ifdef PADDLE_ONLY_CPU
#ifdef PADDLE_ONLY_CPU
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录