Files
paddlepaddle--paddle/paddle/fluid/operators/elementwise/elementwise_div_op.h
T
2026-07-13 12:40:42 +08:00

66 lines
2.1 KiB
C++

/* 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 <vector>
#include "paddle/fluid/operators/elementwise/elementwise_mul_op.h"
namespace paddle {
namespace operators {
class ElementwiseDivOpDoubleGrad : public framework::OperatorWithKernel {
public:
using framework::OperatorWithKernel::OperatorWithKernel;
void InferShape(framework::InferShapeContext* ctx) const override {
auto y_grad_name = framework::GradVarName("Y");
if (ctx->HasOutput("DOut")) {
ctx->ShareDim("DX", "DOut");
ctx->ShareLoD("DX", "DOut");
}
if (ctx->HasOutput(y_grad_name)) {
ctx->ShareDim("Y", y_grad_name);
ctx->ShareLoD("Y", y_grad_name);
}
if (ctx->HasOutput("DDOut")) {
ctx->ShareDim("DX", "DDOut");
ctx->ShareLoD("DX", "DDOut");
}
}
phi::KernelKey GetExpectedKernelType(
const framework::ExecutionContext& ctx) const override {
auto input_data_type = OperatorWithKernel::IndicateVarDataType(ctx, "Out");
return phi::KernelKey(input_data_type, ctx.GetPlace());
}
phi::KernelKey GetKernelTypeForVar(
const std::string& var_name,
const phi::DenseTensor& tensor,
const phi::KernelKey& expected_kernel_type) const override {
if (framework::IsComplexType(expected_kernel_type.dtype())) {
// only promote inputs's types when contains complex input
return phi::KernelKey(tensor.place(), tensor.layout(), tensor.dtype());
} else {
return phi::KernelKey(
tensor.place(), tensor.layout(), expected_kernel_type.dtype());
}
}
};
} // namespace operators
} // namespace paddle