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

void cluster_(serial)(THCudaLongTensor *output, THCudaLongTensor *row, THCudaLongTensor *col, THCTensor *weight, THCudaLongTensor *degree) {
rusty1s's avatar
rusty1s committed
6
  cluster_kernel_(serial)(state, output, row, col, weight, degree);
rusty1s's avatar
rusty1s committed
7
8
9
10
}

#endif