// Copyright (c) 2020 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 "lite/kernels/host/unsqueeze_compute.h" #include namespace paddle { namespace lite { namespace kernels { namespace host { void UnsqueezeCompute::Run() { auto& param = Param(); auto x = param.X; auto output = param.Out; auto output_dims = output->dims(); output->CopyDataFrom(*x); output->Resize(output_dims); } void Unsqueeze2Compute::Run() { auto& param = Param(); auto x = param.X; auto output = param.Out; auto xshape = param.XShape; auto output_dims = output->dims(); auto xshape_dims = xshape->dims(); output->CopyDataFrom(*x); xshape->CopyDataFrom(*x); output->Resize(output_dims); xshape->Resize(xshape_dims); } } // namespace host } // namespace kernels } // namespace lite } // namespace paddle REGISTER_LITE_KERNEL(unsqueeze, kHost, kAny, kAny, paddle::lite::kernels::host::UnsqueezeCompute, def) .BindInput("X", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kAny), DATALAYOUT(kAny), -1)}) .BindInput("AxesTensor", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kInt32), DATALAYOUT(kAny), -1)}) .BindInput("AxesTensorList", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kInt32), DATALAYOUT(kAny), -1)}) .BindOutput("Out", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kAny), DATALAYOUT(kAny), -1)}) .Finalize(); REGISTER_LITE_KERNEL(unsqueeze2, kHost, kAny, kAny, paddle::lite::kernels::host::Unsqueeze2Compute, def) .BindInput("X", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kAny), DATALAYOUT(kAny), -1)}) .BindInput("AxesTensor", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kInt32), DATALAYOUT(kAny), -1)}) .BindInput("AxesTensorList", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kInt32), DATALAYOUT(kAny), -1)}) .BindOutput("Out", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kAny), DATALAYOUT(kAny), -1)}) .BindOutput("XShape", {LiteType::GetTensorTy( TARGET(kHost), PRECISION(kAny), DATALAYOUT(kAny), -1)}) .Finalize();