Browse Source

zr5: fix launch bounds with pok xor

2upstream
Tanguy Pruvot 9 years ago
parent
commit
268c89f9a2
  1. 2
      zr5.cu

2
zr5.cu

@ -226,7 +226,7 @@ void zr5_get_poks_gpu(uint32_t threads, uint32_t** const d_buffers, uint8_t* con @@ -226,7 +226,7 @@ void zr5_get_poks_gpu(uint32_t threads, uint32_t** const d_buffers, uint8_t* con
}
}
__global__ __launch_bounds__(128, 6)
__global__ __launch_bounds__(128, 4)
void zr5_get_poks_xor_gpu(uint32_t threads, uint32_t** const d_buffers, uint8_t* d_permut, uint16_t* d_poks, uint8_t* d_txs, uint8_t txs)
{
const uint32_t thread = (blockDim.x * blockIdx.x + threadIdx.x);

Loading…
Cancel
Save