sampler.cpp 733 Bytes
Newer Older
quyuanhao123's avatar
quyuanhao123 committed
1
2
3
4
5
6
#include <Python.h>
#include <torch/script.h>

#include "cpu/sampler_cpu.h"

#ifdef _WIN32
yangzhong's avatar
yangzhong committed
7
#ifdef WITH_CUDA
quyuanhao123's avatar
quyuanhao123 committed
8
9
10
11
12
13
14
15
16
PyMODINIT_FUNC PyInit__sampler_cuda(void) { return NULL; }
#else
PyMODINIT_FUNC PyInit__sampler_cpu(void) { return NULL; }
#endif
#endif

torch::Tensor neighbor_sampler(torch::Tensor start, torch::Tensor rowptr,
                               int64_t count, double factor) {
  if (rowptr.device().is_cuda()) {
yangzhong's avatar
yangzhong committed
17
#ifdef WITH_CUDA
quyuanhao123's avatar
quyuanhao123 committed
18
19
20
21
22
23
24
25
26
27
28
    AT_ERROR("No CUDA version supported");
#else
    AT_ERROR("Not compiled with CUDA support");
#endif
  } else {
    return neighbor_sampler_cpu(start, rowptr, count, factor);
  }
}

static auto registry = torch::RegisterOperators().op(
    "torch_cluster::neighbor_sampler", &neighbor_sampler);