5 #ifndef TRIGINDETCUDA_SEEDMAKINGDATASTRUCTURES_H
6 #define TRIGINDETCUDA_SEEDMAKINGDATASTRUCTURES_H
8 static constexpr
unsigned int MAX_MIDDLE_SP = 300000;
9 static constexpr
unsigned int MAX_DOUBLET = 50000000;
10 static constexpr
unsigned int NUM_MIDDLE_THREADS = 32;
11 static constexpr
unsigned int OUTER_THREADS_MULTIPLIER = 4;
12 static constexpr
unsigned int MAX_NUMBER_DOUBLETS = 1500;
13 static constexpr
unsigned int NUM_TRIPLET_BLOCKS = 1024;
14 static constexpr
unsigned int NUM_TRIPLET_THREADS = 1024;
15 static constexpr
unsigned int NUM_DOUBLET_THREADS = 16;
16 static constexpr
unsigned int MAX_TRIPLETS = 300;
17 static constexpr
unsigned int TRIPLET_BUFFER_DEPTH = 3;