// 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 #include #include "paddle/extension.h" template void assign_cpu_kernel(const data_t* x_data, data_t* out_data, int64_t x_numel) { for (int i = 0; i < x_numel; ++i) { out_data[i] = x_data[i]; } } template void fill_constant_cpu_kernel(data_t* out_data, int64_t x_numel, data_t value) { for (int i = 0; i < x_numel; ++i) { out_data[i] = value; } } std::vector MultiOutCPU(const paddle::Tensor& x) { auto out = paddle::empty_like(x); PD_DISPATCH_FLOATING_TYPES( x.type(), "assign_cpu_kernel", ([&] { assign_cpu_kernel( x.data(), out.mutable_data(x.place()), x.size()); })); // fake multi output: Fake_float64 with float64 dtype auto fake_float64 = paddle::empty_like(x); fill_constant_cpu_kernel( fake_float64.mutable_data(x.place()), x.size(), 0.); // fake multi output: ZFake_int32 with int32 dtype auto zfake_int32 = paddle::empty_like(x); fill_constant_cpu_kernel( zfake_int32.mutable_data(x.place()), x.size(), 1); return {out, fake_float64, zfake_int32}; } std::vector> InferShape(std::vector x_shape) { return {x_shape, x_shape, x_shape}; } std::vector InferDtype(paddle::DataType x_dtype) { return {x_dtype, paddle::DataType::FLOAT64, paddle::DataType::INT32}; } // out = w * 1 + x * 2 + y * 3 + z * 4 std::vector DiscreteOutForward(const paddle::Tensor& w, const paddle::Tensor& x, const paddle::Tensor& y, const paddle::Tensor& z) { paddle::Tensor out = w * 1 + x * 2 + y * 3 + z * 4; return {out}; } std::vector> DiscreteOutInferShape( const std::vector& w_shape, const std::vector& x_shape, const std::vector& y_shape, const std::vector& z_shape) { return {w_shape}; } std::vector DiscreteOutInferDtype( const paddle::DataType& w_dtype, const paddle::DataType& x_dtype, const paddle::DataType& y_dtype, const paddle::DataType& z_dtype) { return {w_dtype}; } // w_grad = out_grad // y_grad = out_grad * 3 std::vector DiscreteOutBackward( const paddle::Tensor& w, const paddle::Tensor& x, const paddle::Tensor& y, const paddle::Tensor& z, const paddle::Tensor& out_grad) { return {out_grad, out_grad * 3}; } PD_BUILD_OP(multi_out) .Inputs({"X"}) .Outputs({"Out", "Fake_float64", "ZFake_int32"}) .SetKernelFn(PD_KERNEL(MultiOutCPU)) .SetInferShapeFn(PD_INFER_SHAPE(InferShape)) .SetInferDtypeFn(PD_INFER_DTYPE(InferDtype)); PD_BUILD_OP(discrete_out) .Inputs({"w", "x", "y", "z"}) .Outputs({"output"}) .SetKernelFn(PD_KERNEL(DiscreteOutForward)) .SetInferShapeFn(PD_INFER_SHAPE(DiscreteOutInferShape)) .SetInferDtypeFn(PD_INFER_DTYPE(DiscreteOutInferDtype)); // Test gradient operator whose output order is discrete. PD_BUILD_GRAD_OP(discrete_out) .Inputs({"w", "x", "y", "z", paddle::Grad("output")}) .Outputs({paddle::Grad("w"), paddle::Grad("y")}) .SetKernelFn(PD_KERNEL(DiscreteOutBackward));