-
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 complex op and `paddle.complex`.
- Loading branch information
Feiyu Chan
authored
Dec 18, 2021
1 parent
a3bd6fc
commit 31e874b
Showing
9 changed files
with
555 additions
and
64 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,144 @@ | ||
/* Copyright (c) 2016 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/complex_op.h" | ||
|
||
#include <vector> | ||
#include "paddle/fluid/framework/op_registry.h" | ||
#include "paddle/fluid/operators/common_infer_shape_functions.cc" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
class ComplexOpMaker : public framework::OpProtoAndCheckerMaker { | ||
protected: | ||
void Make() override { | ||
AddInput("X", "(Tensor), real part of complex_op"); | ||
AddInput("Y", "(Tensor), image part of complex_op"); | ||
AddOutput("Out", "(Tensor), output of complex_op"); | ||
AddComment(R"DOC( | ||
Complex Operator. | ||
Return a complex tensor given the real and image tensors. | ||
)DOC"); | ||
} | ||
}; | ||
|
||
template <typename T> | ||
class ComplexGradOpMaker : public framework::SingleGradOpMaker<T> { | ||
public: | ||
using framework::SingleGradOpMaker<T>::SingleGradOpMaker; | ||
|
||
protected: | ||
void Apply(GradOpPtr<T> op) const override { | ||
op->SetType("complex_grad"); | ||
op->SetInput("X", this->Input("X")); | ||
op->SetInput("Y", this->Input("Y")); | ||
// op->SetInput("Out", this->Output("Out")); | ||
op->SetInput(framework::GradVarName("Out"), this->OutputGrad("Out")); | ||
op->SetOutput(framework::GradVarName("X"), this->InputGrad("X")); | ||
op->SetOutput(framework::GradVarName("Y"), this->InputGrad("Y")); | ||
op->SetAttrMap(this->Attrs()); | ||
} | ||
}; | ||
|
||
class ComplexOp : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
|
||
void InferShape(framework::InferShapeContext *ctx) const override { | ||
OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "complex"); | ||
OP_INOUT_CHECK(ctx->HasInput("Y"), "Input", "Y", "complex"); | ||
OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", "complex"); | ||
|
||
if (ctx->GetInputDim("X") == ctx->GetInputDim("Y")) { | ||
ctx->ShareDim("X", /*->*/ "Out"); | ||
// NOTE(chenfeiyu): lod & broadcasting is intrinsically contradictory | ||
// so tensors with lod are not supported here | ||
} else { | ||
auto x_dims = ctx->GetInputDim("X"); | ||
auto y_dims = ctx->GetInputDim("Y"); | ||
int max_dim = std::max(x_dims.size(), y_dims.size()); | ||
|
||
// start align axis | ||
int axis = std::abs(x_dims.size() - y_dims.size()); | ||
std::vector<int> x_dims_array(max_dim); | ||
std::vector<int> y_dims_array(max_dim); | ||
std::vector<int> out_dims_array(max_dim); | ||
details::GetBroadcastDimsArrays(x_dims, y_dims, x_dims_array.data(), | ||
y_dims_array.data(), | ||
out_dims_array.data(), max_dim, axis); | ||
ctx->SetOutputDim("Out", framework::make_ddim(out_dims_array)); | ||
} | ||
} | ||
|
||
protected: | ||
framework::OpKernelType GetExpectedKernelType( | ||
const framework::ExecutionContext &ctx) const override { | ||
auto data_type = OperatorWithKernel::IndicateVarDataType(ctx, "X"); | ||
return framework::OpKernelType(data_type, ctx.GetPlace()); | ||
} | ||
}; | ||
|
||
class ComplexGradOp : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
|
||
void InferShape(framework::InferShapeContext *ctx) const override { | ||
OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "complex_grad"); | ||
OP_INOUT_CHECK(ctx->HasInput("Y"), "Input", "Y", "kron_complex_gradgrad"); | ||
OP_INOUT_CHECK(ctx->HasInput(framework::GradVarName("Out")), "Input", | ||
framework::GradVarName("Out"), "complex_grad"); | ||
|
||
auto x_grad_name = framework::GradVarName("X"); | ||
if (ctx->HasOutput(x_grad_name)) { | ||
ctx->ShareDim("X", /*->*/ x_grad_name); | ||
} | ||
|
||
auto y_grad_name = framework::GradVarName("Y"); | ||
if (ctx->HasOutput(y_grad_name)) { | ||
ctx->ShareDim("Y", /*->*/ y_grad_name); | ||
} | ||
} | ||
|
||
protected: | ||
framework::OpKernelType GetExpectedKernelType( | ||
const framework::ExecutionContext &ctx) const override { | ||
auto out_grad_name = framework::GradVarName("Out"); | ||
auto computation_dtype = framework::ToRealType( | ||
OperatorWithKernel::IndicateVarDataType(ctx, out_grad_name)); | ||
return framework::OpKernelType(computation_dtype, ctx.GetPlace()); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
|
||
REGISTER_OPERATOR(complex, ops::ComplexOp, ops::ComplexOpMaker, | ||
ops::ComplexGradOpMaker<paddle::framework::OpDesc>, | ||
ops::ComplexGradOpMaker<paddle::imperative::OpBase>); | ||
|
||
REGISTER_OPERATOR(complex_grad, ops::ComplexGradOp); | ||
|
||
REGISTER_OP_CPU_KERNEL( | ||
complex, ops::ComplexKernel<paddle::platform::CPUDeviceContext, float>, | ||
ops::ComplexKernel<paddle::platform::CPUDeviceContext, double>); | ||
|
||
REGISTER_OP_CPU_KERNEL( | ||
complex_grad, | ||
ops::ComplexGradKernel<paddle::platform::CPUDeviceContext, float>, | ||
ops::ComplexGradKernel<paddle::platform::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,27 @@ | ||
// 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/framework/op_registry.h" | ||
#include "paddle/fluid/operators/complex_op.h" | ||
|
||
namespace ops = paddle::operators; | ||
|
||
REGISTER_OP_CUDA_KERNEL( | ||
complex, ops::ComplexKernel<paddle::platform::CUDADeviceContext, float>, | ||
ops::ComplexKernel<paddle::platform::CUDADeviceContext, double>); | ||
|
||
REGISTER_OP_CUDA_KERNEL( | ||
complex_grad, | ||
ops::ComplexGradKernel<paddle::platform::CUDADeviceContext, float>, | ||
ops::ComplexGradKernel<paddle::platform::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,111 @@ | ||
/* Copyright (c) 2016 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/operator.h" | ||
#include "paddle/fluid/operators/elementwise/elementwise_op_function.h" | ||
#include "paddle/fluid/operators/math/complex_functors.h" | ||
#include "paddle/fluid/platform/complex.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
// functors to use with ElementwiseComputeEx | ||
template <typename T> | ||
struct RealAndImagToComplexFunctor { | ||
inline HOSTDEVICE platform::complex<T> operator()(const T& x, const T& y) { | ||
return platform::complex<T>(x, y); | ||
} | ||
}; | ||
|
||
template <typename T> | ||
struct ImagAndRealToComplexFunctor { | ||
inline HOSTDEVICE platform::complex<T> operator()(const T& y, const T& x) { | ||
return platform::complex<T>(x, y); | ||
} | ||
}; | ||
|
||
template <typename T> | ||
struct ComplexGradForRealFunctor { | ||
inline HOSTDEVICE T operator()(const T x, const T y, | ||
const platform::complex<T> out, | ||
const platform::complex<T> dout) { | ||
return dout.real; | ||
} | ||
}; | ||
|
||
template <typename T> | ||
struct ComplexGradForImagFunctor { | ||
inline HOSTDEVICE T operator()(const T x, const T y, | ||
const platform::complex<T> out, | ||
const platform::complex<T> dout) { | ||
return dout.imag; | ||
} | ||
}; | ||
|
||
template <typename DeviceContext, typename T> | ||
class ComplexKernel : public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext& ctx) const override { | ||
const auto* x = ctx.Input<framework::Tensor>("X"); | ||
const auto* y = ctx.Input<framework::Tensor>("Y"); | ||
auto* z = ctx.Output<framework::Tensor>("Out"); | ||
|
||
using C = platform::complex<T>; | ||
z->mutable_data<C>(ctx.GetPlace()); | ||
|
||
// NOTE(chenfeiyu): be careful of the caveats of calling elementwise-related | ||
// facility functions | ||
#if defined(__NVCC__) || defined(__HIPCC__) | ||
ElementwiseComputeEx<RealAndImagToComplexFunctor<T>, DeviceContext, T, C>( | ||
ctx, x, y, /*axis*/ -1, RealAndImagToComplexFunctor<T>(), z); | ||
#else | ||
auto x_dims = x->dims(); | ||
auto y_dims = y->dims(); | ||
if (x_dims.size() >= y_dims.size()) { | ||
ElementwiseComputeEx<RealAndImagToComplexFunctor<T>, DeviceContext, T, C>( | ||
ctx, x, y, /*axis*/ -1, RealAndImagToComplexFunctor<T>(), z); | ||
} else { | ||
ElementwiseComputeEx<ImagAndRealToComplexFunctor<T>, DeviceContext, T, C>( | ||
ctx, x, y, /*axis*/ -1, ImagAndRealToComplexFunctor<T>(), z); | ||
} | ||
#endif | ||
} | ||
}; | ||
|
||
template <typename DeviceContext, typename T> | ||
class ComplexGradKernel : public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext& ctx) const override { | ||
using Tensor = framework::Tensor; | ||
|
||
auto* x = ctx.Input<Tensor>("X"); | ||
auto* y = ctx.Input<Tensor>("Y"); | ||
auto* dout = ctx.Input<Tensor>(framework::GradVarName("Out")); | ||
auto* dx = ctx.Output<Tensor>(framework::GradVarName("X")); | ||
auto* dy = ctx.Output<Tensor>(framework::GradVarName("Y")); | ||
using C = platform::complex<T>; | ||
|
||
// skip out in a hacky way | ||
auto* out = dout; | ||
ElemwiseGradCompute<DeviceContext, T, ComplexGradForRealFunctor<T>, | ||
ComplexGradForImagFunctor<T>, C>( | ||
ctx, *x, *y, *out, *dout, /*axis*/ -1, dx, dy, | ||
ComplexGradForRealFunctor<T>(), ComplexGradForImagFunctor<T>()); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle |
Oops, something went wrong.