array_sort.cu 1.77 KB
Newer Older
1
2
3
4
5
6
/*!
 *  Copyright (c) 2020 by Contributors
 * \file array/cpu/array_sort.cu
 * \brief Array sort GPU implementation
 */
#include <dgl/array.h>
7

8
#include "../../runtime/cuda/cuda_common.h"
9
#include "./dgl_cub.cuh"
10
#include "./utils.h"
11
12
13
14
15
16

namespace dgl {
using runtime::NDArray;
namespace aten {
namespace impl {

17
template <DGLDeviceType XPU, typename IdType>
18
std::pair<IdArray, IdArray> Sort(IdArray array, int num_bits) {
19
20
21
22
23
24
25
26
27
28
29
30
  const auto& ctx = array->ctx;
  auto device = runtime::DeviceAPI::Get(ctx);
  const int64_t nitems = array->shape[0];
  IdArray orig_idx = Range(0, nitems, 64, ctx);
  IdArray sorted_array = NewIdArray(nitems, ctx, array->dtype.bits);
  IdArray sorted_idx = NewIdArray(nitems, ctx, 64);

  const IdType* keys_in = array.Ptr<IdType>();
  const int64_t* values_in = orig_idx.Ptr<int64_t>();
  IdType* keys_out = sorted_array.Ptr<IdType>();
  int64_t* values_out = sorted_idx.Ptr<int64_t>();

31
  cudaStream_t stream = runtime::getCurrentCUDAStream();
32
  if (num_bits == 0) {
33
    num_bits = sizeof(IdType) * 8;
34
35
  }

36
37
  // Allocate workspace
  size_t workspace_size = 0;
38
39
40
  CUDA_CALL(cub::DeviceRadixSort::SortPairs(
      nullptr, workspace_size, keys_in, keys_out, values_in, values_out, nitems,
      0, num_bits, stream));
41
42
43
  void* workspace = device->AllocWorkspace(ctx, workspace_size);

  // Compute
44
45
46
  CUDA_CALL(cub::DeviceRadixSort::SortPairs(
      workspace, workspace_size, keys_in, keys_out, values_in, values_out,
      nitems, 0, num_bits, stream));
47
48
49
50
51
52

  device->FreeWorkspace(ctx, workspace);

  return std::make_pair(sorted_array, sorted_idx);
}

53
54
55
56
template std::pair<IdArray, IdArray> Sort<kDGLCUDA, int32_t>(
    IdArray, int num_bits);
template std::pair<IdArray, IdArray> Sort<kDGLCUDA, int64_t>(
    IdArray, int num_bits);
57
58
59
60

}  // namespace impl
}  // namespace aten
}  // namespace dgl