gaussian_random_op.cc 3.8 KB
Newer Older
D
dongzhihong 已提交
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
L
Luo Tao 已提交
2 3 4 5 6 7 8 9 10 11 12 13

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
D
dongzhihong 已提交
14

Q
qijun 已提交
15 16
#include <random>
#include "paddle/framework/op_registry.h"
D
dongzhihong 已提交
17 18 19

namespace paddle {
namespace operators {
D
dongzhihong 已提交
20

Q
qijun 已提交
21
template <typename T>
Y
Yu Yang 已提交
22
class CPUGaussianRandomKernel : public framework::OpKernel<T> {
Q
qijun 已提交
23 24
 public:
  void Compute(const framework::ExecutionContext& context) const override {
Y
Yu Yang 已提交
25 26
    float mean = context.Attr<float>("mean");
    float std = context.Attr<float>("std");
Q
qijun 已提交
27 28 29
    auto* tensor = context.Output<framework::Tensor>("Out");
    T* data = tensor->mutable_data<T>(context.GetPlace());

Y
Yu Yang 已提交
30
    unsigned int seed = static_cast<unsigned int>(context.Attr<int>("seed"));
Q
qijun 已提交
31 32 33 34 35 36
    std::minstd_rand engine;
    if (seed == 0) {
      seed = std::random_device()();
    }
    engine.seed(seed);
    std::normal_distribution<T> dist(mean, std);
37
    int64_t size = tensor->numel();
Q
qijun 已提交
38
    for (int64_t i = 0; i < size; ++i) {
Q
qijun 已提交
39 40 41 42 43
      data[i] = dist(engine);
    }
  }
};

D
dongzhihong 已提交
44
class GaussianRandomOp : public framework::OperatorWithKernel {
Y
Yu Yang 已提交
45 46
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;
47

48
  void InferShape(framework::InferShapeContext* ctx) const override {
Q
Qiao Longfei 已提交
49 50
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
                   "Output(Out) of GaussianRandomOp should not be null.");
51
    auto shape = ctx->Attrs().Get<std::vector<int>>("shape");
Q
qijun 已提交
52
    std::vector<int64_t> temp;
53 54
    temp.reserve(shape.size());
    for (auto dim : shape) {
Q
qijun 已提交
55 56
      temp.push_back(static_cast<int64_t>(dim));
    }
57 58
    PADDLE_ENFORCE(shape.size() > 0UL,
                   "shape can be one int or array. shape must be set.");
Q
Qiao Longfei 已提交
59
    ctx->SetOutputDim("Out", framework::make_ddim(temp));
D
dongzhihong 已提交
60
  }
Y
Yu Yang 已提交
61

62
 protected:
Q
Qiao Longfei 已提交
63
  framework::OpKernelType GetActualKernelType(
Y
Yu Yang 已提交
64
      const framework::ExecutionContext& ctx) const override {
Y
Yu Yang 已提交
65
    return framework::OpKernelType(
66
        static_cast<framework::proto::DataType>(ctx.Attr<int>("dtype")),
Y
Yu Yang 已提交
67
        ctx.device_context());
Y
Yu Yang 已提交
68
  }
D
dongzhihong 已提交
69 70
};

D
dongzhihong 已提交
71
class GaussianRandomOpMaker : public framework::OpProtoAndCheckerMaker {
D
dongzhihong 已提交
72
 public:
73
  GaussianRandomOpMaker(OpProto* proto, OpAttrChecker* op_checker)
D
dongzhihong 已提交
74
      : framework::OpProtoAndCheckerMaker(proto, op_checker) {
K
kexinzhao 已提交
75
    AddOutput("Out", "Output matrix of gaussian random op");
76

K
kexinzhao 已提交
77 78 79 80 81 82 83 84 85 86 87
    AddAttr<std::vector<int>>("shape",
                              "(vector<int>) "
                              "The dimension of random tensor.");
    AddAttr<float>("mean",
                   "(float, default 0.0) "
                   "mean of random tensor.")
        .SetDefault(.0f);
    AddAttr<float>("std",
                   "(float, default 1.0) "
                   "std of random tensor.")
        .SetDefault(1.0f);
Q
qijun 已提交
88
    AddAttr<int>("seed",
K
kexinzhao 已提交
89
                 "(int, default 0) "
Q
qijun 已提交
90
                 "Random seed of generator."
K
kexinzhao 已提交
91
                 "0 means use system wide seed.")
Q
qijun 已提交
92
        .SetDefault(0);
F
fengjiayi 已提交
93
    AddAttr<int>("dtype",
K
kexinzhao 已提交
94 95
                 "(int, default 5(FP32)) "
                 "Output data type.")
96
        .SetDefault(framework::proto::DataType::FP32);
K
kexinzhao 已提交
97 98 99 100 101 102 103

    AddComment(R"DOC(
GaussianRandom Operator.

Used to initialize tensors with gaussian random generator.

)DOC");
D
dongzhihong 已提交
104 105 106 107 108 109
  }
};

}  // namespace operators
}  // namespace paddle

110
namespace ops = paddle::operators;
F
fengjiayi 已提交
111 112
REGISTER_OP_WITHOUT_GRADIENT(gaussian_random, ops::GaussianRandomOp,
                             ops::GaussianRandomOpMaker);
Q
qijun 已提交
113
REGISTER_OP_CPU_KERNEL(gaussian_random, ops::CPUGaussianRandomKernel<float>);