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.

357 lines
8.5 KiB

9 years ago
#define OPENCL_PLATFORM_UNKNOWN 0
#define OPENCL_PLATFORM_NVIDIA 1
#define OPENCL_PLATFORM_AMD 2
10 years ago
#define THREADS_PER_HASH (128 / 16)
#define HASHES_PER_LOOP (GROUP_SIZE / THREADS_PER_HASH)
#define FNV_PRIME 0x01000193
__constant uint2 const Keccak_f1600_RC[24] = {
(uint2)(0x00000001, 0x00000000),
(uint2)(0x00008082, 0x00000000),
(uint2)(0x0000808a, 0x80000000),
(uint2)(0x80008000, 0x80000000),
(uint2)(0x0000808b, 0x00000000),
(uint2)(0x80000001, 0x00000000),
(uint2)(0x80008081, 0x80000000),
(uint2)(0x00008009, 0x80000000),
(uint2)(0x0000008a, 0x00000000),
(uint2)(0x00000088, 0x00000000),
(uint2)(0x80008009, 0x00000000),
(uint2)(0x8000000a, 0x00000000),
(uint2)(0x8000808b, 0x00000000),
(uint2)(0x0000008b, 0x80000000),
(uint2)(0x00008089, 0x80000000),
(uint2)(0x00008003, 0x80000000),
(uint2)(0x00008002, 0x80000000),
(uint2)(0x00000080, 0x80000000),
(uint2)(0x0000800a, 0x00000000),
(uint2)(0x8000000a, 0x80000000),
(uint2)(0x80008081, 0x80000000),
(uint2)(0x00008080, 0x80000000),
(uint2)(0x80000001, 0x00000000),
(uint2)(0x80008008, 0x80000000),
};
9 years ago
#if PLATFORM == OPENCL_PLATFORM_NVIDIA && COMPUTE >= 35
9 years ago
static uint2 ROL2(const uint2 a, const int offset) {
uint2 result;
if (offset >= 32) {
asm("shf.l.wrap.b32 %0, %1, %2, %3;" : "=r"(result.x) : "r"(a.x), "r"(a.y), "r"(offset));
asm("shf.l.wrap.b32 %0, %1, %2, %3;" : "=r"(result.y) : "r"(a.y), "r"(a.x), "r"(offset));
}
else {
asm("shf.l.wrap.b32 %0, %1, %2, %3;" : "=r"(result.x) : "r"(a.y), "r"(a.x), "r"(offset));
asm("shf.l.wrap.b32 %0, %1, %2, %3;" : "=r"(result.y) : "r"(a.x), "r"(a.y), "r"(offset));
}
return result;
}
9 years ago
#elif PLATFORM == OPENCL_PLATFORM_AMD
9 years ago
#pragma OPENCL EXTENSION cl_amd_media_ops : enable
static uint2 ROL2(const uint2 vv, const int r)
{
if (r <= 32)
{
return amd_bitalign((vv).xy, (vv).yx, 32 - r);
}
else
{
return amd_bitalign((vv).yx, (vv).xy, 64 - r);
}
}
#else
9 years ago
static uint2 ROL2(const uint2 v, const int n)
{
uint2 result;
if (n <= 32)
{
result.y = ((v.y << (n)) | (v.x >> (32 - n)));
result.x = ((v.x << (n)) | (v.y >> (32 - n)));
}
else
{
result.y = ((v.x << (n - 32)) | (v.y >> (64 - n)));
result.x = ((v.y << (n - 32)) | (v.x >> (64 - n)));
}
return result;
}
9 years ago
#endif
9 years ago
static void keccak_f1600_round(uint2* a, uint r, uint out_size)
10 years ago
{
9 years ago
uint2 t[5];
uint2 u, v;
10 years ago
// Theta
9 years ago
t[0] = a[0] ^ a[5] ^ a[10] ^ a[15] ^ a[20];
t[1] = a[1] ^ a[6] ^ a[11] ^ a[16] ^ a[21];
t[2] = a[2] ^ a[7] ^ a[12] ^ a[17] ^ a[22];
t[3] = a[3] ^ a[8] ^ a[13] ^ a[18] ^ a[23];
t[4] = a[4] ^ a[9] ^ a[14] ^ a[19] ^ a[24];
u = t[4] ^ ROL2(t[1], 1);
a[0] ^= u;
a[5] ^= u;
a[10] ^= u;
a[15] ^= u;
a[20] ^= u;
u = t[0] ^ ROL2(t[2], 1);
a[1] ^= u;
a[6] ^= u;
a[11] ^= u;
a[16] ^= u;
a[21] ^= u;
u = t[1] ^ ROL2(t[3], 1);
a[2] ^= u;
a[7] ^= u;
a[12] ^= u;
a[17] ^= u;
a[22] ^= u;
u = t[2] ^ ROL2(t[4], 1);
a[3] ^= u;
a[8] ^= u;
a[13] ^= u;
a[18] ^= u;
a[23] ^= u;
u = t[3] ^ ROL2(t[0], 1);
a[4] ^= u;
a[9] ^= u;
a[14] ^= u;
a[19] ^= u;
a[24] ^= u;
10 years ago
// Rho Pi
9 years ago
u = a[1];
a[1] = ROL2(a[6], 44);
a[6] = ROL2(a[9], 20);
a[9] = ROL2(a[22], 61);
a[22] = ROL2(a[14], 39);
a[14] = ROL2(a[20], 18);
a[20] = ROL2(a[2], 62);
a[2] = ROL2(a[12], 43);
a[12] = ROL2(a[13], 25);
a[13] = ROL2(a[19], 8);
a[19] = ROL2(a[23], 56);
a[23] = ROL2(a[15], 41);
a[15] = ROL2(a[4], 27);
a[4] = ROL2(a[24], 14);
a[24] = ROL2(a[21], 2);
a[21] = ROL2(a[8], 55);
a[8] = ROL2(a[16], 45);
a[16] = ROL2(a[5], 36);
a[5] = ROL2(a[3], 28);
a[3] = ROL2(a[18], 21);
a[18] = ROL2(a[17], 15);
a[17] = ROL2(a[11], 10);
a[11] = ROL2(a[7], 6);
a[7] = ROL2(a[10], 3);
a[10] = ROL2(u, 1);
10 years ago
// Chi
u = a[0];
9 years ago
a[0] = bitselect(a[0] ^ a[2], a[0], a[1]);
10 years ago
// Iota
a[0] ^= Keccak_f1600_RC[r];
if (out_size == 1) return;
// Continue Chi
v = a[1];
a[1] = bitselect(a[1] ^ a[3], a[1], a[2]);
a[2] = bitselect(a[2] ^ a[4], a[2], a[3]);
a[3] = bitselect(a[3] ^ u, a[3], a[4]);
a[4] = bitselect(a[4] ^ v, a[4], u);
u = a[5]; v = a[6];
a[5] = bitselect(a[5] ^ a[7], a[5], a[6]);
a[6] = bitselect(a[6] ^ a[8], a[6], a[7]);
a[7] = bitselect(a[7] ^ a[9], a[7], a[8]);
a[8] = bitselect(a[8] ^ u, a[8], a[9]);
if (out_size == 8) return;
a[9] = bitselect(a[9] ^ v, a[9], u);
u = a[10]; v = a[11];
a[10] = bitselect(a[10] ^ a[12], a[10], a[11]);
a[11] = bitselect(a[11] ^ a[13], a[11], a[12]);
a[12] = bitselect(a[12] ^ a[14], a[12], a[13]);
a[13] = bitselect(a[13] ^ u, a[13], a[14]);
a[14] = bitselect(a[14] ^ v, a[14], u);
u = a[15]; v = a[16];
a[15] = bitselect(a[15] ^ a[17], a[15], a[16]);
a[16] = bitselect(a[16] ^ a[18], a[16], a[17]);
a[17] = bitselect(a[17] ^ a[19], a[17], a[18]);
a[18] = bitselect(a[18] ^ u, a[18], a[19]);
a[19] = bitselect(a[19] ^ v, a[19], u);
u = a[20]; v = a[21];
a[20] = bitselect(a[20] ^ a[22], a[20], a[21]);
a[21] = bitselect(a[21] ^ a[23], a[21], a[22]);
a[22] = bitselect(a[22] ^ a[24], a[22], a[23]);
a[23] = bitselect(a[23] ^ u, a[23], a[24]);
a[24] = bitselect(a[24] ^ v, a[24], u);
10 years ago
}
static void keccak_f1600_no_absorb(uint2* a, uint out_size, uint isolate)
10 years ago
{
10 years ago
// Originally I unrolled the first and last rounds to interface
// better with surrounding code, however I haven't done this
// without causing the AMD compiler to blow up the VGPR usage.
10 years ago
uint r = 0;
uint o = 25;
10 years ago
do
{
// This dynamic branch stops the AMD compiler unrolling the loop
// and additionally saves about 33% of the VGPRs, enough to gain another
// wavefront. Ideally we'd get 4 in flight, but 3 is the best I can
// massage out of the compiler. It doesn't really seem to matter how
// much we try and help the compiler save VGPRs because it seems to throw
// that information away, hence the implementation of keccak here
// doesn't bother.
if (isolate)
10 years ago
{
keccak_f1600_round(a, r++, o);
if (r == 23) o = out_size;
10 years ago
}
}
while (r < 24);
10 years ago
// final round optimised for digest size
//keccak_f1600_round(a, 23, out_size);
10 years ago
}
#define copy(dst, src, count) for (uint i = 0; i != count; ++i) { (dst)[i] = (src)[i]; }
static uint fnv(uint x, uint y)
10 years ago
{
return x * FNV_PRIME ^ y;
}
static uint4 fnv4(uint4 x, uint4 y)
10 years ago
{
return x * FNV_PRIME ^ y;
}
static uint fnv_reduce(uint4 v)
10 years ago
{
return fnv(fnv(fnv(v.x, v.y), v.z), v.w);
}
typedef struct
10 years ago
{
ulong ulongs[32 / sizeof(ulong)];
} hash32_t;
typedef struct
10 years ago
{
uint4 uint4s[128 / sizeof(uint4)];
} hash128_t;
9 years ago
typedef union {
uint4 uint4s[4];
ulong ulongs[8];
uint uints[16];
10 years ago
} compute_hash_share;
9 years ago
#if PLATFORM != OPENCL_PLATFORM_NVIDIA // use maxrregs on nv
__attribute__((reqd_work_group_size(GROUP_SIZE, 1, 1)))
9 years ago
#endif
__kernel void ethash_search(
__global volatile uint* restrict g_output,
10 years ago
__constant hash32_t const* g_header,
__global hash128_t const* g_dag,
ulong start_nonce,
ulong target,
10 years ago
uint isolate
)
{
__local compute_hash_share share[HASHES_PER_LOOP];
10 years ago
uint const gid = get_global_id(0);
// Compute one init hash per work item.
9 years ago
// sha3_512(header .. nonce)
ulong state[25];
copy(state, g_header->ulongs, 4);
state[4] = start_nonce + gid;
for (uint i = 6; i != 25; ++i)
{
state[i] = 0;
}
state[5] = 0x0000000000000001;
state[8] = 0x8000000000000000;
10 years ago
keccak_f1600_no_absorb((uint2*)state, 8, isolate);
10 years ago
// Threads work together in this phase in groups of 8.
9 years ago
uint const thread_id = gid & 7;
uint const hash_id = (gid % GROUP_SIZE) >> 3;
10 years ago
9 years ago
for (int i = 0; i < THREADS_PER_HASH; i++)
10 years ago
{
// share init with other threads
if (i == thread_id)
9 years ago
copy(share[hash_id].ulongs, state, 8);
10 years ago
barrier(CLK_LOCAL_MEM_FENCE);
9 years ago
uint4 mix = share[hash_id].uint4s[thread_id & 3];
10 years ago
barrier(CLK_LOCAL_MEM_FENCE);
9 years ago
__local uint *share0 = share[hash_id].uints;
9 years ago
// share init0
if (thread_id == 0)
*share0 = mix.x;
barrier(CLK_LOCAL_MEM_FENCE);
9 years ago
uint init0 = *share0;
9 years ago
for (uint a = 0; a < ACCESSES; a += 4)
9 years ago
{
bool update_share = thread_id == ((a >> 2) & (THREADS_PER_HASH - 1));
9 years ago
for (uint i = 0; i != 4; ++i)
{
if (update_share)
{
*share0 = fnv(init0 ^ (a + i), ((uint *)&mix)[i]) % DAG_SIZE;
}
barrier(CLK_LOCAL_MEM_FENCE);
9 years ago
mix = fnv4(mix, g_dag[*share0].uint4s[thread_id]);
}
9 years ago
}
9 years ago
share[hash_id].uints[thread_id] = fnv_reduce(mix);
barrier(CLK_LOCAL_MEM_FENCE);
if (i == thread_id)
9 years ago
copy(state + 8, share[hash_id].ulongs, 4);
barrier(CLK_LOCAL_MEM_FENCE);
}
for (uint i = 13; i != 25; ++i)
{
state[i] = 0;
}
state[12] = 0x0000000000000001;
state[16] = 0x8000000000000000;
10 years ago
// keccak_256(keccak_512(header..nonce) .. mix);
keccak_f1600_no_absorb((uint2*)state, 1, isolate);
10 years ago
if (as_ulong(as_uchar8(state[0]).s76543210) < target)
10 years ago
{
uint slot = min(MAX_OUTPUTS, atomic_inc(&g_output[0]) + 1);
g_output[slot] = gid;
}
}