cuda.c 268 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
void cluster_(grid)(int C, THCudaLongTensor *output, THCTensor *position, THCTensor *size, THCudaLongTensor *count) {
  cluster_kernel_(grid)(state, C, output, position, size, count);
rusty1s's avatar
rusty1s committed
7
8
9
}

#endif