-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGappyLook.h
More file actions
69 lines (64 loc) · 1.58 KB
/
GappyLook.h
File metadata and controls
69 lines (64 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef GAPPY_LOOK_H
#define GAPPY_LOOK_H
#include "ComTypes.h"
__global__ void precomp(
precompute_enu* oneGapPrecomp,
int* refstr,
int *refsa,
precompute_enu_2* onegap_precomp,
unsigned int* counter,
unsigned int* RLP,
uint8_t* L_tar,
uint8_t* R_tar,
int* featureMissingCount_d);
__global__ void oneGapLookUpSA(
int* refstr,
int* refsa,
unsigned int toklen,
int *qrysoffsettok,
int qryscount,
int tokenscount,
result_t_two* qryresult,
int* connectoffset,
int totalconnect,
result_t* result_connect,
int* tokindex_qryindex,
oneGapOnSA* oneGapSA,
unsigned int precomp_onegap_count,
int* frequentList,
precomp_st_end* precomp_index,
precompute_enu_3* precomp_onegap,
unsigned int* counter,
gappy_search* oneGapSearch,
int distinctOneGapCount,
unsigned int* RLP,
uint8_t* L_tar,
uint8_t* R_tar);
__global__ void twoGapLookUpSA(
int* refstr,
// int* refsa,
unsigned int toklen,
int *qrysoffsettok,
int qryscount,
int tokenscount,
result_t_two* qryresult,
int* connectoffset,
int totalconnect,
result_t* result_connect,
int* tokindex_qryindex,
twoGapOnSA* twoGapSA,
unsigned int precomp_onegap_count,
int* frequentList,
precomp_st_end* precomp_index,
precompute_enu_3* precomp_onegap,
unsigned int* counter,
two_gappy_search* twoGapSearch,
int distinctTwoGapCount,
int distinctOneGapCount,
gappy_search* oneGapSearch,
oneGapOnSA* oneGapSA,
unsigned int oneGapSACount,
unsigned int* RLP,
uint8_t* L_tar,
uint8_t* R_tar);
#endif /* GAPPY_LOOK_H */