mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
#include "keccak-gate.h"
|
|
|
|
#ifdef KECCAK_4WAY
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include "sph_keccak.h"
|
|
#include "keccak-hash-4way.h"
|
|
|
|
void keccakhash_4way(void *state, const void *input)
|
|
{
|
|
uint64_t vhash[4*4] __attribute__ ((aligned (64)));
|
|
keccak256_4way_context ctx;
|
|
|
|
keccak256_4way_init( &ctx );
|
|
keccak256_4way( &ctx, input, 80 );
|
|
keccak256_4way_close( &ctx, vhash );
|
|
|
|
mm256_deinterleave_4x64( state, state+32, state+64, state+96, vhash, 256 );
|
|
}
|
|
|
|
int scanhash_keccak_4way( int thr_id, struct work *work, uint32_t max_nonce,
|
|
uint64_t *hashes_done)
|
|
{
|
|
uint32_t vdata[24*4] __attribute__ ((aligned (64)));
|
|
uint32_t hash[8*4] __attribute__ ((aligned (32)));
|
|
uint32_t *pdata = work->data;
|
|
uint32_t *ptarget = work->target;
|
|
uint32_t n = pdata[19];
|
|
const uint32_t first_nonce = pdata[19];
|
|
// const uint32_t Htarg = ptarget[7];
|
|
uint32_t endiandata[20];
|
|
uint32_t *nonces = work->nonces;
|
|
int num_found = 0;
|
|
uint32_t *noncep = vdata + 73; // 9*8 + 1
|
|
|
|
for ( int i=0; i < 19; i++ )
|
|
be32enc( &endiandata[i], pdata[i] );
|
|
|
|
uint64_t *edata = (uint64_t*)endiandata;
|
|
mm256_interleave_4x64( (uint64_t*)vdata, edata, edata, edata, edata, 640 );
|
|
|
|
do {
|
|
be32enc( noncep, n );
|
|
be32enc( noncep+2, n+1 );
|
|
be32enc( noncep+4, n+2 );
|
|
be32enc( noncep+6, n+3 );
|
|
|
|
keccakhash_4way( hash, vdata );
|
|
|
|
for ( int i = 0; i < 4; i++ )
|
|
if ( ( ( (hash+(i<<3))[7] & 0xFFFFFF00 ) == 0 )
|
|
&& fulltest( hash+(i<<3), ptarget ) )
|
|
{
|
|
pdata[19] = n+i;
|
|
nonces[ num_found++ ] = n+i;
|
|
work_set_target_ratio( work, hash+(i<<3) );
|
|
}
|
|
n += 4;
|
|
|
|
} while ( (num_found == 0) && (n < max_nonce-4)
|
|
&& !work_restart[thr_id].restart);
|
|
|
|
*hashes_done = n - first_nonce + 1;
|
|
return num_found;
|
|
}
|
|
|
|
#endif
|