Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
bc1459ce
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
bc1459ce
编写于
8月 09, 2017
作者:
F
fengjiayi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Unable macro `USE_OP_GRADIENT` temporarily
上级
f66d7868
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
30 addition
and
13 deletion
+30
-13
paddle/framework/op_registry.h
paddle/framework/op_registry.h
+28
-11
paddle/framework/pybind.cc
paddle/framework/pybind.cc
+1
-1
paddle/operators/sgd_op_test.cc
paddle/operators/sgd_op_test.cc
+1
-1
未找到文件。
paddle/framework/op_registry.h
浏览文件 @
bc1459ce
...
...
@@ -416,6 +416,12 @@ class OpKernelRegistrar : public Registrar {
static int use_op_itself_##op_type##_ __attribute__((unused)) = \
TouchOpRegistrar_##op_type()
// TODO(jiayi): Most ops' gradient op have not been compeleted. So we use
// `NO_GRAD` to disable micro USE_OP_GRADIENT(op_type). Otherwise the code can't
// be compiled. `NO_GRAD` should be removed after all gradient ops are
// compeleted.
#define NO_GRAD
#ifndef NO_GRAD
#define USE_OP_GRADIENT(op_type) \
STATIC_ASSERT_GLOBAL_NAMESPACE( \
__use_op_gradient_##op_type, \
...
...
@@ -423,28 +429,39 @@ class OpKernelRegistrar : public Registrar {
extern int TouchOpGradientRegistrar_##op_type(); \
static int use_op_gradient_##op_type##_ __attribute__((unused)) = \
TouchOpGradientRegistrar_##op_type()
#else
#define USE_OP_GRADIENT(op_type)
#endif
#define USE_OP_
KERNEL(op_type, DEVICE_TYPE)
\
#define USE_OP_
DEVICE_KERNEL(op_type, DEVICE_TYPE)
\
STATIC_ASSERT_GLOBAL_NAMESPACE( \
__use_op_kernel_##op_type##_##DEVICE_TYPE##__, \
"USE_OP_
KERNEL must be in global namespace");
\
"USE_OP_
DEVICE_KERNEL must be in global namespace");
\
extern int TouchOpKernelRegistrar_##op_type##_##DEVICE_TYPE(); \
static int use_op_kernel_##op_type##_##DEVICE_TYPE##_ \
__attribute__((unused)) = \
TouchOpKernelRegistrar_##op_type##_##DEVICE_TYPE()
#define USE_CPU_OP(op_type) \
USE_OP_ITSELF(op_type); \
USE_OP_KERNEL(op_type, CPU); \
USE_OP_GRADIENT(op_type)
#ifdef PADDLE_ONLY_CPU
#define USE_OP
(op_type) USE_CPU_OP(op_type
)
#define USE_OP
_KERNEL(op_type) USE_OP_DEVICE_KERNEL(op_type, CPU
)
#else
#define USE_OP
(op_type)
\
USE_
CPU_OP(op_type);
\
USE_OP_KERNEL(op_type, GPU)
#define USE_OP
_KERNEL(op_type)
\
USE_
OP_DEVICE_KERNEL(op_type, CPU);
\
USE_OP_
DEVICE_
KERNEL(op_type, GPU)
#endif
#define USE_NO_GRAD_OP(op_type) \
USE_OP_ITSELF(op_type); \
USE_OP_KERNEL(op_type)
#define USE_CPU_OP(op_type) \
USE_OP_ITSELF(op_type); \
USE_OP_DEVICE_KERNEL(op_type, CPU); \
USE_OP_GRADIENT(op_type)
#define USE_OP(op_type) \
USE_NO_GRAD_OP(op_type); \
USE_OP_GRADIENT(op_type)
}
// namespace framework
}
// namespace paddle
paddle/framework/pybind.cc
浏览文件 @
bc1459ce
...
...
@@ -31,7 +31,7 @@ namespace py = pybind11;
USE_OP
(
add_two
);
USE_CPU_OP
(
onehot_cross_entropy
);
USE_OP_ITSELF
(
fc
);
USE_OP
(
sgd
);
USE_
NO_GRAD_
OP
(
sgd
);
USE_OP
(
mul
);
USE_OP
(
mean
);
USE_OP
(
sigmoid
);
...
...
paddle/operators/sgd_op_test.cc
浏览文件 @
bc1459ce
...
...
@@ -14,7 +14,7 @@ limitations under the License. */
#include <gtest/gtest.h>
#include <paddle/framework/op_registry.h>
USE_OP
(
sgd
);
USE_
NO_GRAD_
OP
(
sgd
);
TEST
(
SGDOp
,
GetOpProto
)
{
auto
&
protos
=
paddle
::
framework
::
OpRegistry
::
protos
();
auto
it
=
protos
.
find
(
"sgd"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录