mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-01 04:12:44 +00:00
A CPU is not a GPU
This commit is contained in:
parent
39c44f2007
commit
36df3ef329
@ -13000,6 +13000,13 @@ int main (int argc, char **argv)
|
|||||||
if (hash_mode == 3200) kernel_threads = 8;
|
if (hash_mode == 3200) kernel_threads = 8;
|
||||||
if (hash_mode == 9000) kernel_threads = 8;
|
if (hash_mode == 9000) kernel_threads = 8;
|
||||||
|
|
||||||
|
if (device_type == CL_DEVICE_TYPE_CPU)
|
||||||
|
{
|
||||||
|
// CPU still need lots of workitems, don't know why...
|
||||||
|
|
||||||
|
kernel_accel = (kernel_accel >= 8) ? kernel_accel / 8 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
uint kernel_power = device_processors * kernel_threads * kernel_accel;
|
uint kernel_power = device_processors * kernel_threads * kernel_accel;
|
||||||
uint kernel_blocks = kernel_power;
|
uint kernel_blocks = kernel_power;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user