THCGreedy.cu 449 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
#include "THCGreedy.h"

rusty1s's avatar
rusty1s committed
3
4
5
void THCGreedy(THCState *state, THCudaLongTensor *cluster, THCudaLongTensor *row,
               THCudaLongTensor *col, THCudaLongTensor *deg) {
  printf("THCGreedy drin");
rusty1s's avatar
rusty1s committed
6
7
8
9
10
11
12
13
14
  // Fill cluster with -1
  // assign color to clusters < 0 (return done)
  // Generate proposal vector with length of nodes (init?)
  // call propose step
  // call response step
}

#include "generic/THCGreedy.cu"
#include "THC/THCGenerateAllTypes.h"