|
|
|
@ -78,10 +78,7 @@ typedef int sph_s32;
@@ -78,10 +78,7 @@ typedef int sph_s32;
|
|
|
|
|
#define SPH_CUBEHASH_UNROLL 0 |
|
|
|
|
#define SPH_KECCAK_UNROLL 1 |
|
|
|
|
#ifndef SPH_HAMSI_EXPAND_BIG |
|
|
|
|
#define SPH_HAMSI_EXPAND_BIG 1 |
|
|
|
|
#endif |
|
|
|
|
#ifndef SPH_HAMSI_SHORT |
|
|
|
|
#define SPH_HAMSI_SHORT 1 |
|
|
|
|
#define SPH_HAMSI_EXPAND_BIG 1 |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#include "blake.cl" |
|
|
|
@ -1108,15 +1105,20 @@ __kernel void search11(__global hash_t* hashes)
@@ -1108,15 +1105,20 @@ __kernel void search11(__global hash_t* hashes)
|
|
|
|
|
{ |
|
|
|
|
uint gid = get_global_id(0); |
|
|
|
|
__global hash_t *hash = &(hashes[gid-get_global_offset(0)]); |
|
|
|
|
__local sph_u32 T512_L[1024]; |
|
|
|
|
__constant const sph_u32 *T512_C = &T512[0][0]; |
|
|
|
|
|
|
|
|
|
int init = get_local_id(0); |
|
|
|
|
int step = get_local_size(0); |
|
|
|
|
for (int i = init; i < 1024; i += step) |
|
|
|
|
T512_L[i] = T512_C[i]; |
|
|
|
|
#ifdef INPUT_BIG_LOCAL |
|
|
|
|
__local sph_u32 T512_L[1024]; |
|
|
|
|
__constant const sph_u32 *T512_C = &T512[0][0]; |
|
|
|
|
|
|
|
|
|
barrier(CLK_LOCAL_MEM_FENCE); |
|
|
|
|
int init = get_local_id(0); |
|
|
|
|
int step = get_local_size(0); |
|
|
|
|
for (int i = init; i < 1024; i += step) |
|
|
|
|
T512_L[i] = T512_C[i]; |
|
|
|
|
|
|
|
|
|
barrier(CLK_LOCAL_MEM_FENCE); |
|
|
|
|
#else |
|
|
|
|
#define INPUT_BIG_LOCAL INPUT_BIG |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
sph_u32 c0 = HAMSI_IV512[0], c1 = HAMSI_IV512[1], c2 = HAMSI_IV512[2], c3 = HAMSI_IV512[3]; |
|
|
|
|
sph_u32 c4 = HAMSI_IV512[4], c5 = HAMSI_IV512[5], c6 = HAMSI_IV512[6], c7 = HAMSI_IV512[7]; |
|
|
|
@ -1128,10 +1130,11 @@ __kernel void search11(__global hash_t* hashes)
@@ -1128,10 +1130,11 @@ __kernel void search11(__global hash_t* hashes)
|
|
|
|
|
|
|
|
|
|
#define buf(u) hash->h1[i + u] |
|
|
|
|
|
|
|
|
|
for(int i = 0; i < 64; i += 8) { |
|
|
|
|
INPUT_BIG_LOCAL; |
|
|
|
|
P_BIG; |
|
|
|
|
T_BIG; |
|
|
|
|
for(int i = 0; i < 64; i += 8) |
|
|
|
|
{ |
|
|
|
|
INPUT_BIG_LOCAL; |
|
|
|
|
P_BIG; |
|
|
|
|
T_BIG; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#undef buf |
|
|
|
|