cuda.c 273 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
#ifndef THC_GENERIC_FILE
#define THC_GENERIC_FILE "generic/cuda.c"
#else

5
6
int64_t cluster_(grid)(THCudaLongTensor *output, THCTensor *position, THCTensor *size, THCTensor *maxPosition) {
  return cluster_kernel_(grid)(state, output, position, size, maxPosition);
rusty1s's avatar
rusty1s committed
7
8
9
}

#endif