truncated_gaussian_random_op_npu.cc 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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 <memory>
#include <string>
17

18
#include "paddle/fluid/framework/convert_utils.h"
19
#include "paddle/fluid/operators/truncated_gaussian_random_op.h"
20 21 22 23 24 25 26 27 28 29

namespace paddle {
namespace operators {

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");
30
    phi::DenseTensor shape_tensor(phi::DataType::INT32);
31 32
    shape_tensor.mutable_data<int32_t>({static_cast<int>(shape.size())},
                                       ctx.GetPlace());
33 34
    paddle::framework::TensorFromVector(
        shape, ctx.device_context(), &shape_tensor);
35
    float mean = ctx.Attr<float>("mean");
36
    phi::DenseTensor mean_tensor(phi::DataType::FLOAT32);
37
    mean_tensor.mutable_data<float>({1}, ctx.GetPlace());
38
    FillNpuTensorWithConstant<float>(&mean_tensor, mean);
39 40

    float std = ctx.Attr<float>("std");
41
    phi::DenseTensor std_tensor(phi::DataType::FLOAT32);
42
    std_tensor.mutable_data<float>({1}, ctx.GetPlace());
43
    FillNpuTensorWithConstant<float>(&std_tensor, std);
44 45 46

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

47
    phi::DenseTensor min_tensor(phi::DataType::FLOAT32);
48 49
    min_tensor.mutable_data<float>({1}, ctx.GetPlace());
    float min_value = mean - std * 2.0;
50
    FillNpuTensorWithConstant<float>(&min_tensor, min_value);
51

52
    phi::DenseTensor max_tensor(phi::DataType::FLOAT32);
53 54
    max_tensor.mutable_data<float>({1}, ctx.GetPlace());
    float max_value = mean + std * 2.0;
55
    FillNpuTensorWithConstant<float>(&max_tensor, max_value);
56

57
    auto* out = ctx.Output<phi::DenseTensor>("Out");
58 59 60 61
    out->mutable_data<T>(ctx.GetPlace());
    auto stream =
        ctx.template device_context<paddle::platform::NPUDeviceContext>()
            .stream();
L
Leo Chen 已提交
62
    const auto& runner = NpuOpRunner(
63
        "ParameterizedTruncatedNormal",
64 65
        {shape_tensor, mean_tensor, std_tensor, min_tensor, max_tensor},
        {*out},
66 67 68 69 70 71 72 73 74 75 76 77 78 79
        {{"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");
80
    auto* tensor = context.Output<phi::DenseTensor>("Out");
81 82
    tensor->mutable_data<T>(context.GetPlace());

83
    phi::DenseTensor cpu_tensor(tensor->dtype());
84 85
    cpu_tensor.Resize(tensor->dims());
    T* cpu_data = cpu_tensor.mutable_data<T>(platform::CPUPlace());
86 87
    std::uniform_real_distribution<T> dist(std::numeric_limits<float>::min(),
                                           1.0);
88 89 90 91
    TruncatedNormal<T> truncated_normal(mean, std);
    int64_t size = tensor->numel();

    unsigned int seed = static_cast<unsigned int>(context.Attr<int>("seed"));
92
    auto engine = phi::GetCPURandomEngine(seed);
93 94 95 96
    for (int64_t i = 0; i < size; ++i) {
      cpu_data[i] = truncated_normal(dist(*engine));
    }
    framework::TensorCopy(
97 98 99 100
        cpu_tensor,
        context.GetPlace(),
        context.template device_context<platform::DeviceContext>(),
        tensor);
101 102 103 104 105 106 107 108 109 110 111 112
    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>);