gaussian_random_op.cc 3.8 KB
Newer Older
D
dongzhihong 已提交
1 2 3 4 5 6 7 8 9 10 11
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
   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. */

Q
qijun 已提交
12 13
#include <random>
#include "paddle/framework/op_registry.h"
D
dongzhihong 已提交
14 15 16

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

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

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

D
dongzhihong 已提交
41
class GaussianRandomOp : public framework::OperatorWithKernel {
Y
Yu Yang 已提交
42 43
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;
44

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

59
 protected:
Y
Yu Yang 已提交
60
  framework::OpKernelType GetKernelType(
Y
Yu Yang 已提交
61
      const framework::ExecutionContext& ctx) const override {
Y
Yu Yang 已提交
62 63 64
    return framework::OpKernelType(
        static_cast<framework::DataType>(ctx.Attr<int>("data_type")),
        ctx.device_context());
Y
Yu Yang 已提交
65
  }
D
dongzhihong 已提交
66 67
};

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

K
kexinzhao 已提交
75 76 77 78 79 80 81 82 83 84 85
    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 已提交
86
    AddAttr<int>("seed",
K
kexinzhao 已提交
87
                 "(int, default 0) "
Q
qijun 已提交
88
                 "Random seed of generator."
K
kexinzhao 已提交
89
                 "0 means use system wide seed.")
Q
qijun 已提交
90
        .SetDefault(0);
K
kexinzhao 已提交
91 92 93
    AddAttr<int>("data_type",
                 "(int, default 5(FP32)) "
                 "Output data type.")
Y
Yu Yang 已提交
94
        .SetDefault(framework::DataType::FP32);
K
kexinzhao 已提交
95 96 97 98 99 100 101

    AddComment(R"DOC(
GaussianRandom Operator.

Used to initialize tensors with gaussian random generator.

)DOC");
D
dongzhihong 已提交
102 103 104 105 106 107
  }
};

}  // namespace operators
}  // namespace paddle

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