// Copyright (c) 2019 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/arm/scatter_compute.h" #include "lite/backends/arm/math/funcs.h" namespace paddle { namespace lite { namespace kernels { namespace arm { void ScatterCompute::Run() { auto& param = this->template Param(); const float* updates_data = param.updates->template data(); const int64_t* indexs_data = param.indexs->template data(); float* output_data = param.output->template mutable_data(); bool overwrite = param.overwrite; int index_size = param.indexs->dims()[0]; auto in_dims = param.x->dims(); int num = 1; for (int i = 1; i < in_dims.size(); i++) { num *= in_dims[i]; } lite::arm::math::scatter(indexs_data, updates_data, output_data, index_size, in_dims[0], num, overwrite); if (!param.x->lod().empty()) { param.output->set_lod(param.x->lod()); } } } // namespace arm } // namespace kernels } // namespace lite } // namespace paddle REGISTER_LITE_KERNEL(scatter, kARM, kFloat, kNCHW, paddle::lite::kernels::arm::ScatterCompute, def) .BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kFloat))}) .BindInput("Ids", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))}) .BindInput("Updates", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kFloat))}) .BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kFloat))}) .Finalize();