-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add new API/OP: paddle.poisson (#38117)
* add new API/OP:paddle.poisson * fix comment
- Loading branch information
1 parent
7339a12
commit bcf86e5
Showing
12 changed files
with
506 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* 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 <string> | ||
|
||
#include "paddle/fluid/operators/poisson_op.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
class PoissonOp : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
|
||
void InferShape(framework::InferShapeContext *ctx) const override { | ||
OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "PoissonOp"); | ||
OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", "PoissonOp"); | ||
|
||
auto dim = ctx->GetInputDim("X"); | ||
ctx->SetOutputDim("Out", dim); | ||
} | ||
|
||
protected: | ||
framework::OpKernelType GetExpectedKernelType( | ||
const framework::ExecutionContext &ctx) const override { | ||
return framework::OpKernelType( | ||
OperatorWithKernel::IndicateVarDataType(ctx, "X"), ctx.GetPlace()); | ||
} | ||
}; | ||
|
||
class PoissonOpMaker : public framework::OpProtoAndCheckerMaker { | ||
public: | ||
void Make() override { | ||
AddInput("X", "(Tensor) The input tensor of poisson op"); | ||
AddOutput("Out", | ||
"The output tensor of poisson op, it has the same shape and " | ||
"dtype with input. Each element corresponds to input tensor"); | ||
AddComment(R"DOC( | ||
This operator generate random value that obey poisson distribution. | ||
)DOC"); | ||
} | ||
}; | ||
|
||
class PoissonOpInferVarType : public framework::PassInDtypeAndVarTypeToOutput { | ||
protected: | ||
std::unordered_map<std::string, std::string> &GetInputOutputWithSameType() | ||
const override { | ||
static std::unordered_map<std::string, std::string> m{{"X", /*->*/ "Out"}}; | ||
return m; | ||
} | ||
}; | ||
|
||
template <typename T> | ||
class PoissonKernel<platform::CPUDeviceContext, T> | ||
: public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext &ctx) const override { | ||
const auto *x = ctx.Input<framework::Tensor>("X"); | ||
auto *out = ctx.Output<framework::Tensor>("Out"); | ||
|
||
const T *x_data = x->data<T>(); | ||
T *out_data = out->mutable_data<T>(ctx.GetPlace()); | ||
|
||
int64_t size = x->numel(); | ||
|
||
auto gen = framework::DefaultCPUGenerator(); | ||
auto engine = gen->GetCPUEngine(); | ||
|
||
for (int64_t i = 0; i < size; ++i) { | ||
std::poisson_distribution<> dist(x_data[i]); | ||
out_data[i] = static_cast<T>(dist(*engine)); | ||
} | ||
} | ||
}; | ||
|
||
class PoissonGradOp : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
|
||
void InferShape(framework::InferShapeContext *ctx) const override { | ||
OP_INOUT_CHECK(ctx->HasInput(framework::GradVarName("Out")), "Input", | ||
"Out_Grad", "PoissonGradOp"); | ||
|
||
auto dout_dim = ctx->GetInputDim(framework::GradVarName("Out")); | ||
ctx->SetOutputDim(framework::GradVarName("X"), dout_dim); | ||
} | ||
}; | ||
|
||
template <typename T> | ||
class PoissonGradOpMaker : public framework::SingleGradOpMaker<T> { | ||
public: | ||
using framework::SingleGradOpMaker<T>::SingleGradOpMaker; | ||
|
||
protected: | ||
void Apply(GradOpPtr<T> retv) const override { | ||
retv->SetType("poisson_grad"); | ||
retv->SetInput(framework::GradVarName("Out"), this->OutputGrad("Out")); | ||
retv->SetOutput(framework::GradVarName("X"), this->InputGrad("X")); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
namespace plat = paddle::platform; | ||
|
||
REGISTER_OPERATOR(poisson, ops::PoissonOp, ops::PoissonOpMaker, | ||
ops::PoissonOpInferVarType, | ||
ops::PoissonGradOpMaker<paddle::framework::OpDesc>, | ||
ops::PoissonGradOpMaker<paddle::imperative::OpBase>); | ||
|
||
REGISTER_OPERATOR(poisson_grad, ops::PoissonGradOp); | ||
|
||
REGISTER_OP_CPU_KERNEL(poisson, | ||
ops::PoissonKernel<plat::CPUDeviceContext, float>, | ||
ops::PoissonKernel<plat::CPUDeviceContext, double>); | ||
|
||
REGISTER_OP_CPU_KERNEL(poisson_grad, | ||
ops::PoissonGradKernel<plat::CPUDeviceContext, float>, | ||
ops::PoissonGradKernel<plat::CPUDeviceContext, double>); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* 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. */ | ||
|
||
#ifdef __NVCC__ | ||
#include <curand_kernel.h> | ||
#endif | ||
#ifdef __HIPCC__ | ||
#include <hiprand_kernel.h> | ||
#endif | ||
#include "paddle/fluid/operators/poisson_op.h" | ||
#include "paddle/fluid/platform/for_range.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
template <typename T> | ||
struct PoissonCudaFunctor { | ||
public: | ||
PoissonCudaFunctor(const T* in, T* out, unsigned int seed, | ||
unsigned int offset) | ||
: in_(in), out_(out), seed_(seed), offset_(offset) {} | ||
|
||
__device__ void operator()(int64_t idx) { | ||
#ifdef __NVCC__ | ||
curandStatePhilox4_32_10_t state; | ||
curand_init(seed_, idx, offset_, &state); | ||
out_[idx] = static_cast<T>(curand_poisson(&state, in_[idx])); | ||
#elif __HIPCC__ | ||
hiprandStatePhilox4_32_10_t state; | ||
hiprand_init(seed_, idx, offset_, &state); | ||
out_[idx] = static_cast<T>(hiprand_poisson(&state, in_[idx])); | ||
#endif | ||
} | ||
|
||
private: | ||
const T* in_; | ||
T* out_; | ||
const unsigned int seed_; | ||
const unsigned int offset_; | ||
}; | ||
|
||
template <typename T> | ||
class PoissonKernel<platform::CUDADeviceContext, T> | ||
: public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext& ctx) const override { | ||
const auto* x = ctx.Input<framework::Tensor>("X"); | ||
auto* out = ctx.Output<framework::Tensor>("Out"); | ||
|
||
const T* x_data = x->data<T>(); | ||
T* out_data = out->mutable_data<T>(ctx.GetPlace()); | ||
auto size = x->numel(); | ||
int64_t device_id = | ||
BOOST_GET_CONST(platform::CUDAPlace, ctx.GetPlace()).GetDeviceId(); | ||
|
||
auto gen_cuda = framework::GetDefaultCUDAGenerator(device_id); | ||
auto seed_offset = gen_cuda->IncrementOffset(20); | ||
uint64_t seed = seed_offset.first; | ||
uint64_t offset = seed_offset.second; | ||
|
||
auto& dev_ctx = ctx.template device_context<platform::CUDADeviceContext>(); | ||
platform::ForRange<platform::CUDADeviceContext> for_range(dev_ctx, size); | ||
|
||
PoissonCudaFunctor<T> functor(x_data, out_data, seed, offset); | ||
for_range(functor); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
namespace plat = paddle::platform; | ||
|
||
REGISTER_OP_CUDA_KERNEL(poisson, | ||
ops::PoissonKernel<plat::CUDADeviceContext, float>, | ||
ops::PoissonKernel<plat::CUDADeviceContext, double>); | ||
|
||
REGISTER_OP_CUDA_KERNEL( | ||
poisson_grad, ops::PoissonGradKernel<plat::CUDADeviceContext, float>, | ||
ops::PoissonGradKernel<plat::CUDADeviceContext, double>); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// 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. | ||
|
||
#pragma once | ||
|
||
#include "paddle/fluid/framework/generator.h" | ||
#include "paddle/fluid/framework/op_registry.h" | ||
#include "paddle/fluid/framework/operator.h" | ||
#include "paddle/fluid/operators/math/math_function.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
template <typename DeviceContext, typename T> | ||
class PoissonKernel; | ||
|
||
template <typename DeviceContext, typename T> | ||
class PoissonGradKernel : public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext& ctx) const override { | ||
auto* dx = ctx.Output<framework::Tensor>(framework::GradVarName("X")); | ||
dx->mutable_data<T>(ctx.GetPlace()); | ||
math::SetConstant<DeviceContext, T> functor; | ||
auto& dev_ctx = ctx.template device_context<DeviceContext>(); | ||
functor(dev_ctx, dx, static_cast<T>(0)); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.