1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-04-17 23:59:07 +00:00

Fall back to 64 threads default (from 256) because modern GPU create too many workitems which then results in too less GPU memory available

This commit is contained in:
jsteube 2017-08-16 16:13:28 +02:00
parent ac85163723
commit ac9bc55c9e

View File

@ -147,7 +147,7 @@ typedef enum amplifier_count
KERNEL_BFS = 1024,
KERNEL_COMBS = 1024,
KERNEL_RULES = 1024,
KERNEL_THREADS_MAX = 256,
KERNEL_THREADS_MAX = 64,
KERNEL_THREADS_MAX_CPU = 1
} amplifier_count_t;