THGrid.h 1.25 KB
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
void THByteGrid_cluster(THLongTensor *cluster,
                        THByteTensor *pos,
                        THByteTensor *size,
                        THLongTensor *count);
rusty1s's avatar
rusty1s committed
5

rusty1s's avatar
rusty1s committed
6
7
8
9
void THCharGrid_cluster(THLongTensor *cluster,
                        THCharTensor *pos,
                        THCharTensor *size,
                        THLongTensor *count);
rusty1s's avatar
rusty1s committed
10

rusty1s's avatar
rusty1s committed
11
12
13
14
void THShortGrid_cluster(THLongTensor *cluster,
                         THShortTensor *pos,
                         THShortTensor *size,
                         THLongTensor *count);
rusty1s's avatar
rusty1s committed
15

rusty1s's avatar
rusty1s committed
16
17
18
19
void THIntGrid_cluster(THLongTensor *cluster,
                       THIntTensor *pos,
                       THIntTensor *size,
                       THLongTensor *count);
rusty1s's avatar
rusty1s committed
20

rusty1s's avatar
rusty1s committed
21
22
23
24
void THLongGrid_cluster(THLongTensor *cluster,
                        THLongTensor *pos,
                        THLongTensor *size,
                        THLongTensor *count);
rusty1s's avatar
rusty1s committed
25

rusty1s's avatar
rusty1s committed
26
27
28
29
void THFloatGrid_cluster(THLongTensor *cluster,
                         THFloatTensor *pos,
                         THFloatTensor *size,
                         THLongTensor *count);
rusty1s's avatar
rusty1s committed
30

rusty1s's avatar
rusty1s committed
31
32
33
34
void THDoubleGrid_cluster(THLongTensor *cluster,
                          THDoubleTensor *pos,
                          THDoubleTensor *size,
                          THLongTensor *count);