random_op.cc 2.1 KB
Newer Older
D
dongzhihong 已提交
1 2 3 4 5
#include "paddle/operators/random_op.h"
#include "paddle/framework/op_registry.h"

namespace paddle {
namespace operators {
D
dongzhihong 已提交
6 7 8 9 10 11 12 13 14 15 16 17

using paddle::platform::GPUPlace;
template <GPUPlace, typename T, typename Generator>
bool Gaussian(
    Generator g, T* output, const int size, const T& mean, const T& std) {
  std::normal_distribution<double> distribution(mean, std);
  for (int i = 0; i < size; ++i) {
    output[i] = distribution(g());
  }
  return true;
}

D
dongzhihong 已提交
18 19 20 21 22 23 24 25 26
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.");
D
dongzhihong 已提交
27
    outputs[0]->set_dims(context.op_.attrs_.at("shape"));
D
dongzhihong 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  }
};

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);