mirror of
https://github.com/hashcat/hashcat.git
synced 2025-06-26 09:52:37 +00:00
commit
222be0b0dc
@ -72,6 +72,11 @@ u64 module_tmp_size (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED c
|
|||||||
return tmp_size;
|
return tmp_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool module_jit_cache_disable (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hashes_t *hashes, MAYBE_UNUSED const hc_device_param_t *device_param)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
char *module_jit_build_options (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hashes_t *hashes, MAYBE_UNUSED const hc_device_param_t *device_param)
|
char *module_jit_build_options (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hashes_t *hashes, MAYBE_UNUSED const hc_device_param_t *device_param)
|
||||||
{
|
{
|
||||||
char *jit_build_options = NULL;
|
char *jit_build_options = NULL;
|
||||||
@ -88,12 +93,6 @@ char *module_jit_build_options (MAYBE_UNUSED const hashconfig_t *hashconfig, MAY
|
|||||||
fixed_local_size = 1;
|
fixed_local_size = 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
|
||||||
if (user_options->kernel_threads_chgd == true)
|
|
||||||
{
|
|
||||||
fixed_local_size = user_options->kernel_threads;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
u32 overhead = 0;
|
u32 overhead = 0;
|
||||||
|
|
||||||
@ -108,6 +107,19 @@ char *module_jit_build_options (MAYBE_UNUSED const hashconfig_t *hashconfig, MAY
|
|||||||
overhead = 4;
|
overhead = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (user_options->kernel_threads_chgd == true)
|
||||||
|
{
|
||||||
|
fixed_local_size = user_options->kernel_threads;
|
||||||
|
|
||||||
|
// otherwise out-of-bound reads
|
||||||
|
|
||||||
|
if ((fixed_local_size * 4096) > (device_param->device_local_mem_size - overhead))
|
||||||
|
{
|
||||||
|
fixed_local_size = (device_param->device_local_mem_size - overhead) / 4096;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
fixed_local_size = (device_param->device_local_mem_size - overhead) / 4096;
|
fixed_local_size = (device_param->device_local_mem_size - overhead) / 4096;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -269,7 +281,7 @@ void module_init (module_ctx_t *module_ctx)
|
|||||||
module_ctx->module_hook_salt_size = MODULE_DEFAULT;
|
module_ctx->module_hook_salt_size = MODULE_DEFAULT;
|
||||||
module_ctx->module_hook_size = MODULE_DEFAULT;
|
module_ctx->module_hook_size = MODULE_DEFAULT;
|
||||||
module_ctx->module_jit_build_options = module_jit_build_options;
|
module_ctx->module_jit_build_options = module_jit_build_options;
|
||||||
module_ctx->module_jit_cache_disable = MODULE_DEFAULT;
|
module_ctx->module_jit_cache_disable = module_jit_cache_disable;
|
||||||
module_ctx->module_kernel_accel_max = MODULE_DEFAULT;
|
module_ctx->module_kernel_accel_max = MODULE_DEFAULT;
|
||||||
module_ctx->module_kernel_accel_min = MODULE_DEFAULT;
|
module_ctx->module_kernel_accel_min = MODULE_DEFAULT;
|
||||||
module_ctx->module_kernel_loops_max = MODULE_DEFAULT;
|
module_ctx->module_kernel_loops_max = MODULE_DEFAULT;
|
||||||
|
Loading…
Reference in New Issue
Block a user