From 268c89f9a2a9272e8be4194391aaa98d8c2e8fa0 Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Fri, 12 Jun 2015 18:01:35 +0200 Subject: [PATCH] zr5: fix launch bounds with pok xor --- zr5.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zr5.cu b/zr5.cu index e472add..299ee91 100644 --- a/zr5.cu +++ b/zr5.cu @@ -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);