X-Git-Url: https://www.flypig.org.uk/git/?a=blobdiff_plain;f=src%2FoclHashcat.c;h=d24c6cf1a26234dadff3efaac895b79f4ef8f8bd;hb=50a7638e7bf7a8832104702e00e23347b61f9401;hp=114cb3d3d3f66be5dbe66b378988a94bc1bcc27e;hpb=c40bf412e5980b32a14d7f985b077cd2afbfd3e3;p=hashcat.git diff --git a/src/oclHashcat.c b/src/oclHashcat.c index 114cb3d..d24c6cf 100644 --- a/src/oclHashcat.c +++ b/src/oclHashcat.c @@ -2909,10 +2909,10 @@ static void autotune (hc_device_param_t *device_param) // sometimes we're in a bad situation that the algorithm is so slow that we can not // create enough kernel_accel to do both, keep the gpu busy and stay below target_ms. - // however, we need to have a minimum kernel_accel of 8. + // however, we need to have a minimum kernel_accel of 64. // luckily, at this level of workload, it became a linear function - while (kernel_accel < 8) + while (kernel_accel < 64) { const u32 kernel_accel_try = kernel_accel * 2; const u32 kernel_loops_try = kernel_loops / 2;