truncated_gaussian_random_op.cc 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

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. */

15 16
#include "paddle/fluid/operators/truncated_gaussian_random_op.h"

17 18
#include <limits>
#include <random>
19
#include <vector>
L
Leo Chen 已提交
20

21
#include "paddle/fluid/framework/infershape_utils.h"
22
#include "paddle/fluid/framework/op_registry.h"
23
#include "paddle/phi/core/generator.h"
24
#include "paddle/phi/infermeta/nullary.h"
25 26 27 28 29 30 31 32 33

namespace paddle {
namespace operators {

class TruncatedGaussianRandomOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
34
  phi::KernelKey GetExpectedKernelType(
35
      const framework::ExecutionContext& ctx) const override {
36
    return phi::KernelKey(
37
        static_cast<framework::proto::VarType::Type>(ctx.Attr<int>("dtype")),
38
        ctx.GetPlace());
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  }
};

class TruncatedGaussianRandomOpMaker
    : public framework::OpProtoAndCheckerMaker {
 public:
  void Make() override {
    AddOutput("Out", "Output tensor of truncated gaussian random op.");

    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);
    AddAttr<int>("seed",
                 "(int, default 0) "
                 "Random seed of generator."
                 "0 means use system wide seed."
                 "Note that if seed is not 0, this operator will always "
                 "generate the same random numbers every time.")
        .SetDefault(0);
    AddAttr<int>("dtype",
                 "(int, default 5(FP32)) "
                 "Output data type.")
        .SetDefault(framework::proto::VarType::FP32);
    AddComment(R"DOC(
TruncatedGaussianRandom Operator.

Used to initialize tensors with truncated gaussian random generator.

)DOC");
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
83 84

DECLARE_INFER_SHAPE_FUNCTOR(
85 86
    truncated_gaussian_random,
    TruncatedGaussianRandomInferShapeFunctor,
87 88 89
    PD_INFER_META(phi::TruncatedGaussianRandomInferMeta));

REGISTER_OPERATOR(
90 91
    truncated_gaussian_random,
    ops::TruncatedGaussianRandomOp,
92 93 94 95
    ops::TruncatedGaussianRandomOpMaker,
    paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
    paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>,
    TruncatedGaussianRandomInferShapeFunctor);