array_cumsum.cu 1.57 KB
Newer Older
1
/**
2
 *  Copyright (c) 2020 by Contributors
3
4
 * @file array/cpu/array_cumsum.cu
 * @brief Array cumsum GPU implementation
5
6
 */
#include <dgl/array.h>
7

8
9
#include <cub/cub.cuh>

10
#include "../../runtime/cuda/cuda_common.h"
11
#include "./utils.h"
12
13
14
15
16
17

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

18
template <DGLDeviceType XPU, typename IdType>
19
20
21
IdArray CumSum(IdArray array, bool prepend_zero) {
  const int64_t len = array.NumElements();
  if (len == 0)
22
23
    return !prepend_zero ? array
                         : aten::Full(0, 1, array->dtype.bits, array->ctx);
24

25
  auto device = runtime::DeviceAPI::Get(array->ctx);
26
  cudaStream_t stream = runtime::getCurrentCUDAStream();
27
28
29
30
31
32
33
34
35
36
37
38
  const IdType* in_d = array.Ptr<IdType>();
  IdArray ret;
  IdType* out_d = nullptr;
  if (prepend_zero) {
    ret = aten::Full(0, len + 1, array->dtype.bits, array->ctx);
    out_d = ret.Ptr<IdType>() + 1;
  } else {
    ret = aten::NewIdArray(len, array->ctx, array->dtype.bits);
    out_d = ret.Ptr<IdType>();
  }
  // Allocate workspace
  size_t workspace_size = 0;
39
  CUDA_CALL(cub::DeviceScan::InclusiveSum(
40
      nullptr, workspace_size, in_d, out_d, len, stream));
41
42
43
  void* workspace = device->AllocWorkspace(array->ctx, workspace_size);

  // Compute cumsum
44
  CUDA_CALL(cub::DeviceScan::InclusiveSum(
45
      workspace, workspace_size, in_d, out_d, len, stream));
46
47
48
49
50
51

  device->FreeWorkspace(array->ctx, workspace);

  return ret;
}

52
53
template IdArray CumSum<kDGLCUDA, int32_t>(IdArray, bool);
template IdArray CumSum<kDGLCUDA, int64_t>(IdArray, bool);
54
55
56
57

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