truncated_gaussian_random_op_npu.cc 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2021 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. */

#include "paddle/fluid/operators/truncated_gaussian_random_op.h"
#include <memory>
#include <string>
18
#include "paddle/fluid/framework/convert_utils.h"
19
#include "paddle/fluid/platform/device/npu/npu_op_runner.h"
20 21 22 23 24 25 26 27 28 29 30 31

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;

template <typename DeviceContext, typename T>
class TruncatedGaussianRandomNPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    // TODO(zhiqiu): support dynamic shape and call ParameterizedTruncatedNormal
    std::vector<int> shape = ctx.Attr<std::vector<int>>("shape");
32
    Tensor shape_tensor(experimental::DataType::INT32);
33 34
    shape_tensor.mutable_data<int32_t>({static_cast<int>(shape.size())},
                                       ctx.GetPlace());
35 36
    paddle::framework::TensorFromVector(shape, ctx.device_context(),
                                        &shape_tensor);
37
    float mean = ctx.Attr<float>("mean");
38
    Tensor mean_tensor(experimental::DataType::FLOAT32);
39
    mean_tensor.mutable_data<float>({1}, ctx.GetPlace());
40
    FillNpuTensorWithConstant<float>(&mean_tensor, mean);
41 42

    float std = ctx.Attr<float>("std");
43
    Tensor std_tensor(experimental::DataType::FLOAT32);
44
    std_tensor.mutable_data<float>({1}, ctx.GetPlace());
45
    FillNpuTensorWithConstant<float>(&std_tensor, std);
46 47 48

    int32_t seed_var = ctx.Attr<int32_t>("seed");

49
    Tensor min_tensor(experimental::DataType::FLOAT32);
50 51
    min_tensor.mutable_data<float>({1}, ctx.GetPlace());
    float min_value = mean - std * 2.0;
52
    FillNpuTensorWithConstant<float>(&min_tensor, min_value);
53

54
    Tensor max_tensor(experimental::DataType::FLOAT32);
55 56
    max_tensor.mutable_data<float>({1}, ctx.GetPlace());
    float max_value = mean + std * 2.0;
57
    FillNpuTensorWithConstant<float>(&max_tensor, max_value);
58 59 60 61 62 63

    auto* out = ctx.Output<framework::Tensor>("Out");
    out->mutable_data<T>(ctx.GetPlace());
    auto stream =
        ctx.template device_context<paddle::platform::NPUDeviceContext>()
            .stream();
L
Leo Chen 已提交
64
    const auto& runner = NpuOpRunner(
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
        "ParameterizedTruncatedNormal",
        {shape_tensor, mean_tensor, std_tensor, min_tensor, max_tensor}, {*out},
        {{"seed", seed_var}});
    runner.Run(stream);
  }
};

// NOTE(zhiqiu): actually, this is cpu version kernel, and we need to make the
// above
// npu version work in the future.
template <typename T>
class NPUTruncatedGaussianRandomKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& context) const override {
    float mean = context.Attr<float>("mean");
    float std = context.Attr<float>("std");
    auto* tensor = context.Output<framework::Tensor>("Out");
    tensor->mutable_data<T>(context.GetPlace());

84
    Tensor cpu_tensor(tensor->dtype());
85 86
    cpu_tensor.Resize(tensor->dims());
    T* cpu_data = cpu_tensor.mutable_data<T>(platform::CPUPlace());
C
Chang Xu 已提交
87 88 89 90 91 92 93
    auto normal_cdf = [](float x) {
      return (1.0 + std::erf(x / std::sqrt(2.0))) / 2.0;
    };
    float a_normal_cdf = normal_cdf((-2.0 - mean) / std);
    float b_normal_cdf = normal_cdf((2.0 - mean) / std);
    std::uniform_real_distribution<float> dist(2.0 * a_normal_cdf - 1.0,
                                               2.0 * b_normal_cdf - 1.0);
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
    TruncatedNormal<T> truncated_normal(mean, std);
    int64_t size = tensor->numel();

    unsigned int seed = static_cast<unsigned int>(context.Attr<int>("seed"));
    auto engine = framework::GetCPURandomEngine(seed);
    for (int64_t i = 0; i < size; ++i) {
      cpu_data[i] = truncated_normal(dist(*engine));
    }
    framework::TensorCopy(
        cpu_tensor, context.GetPlace(),
        context.template device_context<platform::DeviceContext>(), tensor);
    context.template device_context<paddle::platform::NPUDeviceContext>()
        .Wait();
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OP_NPU_KERNEL(truncated_gaussian_random,
                       ops::NPUTruncatedGaussianRandomKernel<float>);