|
|
|
@ -1,6 +1,11 @@
@@ -1,6 +1,11 @@
|
|
|
|
|
#include <stdio.h> |
|
|
|
|
#include <memory.h> |
|
|
|
|
|
|
|
|
|
#ifdef __INTELLISENSE__ |
|
|
|
|
/* for vstudio code colors */ |
|
|
|
|
#define __CUDA_ARCH__ 300 |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#include "cuda_helper.h" |
|
|
|
|
|
|
|
|
|
#define SHL(x, n) ((x) << (n)) |
|
|
|
@ -12,8 +17,7 @@
@@ -12,8 +17,7 @@
|
|
|
|
|
q[i+8] + ROTL64(q[i+9], 37) + q[i+10] + ROTL64(q[i+11], 43) + \ |
|
|
|
|
q[i+12] + ROTL64(q[i+13], 53) + (SHR(q[i+14],1) ^ q[i+14]) + (SHR(q[i+15],2) ^ q[i+15]) |
|
|
|
|
|
|
|
|
|
#if defined(__CUDA_ARCH__) && __CUDA_ARCH__ < 500 |
|
|
|
|
|
|
|
|
|
#if !defined(__CUDA_ARCH__) || (__CUDA_ARCH__ >= 200 && __CUDA_ARCH__ < 500) |
|
|
|
|
__constant__ uint64_t d_constMem[16] = { |
|
|
|
|
SPH_C64(0x8081828384858687), |
|
|
|
|
SPH_C64(0x88898A8B8C8D8E8F), |
|
|
|
@ -32,6 +36,13 @@ __constant__ uint64_t d_constMem[16] = {
@@ -32,6 +36,13 @@ __constant__ uint64_t d_constMem[16] = {
|
|
|
|
|
SPH_C64(0xF0F1F2F3F4F5F6F7), |
|
|
|
|
SPH_C64(0xF8F9FAFBFCFDFEFF) |
|
|
|
|
}; |
|
|
|
|
# ifdef __GNUC__ |
|
|
|
|
// windows and linux doesnt require the same ifdef for __constant__ |
|
|
|
|
# pragma GCC diagnostic ignored "-Wunused-variable" |
|
|
|
|
# endif |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#if defined(__CUDA_ARCH__) && __CUDA_ARCH__ < 500 |
|
|
|
|
|
|
|
|
|
__device__ |
|
|
|
|
void Compression512_30(uint64_t *msg, uint64_t *hash) |