2015-12-04 14:47:52 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 14:47:52 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-05-25 21:04:26 +00:00
|
|
|
#include "inc_hash_constants.h"
|
|
|
|
#include "inc_vendor.cl"
|
|
|
|
#include "inc_types.cl"
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-08-23 10:43:59 +00:00
|
|
|
__kernel void amp (__global pw_t *pws, __global pw_t *pws_amp, __constant const kernel_rule_t *rules_buf, __global const pw_t *combs_buf, __global const bf_t *bfs_buf, const u32 combs_mode, const u64 gid_max)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2017-08-19 14:39:22 +00:00
|
|
|
const u64 gid = get_global_id (0);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
const u32 w0r = bfs_buf[0].i;
|
|
|
|
|
2017-06-17 15:57:30 +00:00
|
|
|
pws_amp[gid].i[0] |= w0r;
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|