/* 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/kernels/sparse/conv_grad_kernel.h" #include "glog/logging.h" #include "paddle/phi/backends/gpu/gpu_context.h" #include "paddle/phi/backends/gpu/gpu_info.h" #include "paddle/phi/backends/gpu/gpu_launch_config.h" #include "paddle/phi/core/kernel_registry.h" #include "paddle/phi/core/tensor_meta.h" #include "paddle/phi/core/tensor_utils.h" #include "paddle/phi/core/visit_type.h" #include "paddle/phi/kernels/funcs/blas/blas.h" #include "paddle/phi/kernels/funcs/math_function.h" #include "paddle/phi/kernels/funcs/scatter.cu.h" #include "paddle/phi/kernels/sparse/gpu/convolution.cu.h" namespace phi { namespace sparse { // rulebook[3, rulebook_len]: //[ // [kernel_index], // [in_i], // [out_i], //] // x_grad = out_grad * transpose(kenrel) // kernel_grad = transpose(x) * out_grad template void Conv3dCooGradGPUKernel(const GPUContext& dev_ctx, const SparseCooTensor& x, const DenseTensor& kernel, const DenseTensor& rulebook, const SparseCooTensor& out_grad, const std::vector& paddings, const std::vector& dilations, const std::vector& strides, const int groups, const bool subm, SparseCooTensor* x_grad, DenseTensor* kernel_grad) { const auto& kernel_dims = kernel.dims(); const int kernel_size = kernel_dims[0] * kernel_dims[1] * kernel_dims[2]; const int in_channels = kernel_dims[3]; const int out_channels = kernel_dims[4]; const IntT* rulebook_ptr = rulebook.data(); const int rulebook_len = rulebook.dims()[1]; DenseTensorMeta in_features_meta( x.dtype(), {rulebook_len, in_channels}, DataLayout::NCHW); DenseTensorMeta d_x_features_meta( x.dtype(), {rulebook_len, in_channels}, DataLayout::NCHW); DenseTensorMeta out_grad_features_meta( x.dtype(), {rulebook_len, out_channels}, DataLayout::NCHW); phi::DenseTensor in_features = phi::Empty(dev_ctx, std::move(in_features_meta)); phi::DenseTensor d_x_features = phi::Empty(dev_ctx, std::move(d_x_features_meta)); phi::DenseTensor out_grad_features = phi::Empty(dev_ctx, std::move(out_grad_features_meta)); T* in_features_ptr = in_features.data(); T* d_x_features_ptr = d_x_features.data(); T* out_grad_features_ptr = out_grad_features.data(); *kernel_grad = phi::EmptyLike(dev_ctx, kernel); T* d_kernel_ptr = kernel_grad->data(); phi::funcs::SetConstant set_zero; set_zero(dev_ctx, kernel_grad, static_cast(0.0f)); int half_kernel_size = kernel_size / 2; auto blas = phi::funcs::GetBlas(dev_ctx); DenseTensor x_grad_indices = phi::EmptyLike(dev_ctx, x.non_zero_indices()); DenseTensor x_grad_values = phi::EmptyLike(dev_ctx, x.non_zero_elements()); T* x_grad_values_ptr = x_grad_values.data(); set_zero(dev_ctx, &x_grad_values, static_cast(0.0f)); set_zero(dev_ctx, &d_x_features, static_cast(0.0f)); phi::Copy(dev_ctx, x.non_zero_indices(), dev_ctx.GetPlace(), false, &x_grad_indices); x_grad->SetMember(x_grad_indices, x_grad_values, x.dims(), true); std::vector offsets(kernel_size + 1), counter(kernel_size, 0), h_counter(rulebook_len, 0); phi::backends::gpu::GpuMemcpyAsync(&h_counter[0], rulebook_ptr, rulebook_len * sizeof(IntT), #ifdef PADDLE_WITH_HIP hipMemcpyDeviceToHost, #else cudaMemcpyDeviceToHost, #endif dev_ctx.stream()); dev_ctx.Wait(); for (int i = 0; i < rulebook_len; i++) { counter[h_counter[i]] += 1; } IntT offset = 0, max_count = 0; for (int i = 0; i < kernel_size; i++) { offsets[i] = offset; offset += counter[i]; if (i < half_kernel_size) { max_count = std::max(max_count, counter[i]); } } offsets[kernel_size] = offset; if (subm) { phi::funcs::sparse::SubmPreProcess( dev_ctx, x, kernel, out_grad.non_zero_elements(), in_channels, out_channels, half_kernel_size, kernel_grad, &x_grad_values); if (max_count == 0) { return; } } auto config = phi::backends::gpu::GetGpuLaunchConfig1D( dev_ctx, rulebook_len * in_channels, 1); GatherKernel<<>>(x.non_zero_elements().data(), rulebook_ptr + rulebook_len, in_features_ptr, rulebook_len, in_channels); config = phi::backends::gpu::GetGpuLaunchConfig1D( dev_ctx, rulebook_len * out_channels, 1); GatherKernel <<>>(out_grad.non_zero_elements().data(), rulebook_ptr + rulebook_len * 2, out_grad_features_ptr, rulebook_len, out_channels); const T* kernel_ptr = kernel.data(); for (int i = 0; i < kernel_size; i++) { if (counter[i] <= 0 || (subm && i == half_kernel_size)) { continue; } const int M = counter[i]; const int K = in_channels; const int N = out_channels; T* tmp_in_ptr = in_features_ptr + offsets[i] * in_channels; T* tmp_out_grad_ptr = out_grad_features_ptr + offsets[i] * out_channels; const T* tmp_kernel_ptr = kernel_ptr + i * in_channels * out_channels; T* tmp_d_x_ptr = d_x_features_ptr + offsets[i] * in_channels; T* tmp_d_kernel_ptr = d_kernel_ptr + i * in_channels * out_channels; // call gemm: d_kernel = transpose(x) * out_grad // (in_channels, n) * (n, out_channels) blas.GEMM(CblasTrans, CblasNoTrans, K, N, M, static_cast(1), tmp_in_ptr, tmp_out_grad_ptr, static_cast(0), tmp_d_kernel_ptr); // call gemm: d_x = out_grad * transpose(kernel) // (n, out_channels) * (out_channels, in_channels) blas.GEMM(CblasNoTrans, CblasTrans, M, K, N, static_cast(1), tmp_out_grad_ptr, tmp_kernel_ptr, static_cast(0), tmp_d_x_ptr); } // 4. scatter config = phi::backends::gpu::GetGpuLaunchConfig1D( dev_ctx, rulebook_len * in_channels, 1); phi::funcs::ScatterCUDAKernel<<>>( d_x_features_ptr, rulebook_ptr + rulebook_len, x_grad_values_ptr, rulebook_len, in_channels, false); } template void Conv3dCooGradKernel(const Context& dev_ctx, const SparseCooTensor& x, const DenseTensor& kernel, const DenseTensor& rulebook, const SparseCooTensor& out_grad, const std::vector& paddings, const std::vector& dilations, const std::vector& strides, const int groups, const bool subm, SparseCooTensor* x_grad, DenseTensor* kernel_grad) { PD_VISIT_INTEGRAL_TYPES( x.non_zero_indices().dtype(), "Conv3dCooGradGPUKernel", ([&] { Conv3dCooGradGPUKernel(dev_ctx, x, kernel, rulebook, out_grad, paddings, dilations, strides, groups, subm, x_grad, kernel_grad); })); } } // namespace sparse } // namespace phi PD_REGISTER_KERNEL(conv3d_coo_grad, GPU, ALL_LAYOUT, phi::sparse::Conv3dCooGradKernel, float, double, phi::dtype::float16) { kernel->InputAt(0).SetDataLayout(phi::DataLayout::SPARSE_COO); }