mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-25 14:04:34 +00:00
zr5: fix launch bounds with pok xor
This commit is contained in:
parent
2907a7c678
commit
268c89f9a2
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
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
__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)
|
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);
|
const uint32_t thread = (blockDim.x * blockIdx.x + threadIdx.x);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user