204 lines
7.4 KiB
Plaintext
204 lines
7.4 KiB
Plaintext
/* 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/coalesce_kernel.h"
|
|
|
|
#include <thrust/sort.h>
|
|
#include <thrust/unique.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/visit_type.h"
|
|
#include "paddle/phi/kernels/funcs/index_impl.cu.h"
|
|
#include "paddle/phi/kernels/funcs/sparse/flatten_indices.cu.h"
|
|
#include "paddle/phi/kernels/funcs/sparse/scatter.cu.h"
|
|
#include "paddle/phi/kernels/funcs/sparse/utils.cu.h"
|
|
|
|
namespace phi {
|
|
namespace sparse {
|
|
|
|
template <typename T, typename IntT>
|
|
void CoalesceCooGPUKernel(const GPUContext& dev_ctx,
|
|
const SparseCooTensor& x,
|
|
SparseCooTensor* out) {
|
|
const DenseTensor& x_indices = x.indices();
|
|
const DenseTensor& x_values = x.values();
|
|
DenseTensor out_indices = EmptyLike<IntT>(dev_ctx, x_indices);
|
|
DenseTensor out_values = EmptyLike<T>(dev_ctx, x_values);
|
|
|
|
const int64_t nnz = x.nnz();
|
|
const int64_t sparse_dim = x.indices().dims()[0];
|
|
std::vector<IntT> sparse_offsets(sparse_dim);
|
|
|
|
funcs::sparse::CalcOffsetsPerDim<IntT>(
|
|
x.dims(), sparse_dim, sparse_offsets.data());
|
|
|
|
DenseTensorMeta sparse_offset_meta(
|
|
phi::CppTypeToDataType<IntT>::Type(), {sparse_dim}, DataLayout::NCHW);
|
|
DenseTensor d_sparse_offsets =
|
|
Empty<GPUContext>(dev_ctx, std::move(sparse_offset_meta));
|
|
DenseTensor indices = Empty(
|
|
dev_ctx, DenseTensorMeta(x_indices.dtype(), {nnz}, x_indices.layout()));
|
|
IntT* indices_ptr = indices.data<IntT>();
|
|
|
|
backends::gpu::GpuMemcpyAsync(d_sparse_offsets.data<IntT>(),
|
|
sparse_offsets.data(),
|
|
sizeof(IntT) * sparse_dim,
|
|
gpuMemcpyHostToDevice,
|
|
dev_ctx.stream());
|
|
|
|
// 1. flatten indices
|
|
auto config = backends::gpu::GetGpuLaunchConfig1D(dev_ctx, nnz, 1);
|
|
funcs::sparse::FlattenIndicesKernel<<<config.block_per_grid,
|
|
config.thread_per_block,
|
|
0,
|
|
dev_ctx.stream()>>>(
|
|
x.indices().data<IntT>(),
|
|
d_sparse_offsets.data<IntT>(),
|
|
indices.numel(),
|
|
sparse_dim,
|
|
indices_ptr);
|
|
|
|
// 2. get the address of each non-zero values
|
|
const T* x_values_ptr = x_values.data<T>();
|
|
const int64_t stride =
|
|
x.dims().size() == sparse_dim ? 1 : x.values().dims()[1];
|
|
DenseTensor values_indices =
|
|
Empty(dev_ctx, DenseTensorMeta(DataType::INT32, {nnz}, DataLayout::NCHW));
|
|
int* values_indices_ptr = values_indices.data<int>();
|
|
DenseTensor public_indices = EmptyLike<int>(dev_ctx, values_indices);
|
|
|
|
// values_indices = [0,1,2,,,nnz-1]
|
|
phi::IndexKernel<int, kps::IdentityFunctor<int>>(
|
|
dev_ctx, &values_indices, kps::IdentityFunctor<int>());
|
|
phi::IndexKernel<int, kps::IdentityFunctor<int>>(
|
|
dev_ctx, &public_indices, kps::IdentityFunctor<int>());
|
|
|
|
// 3. sort (indices, values index)
|
|
#ifdef PADDLE_WITH_HIP
|
|
thrust::sort_by_key(thrust::hip::par.on(dev_ctx.stream()),
|
|
#else
|
|
thrust::sort_by_key(thrust::cuda::par.on(dev_ctx.stream()),
|
|
#endif
|
|
indices_ptr,
|
|
indices_ptr + nnz,
|
|
values_indices_ptr);
|
|
|
|
// 4. unique index
|
|
thrust::pair<IntT*, int*> new_end =
|
|
#ifdef PADDLE_WITH_HIP
|
|
thrust::unique_by_key(thrust::hip::par.on(dev_ctx.stream()),
|
|
#else
|
|
thrust::unique_by_key(thrust::cuda::par.on(dev_ctx.stream()),
|
|
#endif
|
|
indices_ptr,
|
|
indices_ptr + nnz,
|
|
public_indices.data<int>());
|
|
|
|
funcs::sparse::DistanceKernel<<<1, 1, 0, dev_ctx.stream()>>>(
|
|
indices_ptr, new_end.first, out_indices.data<IntT>());
|
|
|
|
IntT out_nnz = 0;
|
|
backends::gpu::GpuMemcpyAsync(&out_nnz,
|
|
out_indices.data<IntT>(),
|
|
sizeof(IntT),
|
|
gpuMemcpyDeviceToHost,
|
|
dev_ctx.stream());
|
|
dev_ctx.Wait();
|
|
|
|
out_indices.Resize({x_indices.dims()[0], out_nnz});
|
|
if (out_values.dims().size() == 1) {
|
|
out_values.Resize({out_nnz});
|
|
} else {
|
|
out_values.Resize({out_nnz, x_values.dims()[1]});
|
|
}
|
|
|
|
// 5. scatter the values
|
|
const int VecSize = VecBytes / sizeof(T);
|
|
if (stride % VecSize == 0) {
|
|
config =
|
|
backends::gpu::GetGpuLaunchConfig1D(dev_ctx, nnz * stride / VecSize, 1);
|
|
funcs::sparse::ScatterKernel<T, VecSize>
|
|
<<<config.block_per_grid,
|
|
config.thread_per_block,
|
|
0,
|
|
dev_ctx.stream()>>>(x_values_ptr,
|
|
public_indices.data<int>(),
|
|
values_indices_ptr,
|
|
out_nnz,
|
|
nnz,
|
|
stride,
|
|
out_values.data<T>());
|
|
} else {
|
|
config = backends::gpu::GetGpuLaunchConfig1D(dev_ctx, nnz * stride, 1);
|
|
funcs::sparse::ScatterKernel<T, 1>
|
|
<<<config.block_per_grid,
|
|
config.thread_per_block,
|
|
0,
|
|
dev_ctx.stream()>>>(x_values_ptr,
|
|
public_indices.data<int>(),
|
|
values_indices_ptr,
|
|
out_nnz,
|
|
nnz,
|
|
stride,
|
|
out_values.data<T>());
|
|
}
|
|
|
|
// 6. convert index to coordinate
|
|
Dim<DDim::kMaxRank> const_dims;
|
|
for (int i = 0; i < x.dims().size(); i++) {
|
|
const_dims[i] = x.dims()[i];
|
|
}
|
|
|
|
config = backends::gpu::GetGpuLaunchConfig1D(dev_ctx, out_nnz, 1);
|
|
funcs::sparse::IndexToCoordinateKernel<<<config.block_per_grid,
|
|
config.thread_per_block,
|
|
0,
|
|
dev_ctx.stream()>>>(
|
|
indices_ptr, const_dims, out_nnz, sparse_dim, out_indices.data<IntT>());
|
|
|
|
out->SetMember(out_indices, out_values, x.dims(), true);
|
|
out->SetIndicesDict(x.GetIndicesDict());
|
|
out->SetKmaps(x.GetKmaps());
|
|
}
|
|
|
|
template <typename T, typename Context>
|
|
void CoalesceCooKernel(const Context& dev_ctx,
|
|
const SparseCooTensor& x,
|
|
SparseCooTensor* out) {
|
|
PD_VISIT_BASE_INTEGRAL_TYPES(
|
|
x.indices().dtype(), "CoalesceCooGPUKernel", ([&] {
|
|
CoalesceCooGPUKernel<T, data_t>(dev_ctx, x, out);
|
|
}));
|
|
}
|
|
} // namespace sparse
|
|
} // namespace phi
|
|
|
|
PD_REGISTER_KERNEL(coalesce_coo,
|
|
GPU,
|
|
ALL_LAYOUT,
|
|
phi::sparse::CoalesceCooKernel,
|
|
float,
|
|
double,
|
|
phi::float16,
|
|
uint8_t,
|
|
int16_t,
|
|
int,
|
|
int64_t,
|
|
phi::complex64,
|
|
phi::complex128) {
|
|
kernel->InputAt(0).SetDataLayout(phi::DataLayout::SPARSE_COO);
|
|
}
|