You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/OpenCL/amp_a3.cl

26 lines
464 B

9 years ago
/**
* Author......: See docs/credits.txt
9 years ago
* License.....: MIT
*/
#define XSTR(x) #x
#define STR(x) XSTR(x)
#ifdef KERNEL_STATIC
#include STR(INCLUDE_PATH/inc_vendor.h)
#include STR(INCLUDE_PATH/inc_types.h)
#include STR(INCLUDE_PATH/inc_platform.cl)
#include STR(INCLUDE_PATH/inc_amp.h)
#endif
9 years ago
KERNEL_FQ void amp (KERN_ATTR_AMP)
9 years ago
{
const u64 gid = get_global_id (0);
9 years ago
if (gid >= gid_max) return;
const u32 w0r = bfs_buf[0].i;
pws[gid].i[0] |= w0r;
9 years ago
}