/* 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. */ #include "paddle/phi/backends/gpu/gpu_context.h" #include "paddle/phi/core/kernel_registry.h" #include "paddle/phi/core/tensor_meta.h" #include "paddle/phi/core/visit_type.h" #include "paddle/phi/kernels/funcs/blas/blas.h" #include "paddle/phi/kernels/funcs/scatter.cu.h" #include "paddle/phi/kernels/sparse/convolution_kernel.h" #include "paddle/phi/kernels/sparse/gpu/convolution.cu.h" namespace phi { namespace sparse { template void Conv3dGPUKernel(const GPUContext& dev_ctx, const SparseCooTensor& x, const DenseTensor& kernel, const std::vector& paddings, const std::vector& dilations, const std::vector& strides, const int groups, const bool subm, SparseCooTensor* out, DenseTensor* rulebook) { // update padding and dilation // Currently, only support x.layout is NDHWC, groups = 1 // if x.layout != NDHWC then transpose(x), transpose(weight) const auto& x_dims = x.dims(); const auto& kernel_dims = kernel.dims(); int kernel_size = kernel_dims[0] * kernel_dims[1] * kernel_dims[2]; DDim out_dims = {1, 1, 1, 1, 1}; std::vector kernel_sizes(kernel_dims.size()); for (int i = 0; i < kernel_dims.size(); i++) { kernel_sizes[i] = kernel_dims[i]; } std::vector subm_paddings(paddings), subm_strides(strides); if (subm) { // the out shape of subm_conv is same as input shape // reset the padding=kernel_size/2 and strides=1 phi::funcs::sparse::ResetSubmKernelSizeAndStrides( kernel.dims(), &subm_paddings, &subm_strides); } phi::funcs::sparse::GetOutShape( x_dims, kernel_sizes, subm_paddings, dilations, subm_strides, &out_dims); const int in_channels = kernel_dims[3]; const int out_channels = kernel_dims[4]; std::vector offsets(kernel_size + 1), h_counter(kernel_size); // Second algorithm: // https://pdfs.semanticscholar.org/5125/a16039cabc6320c908a4764f32596e018ad3.pdf // 1. product rulebook DenseTensorMeta counter_meta( DataType::INT32, {kernel_size}, DataLayout::NCHW); DenseTensorMeta offsets_meta( DataType::INT32, {kernel_size}, DataLayout::NCHW); DenseTensor counter_per_kernel = phi::Empty(dev_ctx, std::move(counter_meta)); DenseTensor offsets_per_kernel = phi::Empty(dev_ctx, std::move(offsets_meta)); DenseTensorMeta index_meta(DataType::INT32, {1}, DataLayout::NCHW); DenseTensor out_index = phi::Empty(dev_ctx, std::move(index_meta)); DenseTensor unique_value = phi::Empty(dev_ctx, std::move(index_meta)); int n = ProductRuleBook(dev_ctx, x, kernel_sizes, subm_paddings, dilations, subm_strides, out_dims, subm, rulebook, &counter_per_kernel, &offsets_per_kernel, &out_index, &unique_value, out, &h_counter, &offsets); const int* counter_ptr = counter_per_kernel.data(); const int* offsets_ptr = counter_per_kernel.data(); const IntT* rulebook_ptr = rulebook->data(); // 2. gather DenseTensorMeta in_features_meta( x.dtype(), {n, in_channels}, DataLayout::NCHW); DenseTensorMeta out_features_meta( x.dtype(), {n, out_channels}, DataLayout::NCHW); phi::DenseTensor in_features = phi::Empty(dev_ctx, std::move(in_features_meta)); phi::DenseTensor out_features = phi::Empty(dev_ctx, std::move(out_features_meta)); T* in_features_ptr = in_features.data(); T* out_features_ptr = out_features.data(); phi::funcs::SetConstant set_zero; set_zero(dev_ctx, &out_features, static_cast(0.0f)); auto config = phi::backends::gpu::GetGpuLaunchConfig1D(dev_ctx, n * in_channels, 1); GatherKernel<<>>(x.non_zero_elements().data(), rulebook_ptr + n, in_features_ptr, n, in_channels); // 3. call gemm for every werght auto blas = phi::funcs::GetBlas(dev_ctx); auto* out_values = out->mutable_non_zero_elements(); T* out_values_ptr = out_values->data(); const T* kernel_ptr = kernel.data(); for (int i = 0; i < kernel_size; i++) { if (h_counter[i] <= 0) { continue; } // call gemm: (n, in_channels) * (in_channels, out_channels) const int M = h_counter[i]; const int K = in_channels; const int N = out_channels; T* tmp_in_ptr = in_features_ptr + offsets[i] * in_channels; const T* tmp_kernel_ptr = kernel_ptr + i * K * N; T* tmp_out_ptr = out_features_ptr + offsets[i] * out_channels; blas.GEMM(CblasNoTrans, CblasNoTrans, M, N, K, static_cast(1), tmp_in_ptr, tmp_kernel_ptr, static_cast(0), tmp_out_ptr); } // 4. scatter if (subm) { set_zero(dev_ctx, out_values, static_cast(0.0f)); config = phi::backends::gpu::GetGpuLaunchConfig1D(dev_ctx, n * out_channels, 1); phi::funcs::ScatterCUDAKernel<<>>( out_features_ptr, rulebook_ptr + 2 * n, out_values_ptr, n, out_channels, false); } else { config = phi::backends::gpu::GetGpuLaunchConfig1D( dev_ctx, out->nnz() * out_channels, 1); ScatterKernel<<>>(out_features_ptr, unique_value.data(), out_index.data(), out->nnz(), n, out_channels, out_values_ptr); } } /** * x: (N, D, H, W, C) * kernel: (D, H, W, C, OC) * out: (N, D, H, W, OC) **/ template void Conv3dKernel(const Context& dev_ctx, const SparseCooTensor& x, const DenseTensor& kernel, const std::vector& paddings, const std::vector& dilations, const std::vector& strides, const int groups, const bool subm, SparseCooTensor* out, DenseTensor* rulebook) { PD_VISIT_INTEGRAL_TYPES( x.non_zero_indices().dtype(), "Conv3dGPUKernel", ([&] { Conv3dGPUKernel(dev_ctx, x, kernel, paddings, dilations, strides, groups, subm, out, rulebook); })); } } // namespace sparse } // namespace phi PD_REGISTER_KERNEL(sparse_conv3d, GPU, ALL_LAYOUT, phi::sparse::Conv3dKernel, float, double, phi::dtype::float16) { kernel->InputAt(0).SetDataLayout(phi::DataLayout::SPARSE_COO); }