1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-05 06:12:35 +00:00
hashcat/OpenCL/m02000_a0-optimized.cl
Jens Steube 15ada5124e Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template.
Updated kernel declarations from "KERNEL_FQ void HC_ATTR_SEQ" to "KERNEL_FQ KERNEL_FA void". Please update your custom plugin kernels accordingly.
Added spilling size as a factor in calculating usable memory per device. This is based on undocumented variables and may not be 100% accurate, but it works well in practice.
Added a compiler hint to scrypt-based kernels indicating the guaranteed maximum thread count per kernel invocation.
Removed redundant kernel code 29800, as it is identical to 27700, and updated the plugin.
2025-06-21 17:41:26 +02:00

36 lines
631 B
Common Lisp

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifdef KERNEL_STATIC
#include M2S(INCLUDE_PATH/inc_vendor.h)
#include M2S(INCLUDE_PATH/inc_types.h)
#include M2S(INCLUDE_PATH/inc_platform.cl)
#include M2S(INCLUDE_PATH/inc_common.cl)
#endif
KERNEL_FQ KERNEL_FA void m02000_m04 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ KERNEL_FA void m02000_m08 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ KERNEL_FA void m02000_m16 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ KERNEL_FA void m02000_s04 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ KERNEL_FA void m02000_s08 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ KERNEL_FA void m02000_s16 (KERN_ATTR_RULES ())
{
}