Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
6fcdc916
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看板
提交
6fcdc916
编写于
9月 02, 2017
作者:
Q
qiaolongfei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add op() to InferShapeContext
上级
fc8a1afa
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
21 addition
and
16 deletion
+21
-16
paddle/framework/operator.h
paddle/framework/operator.h
+5
-0
paddle/framework/operator_test.cc
paddle/framework/operator_test.cc
+6
-6
paddle/operators/gaussian_random_op.cc
paddle/operators/gaussian_random_op.cc
+3
-3
paddle/operators/mul_op.cc
paddle/operators/mul_op.cc
+2
-2
paddle/operators/scale_op.h
paddle/operators/scale_op.h
+1
-1
paddle/operators/sgd_op.h
paddle/operators/sgd_op.h
+1
-1
paddle/operators/uniform_random_op.cc
paddle/operators/uniform_random_op.cc
+3
-3
未找到文件。
paddle/framework/operator.h
浏览文件 @
6fcdc916
...
...
@@ -229,6 +229,10 @@ class InferShapeContext {
InferShapeContext
(
const
OperatorBase
&
op
,
const
Scope
&
scope
)
:
op_
(
op
),
scope_
(
scope
)
{}
const
OperatorBase
&
op
()
const
{
return
op_
;
}
const
Scope
&
scope
()
const
{
return
scope_
;
}
size_t
InputSize
(
const
std
::
string
&
name
)
const
{
return
op_
.
Inputs
(
name
).
size
();
}
...
...
@@ -312,6 +316,7 @@ class InferShapeContext {
return
res
;
}
private:
const
OperatorBase
&
op_
;
const
Scope
&
scope_
;
};
...
...
paddle/framework/operator_test.cc
浏览文件 @
6fcdc916
...
...
@@ -122,10 +122,10 @@ class CPUKernelTest : public OpKernel {
public:
void
Compute
(
const
ExecutionContext
&
ctx
)
const
{
std
::
cout
<<
"this is cpu kernel"
<<
std
::
endl
;
std
::
cout
<<
ctx
.
op
_
.
DebugString
()
<<
std
::
endl
;
std
::
cout
<<
ctx
.
op
()
.
DebugString
()
<<
std
::
endl
;
cpu_kernel_run_num
++
;
ASSERT_EQ
(
ctx
.
op
_
.
Input
(
"x"
),
"IN1"
);
ASSERT_EQ
(
ctx
.
op
_
.
Output
(
"y"
),
"OUT1"
);
ASSERT_EQ
(
ctx
.
op
()
.
Input
(
"x"
),
"IN1"
);
ASSERT_EQ
(
ctx
.
op
()
.
Output
(
"y"
),
"OUT1"
);
}
};
...
...
@@ -148,7 +148,7 @@ class OpKernelTestMultiInputsProtoAndCheckerMaker
class
CPUKernalMultiInputsTest
:
public
OpKernel
{
public:
void
Compute
(
const
ExecutionContext
&
ctx
)
const
{
auto
xs
=
ctx
.
op
_
.
Inputs
(
"xs"
);
auto
xs
=
ctx
.
op
()
.
Inputs
(
"xs"
);
ASSERT_EQ
(
xs
.
size
(),
3UL
);
ASSERT_EQ
(
xs
[
0
],
"x0"
);
ASSERT_EQ
(
xs
[
1
],
"x1"
);
...
...
@@ -172,10 +172,10 @@ class CPUKernalMultiInputsTest : public OpKernel {
auto
outTensor0
=
ctx
.
MultiOutput
<
Tensor
>
(
"ys"
);
ASSERT_EQ
(
outTensor0
.
size
(),
2U
);
auto
k
=
ctx
.
op
_
.
Input
(
"k"
);
auto
k
=
ctx
.
op
()
.
Input
(
"k"
);
ASSERT_EQ
(
k
,
"k0"
);
auto
ys
=
ctx
.
op
_
.
Outputs
(
"ys"
);
auto
ys
=
ctx
.
op
()
.
Outputs
(
"ys"
);
ASSERT_EQ
(
ys
.
size
(),
2UL
);
ASSERT_EQ
(
ys
[
0
],
"y0"
);
ASSERT_EQ
(
ys
[
1
],
"y1"
);
...
...
paddle/operators/gaussian_random_op.cc
浏览文件 @
6fcdc916
...
...
@@ -19,13 +19,13 @@ template <typename T>
class
CPUGaussianRandomKernel
:
public
framework
::
OpKernel
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
override
{
float
mean
=
context
.
op
_
.
GetAttr
<
float
>
(
"mean"
);
float
std
=
context
.
op
_
.
GetAttr
<
float
>
(
"std"
);
float
mean
=
context
.
op
()
.
GetAttr
<
float
>
(
"mean"
);
float
std
=
context
.
op
()
.
GetAttr
<
float
>
(
"std"
);
auto
*
tensor
=
context
.
Output
<
framework
::
Tensor
>
(
"Out"
);
T
*
data
=
tensor
->
mutable_data
<
T
>
(
context
.
GetPlace
());
unsigned
int
seed
=
static_cast
<
unsigned
int
>
(
context
.
op
_
.
GetAttr
<
int
>
(
"seed"
));
static_cast
<
unsigned
int
>
(
context
.
op
()
.
GetAttr
<
int
>
(
"seed"
));
std
::
minstd_rand
engine
;
if
(
seed
==
0
)
{
seed
=
std
::
random_device
()();
...
...
paddle/operators/mul_op.cc
浏览文件 @
6fcdc916
...
...
@@ -29,10 +29,10 @@ class MulOp : public framework::OperatorWithKernel {
auto
dim1
=
ctx
.
Input
<
Tensor
>
(
"Y"
)
->
dims
();
PADDLE_ENFORCE_EQ
(
dim0
.
size
(),
2
,
"input X(%s) should be a tensor with 2 dims, a matrix"
,
ctx
.
op
_
.
Input
(
"X"
));
ctx
.
op
()
.
Input
(
"X"
));
PADDLE_ENFORCE_EQ
(
dim1
.
size
(),
2
,
"input Y(%s) should be a tensor with 2 dims, a matrix"
,
ctx
.
op
_
.
Input
(
"Y"
));
ctx
.
op
()
.
Input
(
"Y"
));
PADDLE_ENFORCE_EQ
(
dim0
[
1
],
dim1
[
0
],
"First matrix's width must be equal with second matrix's height."
);
...
...
paddle/operators/scale_op.h
浏览文件 @
6fcdc916
...
...
@@ -27,7 +27,7 @@ class ScaleKernel : public framework::OpKernel {
auto
*
in
=
context
.
Input
<
framework
::
Tensor
>
(
"X"
);
tensor
->
mutable_data
<
T
>
(
in
->
place
());
auto
scale
=
static_cast
<
T
>
(
context
.
op
_
.
GetAttr
<
AttrType
>
(
"scale"
));
auto
scale
=
static_cast
<
T
>
(
context
.
op
()
.
GetAttr
<
AttrType
>
(
"scale"
));
auto
eigen_out
=
framework
::
EigenVector
<
T
>::
Flatten
(
*
tensor
);
auto
eigen_in
=
framework
::
EigenVector
<
T
>::
Flatten
(
*
in
);
...
...
paddle/operators/sgd_op.h
浏览文件 @
6fcdc916
...
...
@@ -31,7 +31,7 @@ class SGDOpKernel : public framework::OpKernel {
auto
param
=
ctx
.
Input
<
Tensor
>
(
"param"
);
auto
grad
=
ctx
.
Input
<
Tensor
>
(
"grad"
);
auto
param_out
=
ctx
.
Output
<
Tensor
>
(
"param_out"
);
float
lr
=
ctx
.
op
_
.
GetAttr
<
float
>
(
"learning_rate"
);
float
lr
=
ctx
.
op
()
.
GetAttr
<
float
>
(
"learning_rate"
);
param_out
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
...
...
paddle/operators/uniform_random_op.cc
浏览文件 @
6fcdc916
...
...
@@ -27,15 +27,15 @@ class CPUUniformRandomKernel : public framework::OpKernel {
auto
*
tensor
=
context
.
Output
<
framework
::
Tensor
>
(
"Out"
);
T
*
data
=
tensor
->
mutable_data
<
T
>
(
context
.
GetPlace
());
unsigned
int
seed
=
static_cast
<
unsigned
int
>
(
context
.
op
_
.
GetAttr
<
int
>
(
"seed"
));
static_cast
<
unsigned
int
>
(
context
.
op
()
.
GetAttr
<
int
>
(
"seed"
));
std
::
minstd_rand
engine
;
if
(
seed
==
0
)
{
seed
=
std
::
random_device
()();
}
engine
.
seed
(
seed
);
std
::
uniform_real_distribution
<
T
>
dist
(
static_cast
<
T
>
(
context
.
op
_
.
GetAttr
<
float
>
(
"min"
)),
static_cast
<
T
>
(
context
.
op
_
.
GetAttr
<
float
>
(
"max"
)));
static_cast
<
T
>
(
context
.
op
()
.
GetAttr
<
float
>
(
"min"
)),
static_cast
<
T
>
(
context
.
op
()
.
GetAttr
<
float
>
(
"max"
)));
ssize_t
size
=
framework
::
product
(
tensor
->
dims
());
for
(
ssize_t
i
=
0
;
i
<
size
;
++
i
)
{
data
[
i
]
=
dist
(
engine
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录