/* 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 PADDLE_WITH_XPU #include "paddle/fluid/operators/expand_v2_op.h" namespace paddle { namespace operators { template class ExpandV2XPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& context) const override { auto* X = context.Input("X"); auto* Out = context.Output("Out"); auto in_dims = X->dims(); auto expand_shape = get_expand_shape(context); auto vec_in_dims = framework::vectorize(in_dims); auto diff = expand_shape.size() - vec_in_dims.size(); vec_in_dims.insert(vec_in_dims.begin(), diff, 1); std::vector final_expand_shape(vec_in_dims.size()); for (size_t i = 0; i < vec_in_dims.size(); ++i) { PADDLE_ENFORCE_NE(expand_shape[i], 0, platform::errors::InvalidArgument( "The expanded size cannot be zero.")); if (i < diff) { // expand_shape = [3,4,-1,-1], X = [10,2] --> // final_expand_shape = [3,4,10,2] PADDLE_ENFORCE_GT( expand_shape[i], 0, platform::errors::InvalidArgument( "The expanded size (%d) for non-existing dimensions must be " "positive for expand_v2 op.", expand_shape[i])); final_expand_shape[i] = expand_shape[i]; } else if (expand_shape[i] > 0) { // expand_shape = [3,4,10,4], X = // [10,1] --> final_expand_shape = // [3,4,10,4] if (vec_in_dims[i] != 1) { PADDLE_ENFORCE_EQ( vec_in_dims[i], expand_shape[i], platform::errors::InvalidArgument( "The value (%d) of the non-singleton dimension does not match" " the corresponding value (%d) in shape for expand_v2 op.", vec_in_dims[i], expand_shape[i])); final_expand_shape[i] = expand_shape[i]; } else { final_expand_shape[i] = expand_shape[i]; } } else { // expand_shape = [3,4,-1,-1], X = [10,2] --> final_expand_shape // = [3,4,10,2] PADDLE_ENFORCE_EQ( expand_shape[i], -1, platform::errors::InvalidArgument( "When the value in shape is negative for expand_v2 op, " "only -1 is supported, but the value received is %d.", expand_shape[i])); final_expand_shape[i] = vec_in_dims[i]; } } auto rank = X->dims().size(); PADDLE_ENFORCE_GE( rank, 1, platform::errors::InvalidArgument( "The rank of the input 'X' for expand_v2_npu op must be positive, " "but the value received is %d.", rank)); auto shape_size = final_expand_shape.size(); PADDLE_ENFORCE_GE( shape_size, rank, platform::errors::InvalidArgument( "The number (%d) of elements of 'shape' for expand_v2_npu op must " "be " "greater than or equal to the rank (%d) of the input 'X'.", shape_size, rank)); framework::DDim out_dims = framework::make_ddim(final_expand_shape); Out->Resize(out_dims); Out->mutable_data(context.GetPlace()); auto& x_shape = vec_in_dims; auto out_shape = framework::vectorize(out_dims); const auto& dev_ctx = context.template device_context(); int r = XPU_SUCCESS; if (std::is_same::value) { auto x_data = reinterpret_cast(X->data()); auto out_data = reinterpret_cast(Out->data()); r = xpu::broadcast(dev_ctx.x_context(), x_data, out_data, x_shape, out_shape); } else { auto x_data = reinterpret_cast(X->data()); auto out_data = reinterpret_cast(Out->data()); r = xpu::broadcast(dev_ctx.x_context(), x_data, out_data, x_shape, out_shape); } PADDLE_ENFORCE_EQ(r, XPU_SUCCESS, platform::errors::External( "XPU API(broadcast) return wrong " "value[%d %s] in ExpandV2XPUKernel.", r, XPUAPIErrorMsg[r])); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_XPU_KERNEL(expand_v2, ops::ExpandV2XPUKernel, ops::ExpandV2XPUKernel, ops::ExpandV2XPUKernel, ops::ExpandV2XPUKernel, ops::ExpandV2XPUKernel); #endif