/* Copyright (c) 2018 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 SLICE_OP #include "operators/kernel/slice_kernel.h" namespace paddle_mobile { namespace operators { template <> bool SliceKernel::Init(SliceParam* param) { auto output = param->output_; fpga::format_ofm(output); DLOG << "input: " << param->input_; DLOG << "output: " << param->output_; if (param->input_->type() != type_id()) { DLOG << "wrong type"; } return true; } template <> void SliceKernel::Compute(const SliceParam& param) { // Only support slicing in channel dimension // Only support half data // W must be aligned to 16 auto input = param.input_; auto output = param.output_; int H = input->dims()[2]; int W = input->dims()[3]; int HW = input->dims()[2] * input->dims()[3]; int channel = input->dims()[1]; auto input_ptr = input->data(); auto output_ptr = output->data(); output->scale[0] = input->scale[0]; output->scale[1] = input->scale[1]; int start = param.starts_[0], end = param.ends_[0]; start = start < 0 ? start + channel : start; end = end < 0 ? end + channel : end; start = start > channel ? channel : start; end = end > channel ? channel : end; int len = end - start; size_t size = len * sizeof(int8_t); DLOG << input->fpga_data_num; fpga::fpga_invalidate(input_ptr, input->fpga_data_num*sizeof(int8_t)); DLOG << output->fpga_data_num; fpga::fpga_invalidate(output_ptr, output->fpga_data_num*sizeof(int8_t)); int unalignedWC = len * W; int alignedWC = fpga::align_to_x(W * len, IMAGE_ALIGNMENT); if (unalignedWC != alignedWC) { auto tmpOutput = reinterpret_cast (fpga::fpga_malloc(len*HW * sizeof(int8_t))); for (int i = 0; i < HW; i++) { memcpy(tmpOutput + len * i, input_ptr + i * channel + start, size); } for (int i = 0; i < H; i++) { for (int j = 0; j < unalignedWC; j++) { *(output_ptr + alignedWC * i + j) = *(tmpOutput + unalignedWC * i + j); } } fpga::fpga_free(tmpOutput); } else { for (int i = 0; i < HW; i++) { memcpy(output_ptr + len * i, input_ptr + i * channel + start, size); } } fpga::fpga_flush(output_ptr, output->fpga_data_num*sizeof(int8_t)); } } // namespace operators } // namespace paddle_mobile #endif