mirror of https://github.com/GOSTSec/ccminer
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.
116 lines
3.0 KiB
116 lines
3.0 KiB
10 years ago
|
/**
|
||
|
* SKEIN512 80 + SKEIN512 64 (Woodcoin)
|
||
|
* by tpruvot@github - 2015
|
||
|
*/
|
||
10 years ago
|
#include <string.h>
|
||
10 years ago
|
|
||
10 years ago
|
#include "sph/sph_skein.h"
|
||
|
|
||
|
#include "miner.h"
|
||
|
#include "cuda_helper.h"
|
||
|
|
||
|
static uint32_t *d_hash[MAX_GPUS];
|
||
|
|
||
10 years ago
|
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
||
|
|
||
10 years ago
|
extern void skein512_cpu_setBlock_80(void *pdata);
|
||
10 years ago
|
extern void skein512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int swap);
|
||
10 years ago
|
|
||
|
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||
|
|
||
10 years ago
|
void skein2hash(void *output, const void *input)
|
||
10 years ago
|
{
|
||
10 years ago
|
uint32_t _ALIGN(64) hash[16];
|
||
10 years ago
|
sph_skein512_context ctx_skein;
|
||
|
|
||
|
sph_skein512_init(&ctx_skein);
|
||
|
sph_skein512(&ctx_skein, input, 80);
|
||
|
sph_skein512_close(&ctx_skein, hash);
|
||
10 years ago
|
|
||
10 years ago
|
sph_skein512_init(&ctx_skein);
|
||
|
sph_skein512(&ctx_skein, hash, 64);
|
||
|
sph_skein512_close(&ctx_skein, hash);
|
||
|
|
||
10 years ago
|
memcpy(output, (void*) hash, 32);
|
||
10 years ago
|
}
|
||
|
|
||
|
static bool init[MAX_GPUS] = { 0 };
|
||
|
|
||
10 years ago
|
int scanhash_skein2(int thr_id, uint32_t *pdata, const uint32_t *ptarget,
|
||
10 years ago
|
uint32_t max_nonce, unsigned long *hashes_done)
|
||
10 years ago
|
{
|
||
|
const uint32_t first_nonce = pdata[19];
|
||
|
|
||
10 years ago
|
uint32_t throughput = device_intensity(thr_id, __func__, 1 << 19); // 256*256*8
|
||
|
throughput = min(throughput, (max_nonce - first_nonce));
|
||
10 years ago
|
|
||
|
if (opt_benchmark)
|
||
10 years ago
|
((uint32_t*)ptarget)[7] = 0;
|
||
10 years ago
|
|
||
|
if (!init[thr_id])
|
||
|
{
|
||
|
cudaSetDevice(device_map[thr_id]);
|
||
|
|
||
10 years ago
|
cudaMalloc(&d_hash[thr_id], throughput * 64U);
|
||
|
|
||
10 years ago
|
quark_skein512_cpu_init(thr_id, throughput);
|
||
|
cuda_check_cpu_init(thr_id, throughput);
|
||
10 years ago
|
|
||
10 years ago
|
CUDA_SAFE_CALL(cudaDeviceSynchronize());
|
||
10 years ago
|
|
||
|
init[thr_id] = true;
|
||
|
}
|
||
|
|
||
|
uint32_t endiandata[20];
|
||
10 years ago
|
for (int k=0; k < 19; k++)
|
||
10 years ago
|
be32enc(&endiandata[k], pdata[k]);
|
||
|
|
||
|
skein512_cpu_setBlock_80((void*)endiandata);
|
||
|
cuda_check_cpu_setTarget(ptarget);
|
||
|
|
||
|
do {
|
||
|
int order = 0;
|
||
|
|
||
|
// Hash with CUDA
|
||
10 years ago
|
skein512_cpu_hash_80(thr_id, throughput, pdata[19], d_hash[thr_id], 0);
|
||
10 years ago
|
quark_skein512_cpu_hash_64(thr_id, throughput, pdata[19], NULL, d_hash[thr_id], order++);
|
||
10 years ago
|
|
||
|
*hashes_done = pdata[19] - first_nonce + throughput;
|
||
10 years ago
|
|
||
|
uint32_t foundNonce = cuda_check_hash(thr_id, throughput, pdata[19], d_hash[thr_id]);
|
||
|
if (foundNonce != UINT32_MAX)
|
||
|
{
|
||
10 years ago
|
uint32_t _ALIGN(64) vhash64[8];
|
||
10 years ago
|
|
||
|
endiandata[19] = foundNonce;
|
||
|
skein2hash(vhash64, endiandata);
|
||
|
|
||
10 years ago
|
if (vhash64[7] <= ptarget[7] && fulltest(vhash64, ptarget)) {
|
||
10 years ago
|
int res = 1;
|
||
|
uint32_t secNonce = cuda_check_hash_suppl(thr_id, throughput, pdata[19], d_hash[thr_id], 1);
|
||
|
if (secNonce != 0) {
|
||
|
if (!opt_quiet)
|
||
|
applog(LOG_BLUE, "GPU #%d: found second nonce %08x !", device_map[thr_id], swab32(secNonce));
|
||
|
pdata[21] = swab32(secNonce);
|
||
|
res++;
|
||
|
}
|
||
|
pdata[19] = swab32(foundNonce);
|
||
|
return res;
|
||
10 years ago
|
} else {
|
||
|
applog(LOG_WARNING, "GPU #%d: result for nonce %08x does not validate on CPU!", device_map[thr_id], foundNonce);
|
||
10 years ago
|
}
|
||
|
}
|
||
|
|
||
10 years ago
|
if ((uint64_t) pdata[19] + throughput > max_nonce) {
|
||
|
*hashes_done = pdata[19] - first_nonce;
|
||
|
pdata[19] = max_nonce;
|
||
10 years ago
|
break;
|
||
|
}
|
||
|
|
||
10 years ago
|
pdata[19] += throughput;
|
||
|
|
||
10 years ago
|
} while (!work_restart[thr_id].restart);
|
||
10 years ago
|
|
||
|
return 0;
|
||
|
}
|