Skip to content
Snippets Groups Projects

Resolves #40 by colouring registration errors

Merged Nicolas Pope requested to merge feature/40/guireg into master
3 files
+ 4
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -137,7 +137,7 @@ void ftl::cuda::garbageCollectIdentify(HashData& hashData, const HashParams& has
__global__ void garbageCollectFreeKernel(HashData hashData) {
// Stride over all allocated blocks
for (int bi=blockIdx.x*blockDim.x + threadIdx.x; bi<*hashData.d_hashCompactifiedCounter; bi+=NUM_CUDA_BLOCKS) {
for (int bi=blockIdx.x*blockDim.x + threadIdx.x; bi<*hashData.d_hashCompactifiedCounter; bi+=NUM_CUDA_BLOCKS*blockDim.x) {
if (hashData.d_hashDecision[bi] != 0) { //decision to delete the hash entry
Loading