2014-04-26 23:26:08 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
2015-05-10 16:14:06 +00:00
|
|
|
#include <cuda_runtime.h>
|
2014-04-26 23:26:08 +00:00
|
|
|
#include <openssl/sha.h>
|
|
|
|
|
2014-11-16 23:10:13 +00:00
|
|
|
#include "sph/sph_groestl.h"
|
2014-11-10 16:42:08 +00:00
|
|
|
#include "cuda_groestlcoin.h"
|
|
|
|
|
2014-11-16 23:10:13 +00:00
|
|
|
#include "miner.h"
|
|
|
|
|
2015-05-10 18:07:20 +00:00
|
|
|
// CPU hash
|
|
|
|
void groestlhash(void *state, const void *input)
|
2014-04-26 23:26:08 +00:00
|
|
|
{
|
2015-05-10 18:07:20 +00:00
|
|
|
uint32_t _ALIGN(64) hash[16];
|
|
|
|
sph_groestl512_context ctx_groestl;
|
2014-04-26 23:26:08 +00:00
|
|
|
|
2015-05-10 18:07:20 +00:00
|
|
|
sph_groestl512_init(&ctx_groestl);
|
|
|
|
sph_groestl512(&ctx_groestl, input, 80);
|
|
|
|
sph_groestl512_close(&ctx_groestl, hash);
|
2014-04-26 23:26:08 +00:00
|
|
|
|
2015-05-10 18:07:20 +00:00
|
|
|
sph_groestl512_init(&ctx_groestl);
|
|
|
|
sph_groestl512(&ctx_groestl, hash, 64);
|
|
|
|
sph_groestl512_close(&ctx_groestl, hash);
|
2014-04-26 23:26:08 +00:00
|
|
|
|
2015-05-10 18:07:20 +00:00
|
|
|
memcpy(state, hash, 32);
|
2014-04-26 23:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 03:34:30 +00:00
|
|
|
static bool init[MAX_GPUS] = { 0 };
|
2014-04-26 23:26:08 +00:00
|
|
|
|
2015-09-23 09:56:47 +00:00
|
|
|
int scanhash_groestlcoin(int thr_id, struct work *work, uint32_t max_nonce, unsigned long *hashes_done)
|
2015-01-24 09:43:58 +00:00
|
|
|
{
|
2015-09-23 09:56:47 +00:00
|
|
|
uint32_t _ALIGN(64) endiandata[32];
|
|
|
|
uint32_t *pdata = work->data;
|
|
|
|
uint32_t *ptarget = work->target;
|
2015-05-10 18:07:20 +00:00
|
|
|
uint32_t start_nonce = pdata[19];
|
2015-10-11 02:56:58 +00:00
|
|
|
uint32_t throughput = cuda_default_throughput(thr_id, 1 << 19); // 256*256*8
|
|
|
|
if (init[thr_id]) throughput = min(throughput, max_nonce - start_nonce);
|
2015-05-10 18:07:20 +00:00
|
|
|
|
|
|
|
if (opt_benchmark)
|
2015-11-01 14:36:26 +00:00
|
|
|
ptarget[7] = 0x001f;
|
2015-05-10 18:07:20 +00:00
|
|
|
|
|
|
|
if (!init[thr_id])
|
|
|
|
{
|
|
|
|
cudaSetDevice(device_map[thr_id]);
|
2016-01-26 19:38:17 +00:00
|
|
|
if (opt_cudaschedule == -1 && gpu_threads == 1) {
|
|
|
|
cudaDeviceReset();
|
|
|
|
// reduce cpu usage
|
|
|
|
cudaSetDeviceFlags(cudaDeviceScheduleBlockingSync);
|
|
|
|
CUDA_LOG_ERROR();
|
|
|
|
}
|
2016-09-26 22:05:17 +00:00
|
|
|
gpulog(LOG_INFO, thr_id, "Intensity set to %g, %u cuda threads", throughput2intensity(throughput), throughput);
|
|
|
|
|
2015-10-16 20:01:29 +00:00
|
|
|
CUDA_LOG_ERROR();
|
2015-05-10 18:07:20 +00:00
|
|
|
groestlcoin_cpu_init(thr_id, throughput);
|
|
|
|
init[thr_id] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int k=0; k < 20; k++)
|
|
|
|
be32enc(&endiandata[k], pdata[k]);
|
|
|
|
|
|
|
|
groestlcoin_cpu_setBlock(thr_id, endiandata, (void*)ptarget);
|
|
|
|
|
|
|
|
do {
|
|
|
|
uint32_t foundNounce = UINT32_MAX;
|
|
|
|
|
|
|
|
*hashes_done = pdata[19] - start_nonce + throughput;
|
|
|
|
|
|
|
|
// GPU hash
|
2016-07-05 09:06:58 +00:00
|
|
|
groestlcoin_cpu_hash(thr_id, throughput, pdata[19], &foundNounce);
|
2015-05-10 18:07:20 +00:00
|
|
|
|
2015-11-01 14:36:26 +00:00
|
|
|
if (foundNounce < UINT32_MAX && bench_algo < 0)
|
2015-05-10 18:07:20 +00:00
|
|
|
{
|
2015-09-23 09:56:47 +00:00
|
|
|
uint32_t _ALIGN(64) vhash[8];
|
2015-05-10 18:07:20 +00:00
|
|
|
endiandata[19] = swab32(foundNounce);
|
2015-09-23 09:56:47 +00:00
|
|
|
groestlhash(vhash, endiandata);
|
2015-05-10 18:07:20 +00:00
|
|
|
|
2015-09-23 09:56:47 +00:00
|
|
|
if (vhash[7] <= ptarget[7] && fulltest(vhash, ptarget)) {
|
2015-10-07 18:02:10 +00:00
|
|
|
work_set_target_ratio(work, vhash);
|
2015-05-10 18:07:20 +00:00
|
|
|
pdata[19] = foundNounce;
|
|
|
|
return true;
|
2016-07-05 09:06:58 +00:00
|
|
|
} else if (vhash[7] > ptarget[7]) {
|
2015-10-16 20:01:29 +00:00
|
|
|
gpulog(LOG_WARNING, thr_id, "result for %08x does not validate on CPU!", foundNounce);
|
2015-05-10 18:07:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-01 14:36:26 +00:00
|
|
|
if ((uint64_t) throughput + pdata[19] >= max_nonce) {
|
2015-05-10 18:07:20 +00:00
|
|
|
pdata[19] = max_nonce;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pdata[19] += throughput;
|
|
|
|
|
2015-11-01 14:36:26 +00:00
|
|
|
} while (!work_restart[thr_id].restart);
|
|
|
|
|
|
|
|
*hashes_done = pdata[19] - start_nonce;
|
2015-05-10 18:07:20 +00:00
|
|
|
return 0;
|
2014-04-26 23:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 05:51:09 +00:00
|
|
|
// cleanup
|
|
|
|
void free_groestlcoin(int thr_id)
|
|
|
|
{
|
|
|
|
if (!init[thr_id])
|
|
|
|
return;
|
|
|
|
|
2015-10-16 20:01:29 +00:00
|
|
|
cudaThreadSynchronize();
|
2015-09-25 05:51:09 +00:00
|
|
|
|
|
|
|
groestlcoin_cpu_free(thr_id);
|
|
|
|
init[thr_id] = false;
|
|
|
|
|
|
|
|
cudaDeviceSynchronize();
|
2015-10-11 02:56:58 +00:00
|
|
|
}
|