Utils
| 53 | |
| 54 | // Utils |
| 55 | static inline __device__ void read_table(uint *const sharedTable, |
| 56 | const uint *const table) { |
| 57 | const uint *const t = table + (blockIdx.x * TABLE_SIZE); |
| 58 | if (threadIdx.x < TABLE_SIZE) { sharedTable[threadIdx.x] = t[threadIdx.x]; } |
| 59 | } |
| 60 | |
| 61 | static inline __device__ void state_read(uint *const state, |
| 62 | const uint *const gState) { |
no outgoing calls
no test coverage detected