mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-13 19:28:56 +00:00
Hash-Mode 10500: set native_threads to 32 with Apple GPU's
This commit is contained in:
parent
819cbe77b0
commit
c061f02d27
@ -45,6 +45,7 @@
|
||||
- Hash-Mode 18200: set native_threads to 32 with Apple GPU's
|
||||
- Hash-Mode 25400: set native_threads to 32 with Apple GPU's
|
||||
- Hash-Mode 7500: set native_threads to 32 with Apple GPU's
|
||||
- Hash-Mode 10500: set native_threads to 32 with Apple GPU's
|
||||
|
||||
##
|
||||
## Technical
|
||||
|
@ -100,6 +100,12 @@ char *module_jit_build_options (MAYBE_UNUSED const hashconfig_t *hashconfig, MAY
|
||||
}
|
||||
else if (device_param->opencl_device_type & CL_DEVICE_TYPE_GPU)
|
||||
{
|
||||
#if defined (__APPLE__)
|
||||
|
||||
native_threads = 32;
|
||||
|
||||
#else
|
||||
|
||||
if (device_param->device_local_mem_size < 49152)
|
||||
{
|
||||
native_threads = MIN (device_param->kernel_preferred_wgs_multiple, 32); // We can't just set 32, because Intel GPU need 8
|
||||
@ -108,6 +114,8 @@ char *module_jit_build_options (MAYBE_UNUSED const hashconfig_t *hashconfig, MAY
|
||||
{
|
||||
native_threads = device_param->kernel_preferred_wgs_multiple;
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
hc_asprintf (&jit_build_options, "-D FIXED_LOCAL_SIZE=%u -D _unroll", native_threads);
|
||||
|
Loading…
Reference in New Issue
Block a user