/* Copyright (c) 2022 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. */ #pragma once #include "paddle/phi/backends/gpu/gpu_context.h" #include "paddle/phi/backends/gpu/gpu_launch_config.h" #include "paddle/phi/kernels/funcs/aligned_vector.h" #define VecBytes 16 namespace phi { namespace funcs { namespace sparse { /** * brief: scatter add * input: the inputs * unique_value: refer to UpdateIndexKernel notes * out_index: the output feature index * non_zero_num: the number of output features * rulebook_len: the length of rulebook * channels: the output channel size * out: the outputs **/ template __global__ void ScatterKernel(const T* input, const int* unique_value, const int* out_index, const int non_zero_num, const int rulebook_len, const int channels, T* out) { int tid = threadIdx.x + blockIdx.x * blockDim.x; const int vec_channels = channels / VecSize; using LoadT = phi::AlignedVector; using StoreT = phi::AlignedVector; for (int i = tid; i < non_zero_num * vec_channels; i += gridDim.x * blockDim.x) { int indices_i = i / vec_channels; int channels_i = i - indices_i * vec_channels; int start = unique_value[indices_i]; int end = indices_i == non_zero_num - 1 ? rulebook_len : unique_value[indices_i + 1]; // max(end-start) = kernel_size StoreT sums = {static_cast(0)}; for (int j = start; j < end; j++) { const int out_feature_i = out_index[j]; LoadT vec_in; phi::Load( input + out_feature_i * channels + channels_i * VecSize, &vec_in); #pragma unroll for (int k = 0; k < VecSize; k++) { sums[k] += vec_in[k]; } } phi::Store(sums, out + indices_i * channels + channels_i * VecSize); } } // scatter's index has been grouped in advance // index_counts record the count of each group // index_groups save the index of each group template __global__ void ScatterKernelV2(const T* input, const int* index_counts, const int* index_groups, const int non_zero_num, const int kernel_size, const int max_voxel, const int channels, const int buffer_counts, T* out) { int tid = threadIdx.x + blockIdx.x * blockDim.x; const int vec_channels = channels / VecSize; using LoadT = phi::AlignedVector; using StoreT = phi::AlignedVector; for (int i = tid; i < non_zero_num * vec_channels; i += gridDim.x * blockDim.x) { int indices_i = i / vec_channels; int channels_i = i - indices_i * vec_channels; StoreT sums = {static_cast(0)}; phi::Load(out + indices_i * channels + channels_i * VecSize, &sums); for (int it = 0; it < buffer_counts; it++) { int len = index_counts[indices_i + it * non_zero_num]; const int group_offset = it * max_voxel * kernel_size * non_zero_num; for (int j = 0; j < len; j++) { const int out_feature_i = index_groups[indices_i * max_voxel * kernel_size + j + group_offset]; LoadT vec_in; phi::Load( input + out_feature_i * channels + channels_i * VecSize, &vec_in); #pragma unroll for (int k = 0; k < VecSize; k++) { sums[k] += vec_in[k]; } } } phi::Store(sums, out + indices_i * channels + channels_i * VecSize); } } template void ScatterV2(const GPUContext& dev_ctx, const T* input, const int* index_counts, const int* index_groups, const int non_zero_num, const int kernel_size, const int max_voxel, const int channels, const int buffer_counts, T* output) { const int VecSize = VecBytes / sizeof(T); if (channels % VecSize == 0) { auto config = phi::backends::gpu::GetGpuLaunchConfig1D( dev_ctx, non_zero_num * channels / VecSize, 1); ScatterKernelV2<<>>(input, index_counts, index_groups, non_zero_num, kernel_size, max_voxel, channels, buffer_counts, output); } else { auto config = phi::backends::gpu::GetGpuLaunchConfig1D( dev_ctx, non_zero_num * channels, 1); ScatterKernelV2<<>>(input, index_counts, index_groups, non_zero_num, kernel_size, max_voxel, channels, buffer_counts, output); } } } // namespace sparse } // namespace funcs } // namespace phi