Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
5ad9474b
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
提交
5ad9474b
编写于
7月 24, 2017
作者:
D
dongzhihong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add random op
上级
a6043c1d
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
82 addition
and
0 deletion
+82
-0
paddle/operators/CMakeLists.txt
paddle/operators/CMakeLists.txt
+1
-0
paddle/operators/random_op.cc
paddle/operators/random_op.cc
+46
-0
paddle/operators/random_op.cu
paddle/operators/random_op.cu
+6
-0
paddle/operators/random_op.h
paddle/operators/random_op.h
+29
-0
未找到文件。
paddle/operators/CMakeLists.txt
浏览文件 @
5ad9474b
...
...
@@ -48,6 +48,7 @@ op_library(mul_op SRCS mul_op.cc mul_op.cu)
op_library
(
rowwise_add_op SRCS rowwise_add_op.cu rowwise_add_op.cc
)
op_library
(
sigmoid_op SRCS sigmoid_op.cu sigmoid_op.cc
)
op_library
(
softmax_op SRCS softmax_op.cc softmax_op.cu
)
op_library
(
random_op SRCS random_op.cc random_op.cu
)
op_library
(
fc_op SRCS fc_op.cc DEPS mul_op rowwise_add_op sigmoid_op
softmax_op net
)
...
...
paddle/operators/random_op.cc
0 → 100644
浏览文件 @
5ad9474b
#include "paddle/operators/random_op.h"
#include "paddle/framework/op_registry.h"
namespace
paddle
{
namespace
operators
{
class
RandomOp
:
public
framework
::
OperatorWithKernel
{
protected:
void
InferShape
(
const
std
::
vector
<
const
framework
::
Tensor
*>&
inputs
,
const
std
::
vector
<
framework
::
Tensor
*>&
outputs
)
const
override
{
PADDLE_ENFORCE
(
inputs
.
size
()
==
0
,
"Input size of RandomOp must be zero."
);
PADDLE_ENFORCE
(
outputs
.
size
()
==
1
,
"Output size of RandomOp must be one."
);
PADDLE_ENFORCE
(
inputs
[
0
]
!=
nullptr
&&
outputs
[
0
]
!=
nullptr
,
"Inputs/Outputs of RandomOp must all be set."
);
outputs
[
0
]
->
set_dims
(
inputs
[
0
]
->
dims
());
}
};
class
RandomOpMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
public:
RandomOpMaker
(
framework
::
OpProto
*
proto
,
framework
::
OpAttrChecker
*
op_checker
)
:
framework
::
OpProtoAndCheckerMaker
(
proto
,
op_checker
)
{
AddAttr
<
std
::
vector
<
int
>>
(
"Shape"
,
"The shape of matrix to be randomized"
);
AddAttr
<
float
>
(
"seed"
,
"random seed generator."
).
SetDefault
(
1337
);
AddAttr
<
float
>
(
"mean"
,
"mean value of random."
).
SetDefault
(
.0
);
AddAttr
<
float
>
(
"std"
,
"minimum value of random value"
)
.
SetDefault
(
1.0
)
.
LargerThan
(
.0
);
AddOutput
(
"Out"
,
"output matrix of random op"
);
AddComment
(
R"DOC(
Random Operator fill a matrix in normal distribution.
The eqution : Out = Random(Shape=(d0, d1, ...), Dtype, mean, std)
)DOC"
);
}
};
}
// namespace operators
}
// namespace paddle
REGISTER_OP
(
random_op
,
paddle
::
operators
::
RandomOp
,
paddle
::
operators
::
RandomOpMaker
);
typedef
paddle
::
operators
::
RandomOpKernel
<
paddle
::
platform
::
CPUPlace
,
float
>
RandomOpKernel_CPU_float
;
REGISTER_OP_CPU_KERNEL
(
random_op
,
RandomOpKernel_CPU_float
);
paddle/operators/random_op.cu
0 → 100644
浏览文件 @
5ad9474b
#include "paddle/operators/random_op.h"
#include "paddle/framework/op_registry.h"
typedef
paddle
::
operators
::
RandomOpKernel
<
paddle
::
platform
::
GPUPlace
,
float
>
RandomOpKernel_GPU_float
;
REGISTER_OP_GPU_KERNEL
(
random_op
,
RandomOpKernel_GPU_float
);
\ No newline at end of file
paddle/operators/random_op.h
0 → 100644
浏览文件 @
5ad9474b
#pragma once
#include <random>
#include "glog/logging.h"
#include "paddle/framework/eigen.h"
#include "paddle/framework/operator.h"
namespace
paddle
{
namespace
operators
{
template
<
typename
Place
,
typename
T
>
class
RandomOpKernel
:
public
framework
::
OpKernel
{
public:
void
Compute
(
const
framework
::
KernelContext
&
context
)
const
override
{
auto
*
output
=
context
.
Output
(
0
)
->
GetMutable
<
framework
::
Tensor
>
();
output
->
mutable_data
<
T
>
(
context
.
GetPlace
());
auto
shape
=
context
.
op_
.
attrs_
.
at
(
"Shape"
);
auto
mean
=
context
.
op_
.
attrs_
.
at
(
"mean"
);
auto
std
=
context
.
op_
.
attrs_
.
at
(
"std"
);
auto
seed
=
context
.
op_
.
attrs_
.
at
(
"seed"
);
// std::default_random_engine generator(seed);
// std::normal_distribution<double> distribution(mean, std);
framework
::
EigenMatrix
<
T
>::
From
(
*
output
).
device
(
*
(
context
.
GetEigenDevice
<
Place
>
()))
=
framework
::
EigenMatrix
<
T
>::
Random
();
}
};
}
// namespace operators
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录