uniform_random_op.cc 4.1 KB
Newer Older
Y
Yu Yang 已提交
1 2
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

L
Luo Tao 已提交
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. */
Q
qijun 已提交
14 15
#include "paddle/framework/op_registry.h"
#include "paddle/framework/operator.h"
Y
Yu Yang 已提交
16 17 18

namespace paddle {
namespace operators {
Y
Yu Yang 已提交
19

Q
qijun 已提交
20 21 22 23
// It seems that Eigen::Tensor::random in GPU will SEGFAULT.
// Use std::random and thrust::random(thrust is a std library in CUDA) to
// implement uniform random.
template <typename T>
Y
Yu Yang 已提交
24
class CPUUniformRandomKernel : public framework::OpKernel<T> {
Q
qijun 已提交
25
 public:
Q
Qiao Longfei 已提交
26 27 28 29
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* tensor = ctx.Output<framework::Tensor>("Out");
    T* data = tensor->mutable_data<T>(ctx.GetPlace());
    unsigned int seed = static_cast<unsigned int>(ctx.Attr<int>("seed"));
Q
qijun 已提交
30 31 32 33 34 35
    std::minstd_rand engine;
    if (seed == 0) {
      seed = std::random_device()();
    }
    engine.seed(seed);
    std::uniform_real_distribution<T> dist(
Q
Qiao Longfei 已提交
36 37
        static_cast<T>(ctx.Attr<float>("min")),
        static_cast<T>(ctx.Attr<float>("max")));
38
    int64_t size = tensor->numel();
Q
qijun 已提交
39
    for (int64_t i = 0; i < size; ++i) {
Q
qijun 已提交
40 41 42 43 44
      data[i] = dist(engine);
    }
  }
};

Y
Yu Yang 已提交
45
class UniformRandomOp : public framework::OperatorWithKernel {
Y
Yu Yang 已提交
46 47 48
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

49
  void InferShape(framework::InferShapeContext* ctx) const override {
Q
Qiao Longfei 已提交
50 51
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
                   "Output(Out) of UniformRandomOp should not be null.");
52

Q
Qiao Longfei 已提交
53 54 55
    PADDLE_ENFORCE(
        ctx->Attrs().Get<float>("min") < ctx->Attrs().Get<float>("max"),
        "uniform_random's min must less then max");
Q
QI JUN 已提交
56
    auto& shape = ctx->Attrs().Get<std::vector<int>>("shape");
Q
qijun 已提交
57
    std::vector<int64_t> temp;
Q
QI JUN 已提交
58 59
    temp.reserve(shape.size());
    for (auto dim : shape) {
Q
qijun 已提交
60 61
      temp.push_back(static_cast<int64_t>(dim));
    }
Q
Qiao Longfei 已提交
62
    ctx->SetOutputDim("Out", framework::make_ddim(temp));
Y
Yu Yang 已提交
63
  }
Y
Yu Yang 已提交
64

65
 protected:
66
  framework::OpKernelType GetExpectedKernelType(
Y
Yu Yang 已提交
67
      const framework::ExecutionContext& ctx) const override {
Y
Yu Yang 已提交
68
    return framework::OpKernelType(
69
        static_cast<framework::proto::DataType>(ctx.Attr<int>("dtype")),
Q
QI JUN 已提交
70
        ctx.GetPlace());
Y
Yu Yang 已提交
71
  }
Y
Yu Yang 已提交
72 73
};

Y
Yu Yang 已提交
74
class UniformRandomOpMaker : public framework::OpProtoAndCheckerMaker {
Y
Yu Yang 已提交
75
 public:
76
  UniformRandomOpMaker(OpProto* proto, OpAttrChecker* op_checker)
Y
Yu Yang 已提交
77
      : framework::OpProtoAndCheckerMaker(proto, op_checker) {
78 79 80 81 82 83 84
    AddOutput("Out", "(Tensor) The output tensor of uniform random op");
    AddComment(R"DOC(
Uniform random operator.

This operator initializes a tensor with random values sampled from a 
uniform distribution.

Y
Yu Yang 已提交
85
)DOC");
86 87 88 89 90 91 92 93 94 95
    AddAttr<std::vector<int>>("shape",
                              "(vector<int>) The shape of the output tensor");
    AddAttr<float>("min",
                   "(float, default -1.0) "
                   "Minimum value of uniform random")
        .SetDefault(-1.0f);
    AddAttr<float>("max",
                   "(float, default 1.0) "
                   "Maximun value of uniform random")
        .SetDefault(1.0f);
Q
qijun 已提交
96
    AddAttr<int>("seed",
97 98 99
                 "(int, default 0) "
                 "Random seed used for generating samples. "
                 "0 means use a seed generated by the system.")
Q
qijun 已提交
100
        .SetDefault(0);
F
fengjiayi 已提交
101
    AddAttr<int>("dtype", "(int, default 5(FP32)) Output tensor data type")
102
        .SetDefault(framework::proto::DataType::FP32);
Y
Yu Yang 已提交
103 104 105 106 107
  }
};
}  // namespace operators
}  // namespace paddle

F
fengjiayi 已提交
108 109
REGISTER_OP_WITHOUT_GRADIENT(uniform_random, paddle::operators::UniformRandomOp,
                             paddle::operators::UniformRandomOpMaker);
Q
qijun 已提交
110
REGISTER_OP_CPU_KERNEL(uniform_random,
111 112
                       paddle::operators::CPUUniformRandomKernel<float>,
                       paddle::operators::CPUUniformRandomKernel<double>);