mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
155 lines
5.2 KiB
C
155 lines
5.2 KiB
C
#include "skein-gate.h"
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include "skein-hash-4way.h"
|
|
|
|
#if defined(SKEIN_8WAY)
|
|
|
|
int scanhash_skein2_8way( struct work *work, uint32_t max_nonce,
|
|
uint64_t *hashes_done, struct thr_info *mythr )
|
|
{
|
|
uint64_t hash[8*8] __attribute__ ((aligned (128)));
|
|
uint32_t vdata[20*8] __attribute__ ((aligned (64)));
|
|
uint32_t lane_hash[8] __attribute__ ((aligned (64)));
|
|
uint64_t *hashq3 = &(hash[3*8]);
|
|
uint32_t *pdata = work->data;
|
|
uint32_t *ptarget = work->target;
|
|
const uint64_t targq3 = ((uint64_t*)ptarget)[3];
|
|
const uint32_t first_nonce = pdata[19];
|
|
const uint32_t last_nonce = max_nonce - 8;
|
|
uint32_t n = first_nonce;
|
|
__m512i *noncev = (__m512i*)vdata + 9;
|
|
const int thr_id = mythr->id;
|
|
const bool bench = opt_benchmark;
|
|
skein512_8x64_context ctx;
|
|
|
|
mm512_bswap32_intrlv80_8x64( vdata, pdata );
|
|
*noncev = mm512_intrlv_blend_32(
|
|
_mm512_set_epi32( n+7, 0, n+6, 0, n+5, 0, n+4, 0,
|
|
n+3, 0, n+2, 0, n+1, 0, n , 0 ), *noncev );
|
|
skein512_8x64_prehash64( &ctx, vdata );
|
|
do
|
|
{
|
|
skein512_8x64_final16( &ctx, hash, vdata + (16*8) );
|
|
skein512_8x64_full( &ctx, hash, hash, 64 );
|
|
|
|
for ( int lane = 0; lane < 8; lane++ )
|
|
if ( unlikely( hashq3[ lane ] <= targq3 && !bench ) )
|
|
{
|
|
extr_lane_8x64( lane_hash, hash, lane, 256 );
|
|
if ( valid_hash( lane_hash, ptarget ) && !bench )
|
|
{
|
|
pdata[19] = bswap_32( n + lane );
|
|
submit_solution( work, lane_hash, mythr );
|
|
}
|
|
}
|
|
*noncev = _mm512_add_epi32( *noncev,
|
|
_mm512_set1_epi64( 0x0000000800000000 ) );
|
|
n += 8;
|
|
} while ( likely( (n < last_nonce) && !work_restart[thr_id].restart ) );
|
|
|
|
pdata[19] = n;
|
|
*hashes_done = n - first_nonce;
|
|
return 0;
|
|
}
|
|
|
|
#elif defined(SKEIN_4WAY)
|
|
|
|
int scanhash_skein2_4way( struct work *work, uint32_t max_nonce,
|
|
uint64_t *hashes_done, struct thr_info *mythr )
|
|
{
|
|
uint64_t hash[8*4] __attribute__ ((aligned (64)));
|
|
uint32_t vdata[20*4] __attribute__ ((aligned (64)));
|
|
uint32_t lane_hash[8] __attribute__ ((aligned (64)));
|
|
uint64_t *hash_q3 = &(hash[3*4]);
|
|
uint32_t *pdata = work->data;
|
|
uint32_t *ptarget = work->target;
|
|
const uint64_t targ_q3 = ((uint64_t*)ptarget)[3];
|
|
const uint32_t first_nonce = pdata[19];
|
|
const uint32_t last_nonce = max_nonce - 4;
|
|
uint32_t n = first_nonce;
|
|
__m256i *noncev = (__m256i*)vdata + 9;
|
|
const int thr_id = mythr->id;
|
|
const bool bench = opt_benchmark;
|
|
skein512_4x64_context ctx;
|
|
|
|
mm256_bswap32_intrlv80_4x64( vdata, pdata );
|
|
skein512_4x64_prehash64( &ctx, vdata );
|
|
*noncev = mm256_intrlv_blend_32(
|
|
_mm256_set_epi32( n+3, 0, n+2, 0, n+1, 0, n, 0 ), *noncev );
|
|
do
|
|
{
|
|
skein512_4x64_final16( &ctx, hash, vdata + (16*4) );
|
|
skein512_4x64_full( &ctx, hash, hash, 64 );
|
|
|
|
for ( int lane = 0; lane < 4; lane++ )
|
|
if ( hash_q3[ lane ] <= targ_q3 )
|
|
{
|
|
extr_lane_4x64( lane_hash, hash, lane, 256 );
|
|
if ( valid_hash( lane_hash, ptarget ) && !bench )
|
|
{
|
|
pdata[19] = bswap_32( n + lane );
|
|
submit_solution( work, lane_hash, mythr );
|
|
}
|
|
}
|
|
*noncev = _mm256_add_epi32( *noncev,
|
|
_mm256_set1_epi64x( 0x0000000400000000 ) );
|
|
n += 4;
|
|
} while ( (n < last_nonce) && !work_restart[thr_id].restart );
|
|
|
|
pdata[19] = n;
|
|
*hashes_done = n - first_nonce;
|
|
return 0;
|
|
}
|
|
|
|
#elif defined(SKEIN_2WAY)
|
|
|
|
int scanhash_skein2_2x64( struct work *work, uint32_t max_nonce,
|
|
uint64_t *hashes_done, struct thr_info *mythr )
|
|
{
|
|
uint64_t hash[8*2] __attribute__ ((aligned (64)));
|
|
uint32_t vdata[20*2] __attribute__ ((aligned (64)));
|
|
skein512_2x64_context ctx;
|
|
uint32_t lane_hash[8] __attribute__ ((aligned (32)));
|
|
uint64_t *hash_q3 = &(hash[3*2]);
|
|
uint32_t *pdata = work->data;
|
|
uint32_t *ptarget = work->target;
|
|
const uint64_t targ_q3 = ((uint64_t*)ptarget)[3];
|
|
const uint32_t first_nonce = pdata[19];
|
|
const uint32_t last_nonce = max_nonce - 4;
|
|
uint32_t n = first_nonce;
|
|
v128u64_t *noncev = (v128u64_t*)vdata + 9;
|
|
const int thr_id = mythr->id;
|
|
const bool bench = opt_benchmark;
|
|
const v128u64_t two = v128_64( 0x0000000200000000 );
|
|
|
|
v128_bswap32_intrlv80_2x64( vdata, pdata );
|
|
skein512_2x64_prehash64( &ctx, vdata );
|
|
*noncev = v128_intrlv_blend_32( v128_set32( n+1, 0, n, 0 ), *noncev );
|
|
|
|
do
|
|
{
|
|
skein512_2x64_final16( &ctx, hash, vdata + (16*2) );
|
|
skein512_2x64_full( &ctx, hash, hash, 64 );
|
|
|
|
for ( int lane = 0; lane < 2; lane++ )
|
|
if ( hash_q3[ lane ] <= targ_q3 )
|
|
{
|
|
extr_lane_2x64( lane_hash, hash, lane, 256 );
|
|
if ( valid_hash( lane_hash, ptarget ) && !bench )
|
|
{
|
|
pdata[19] = bswap_32( n + lane );
|
|
submit_solution( work, lane_hash, mythr );
|
|
}
|
|
}
|
|
*noncev = v128_add32( *noncev, two );
|
|
n += 2;
|
|
} while ( (n < last_nonce) && !work_restart[thr_id].restart );
|
|
|
|
pdata[19] = n;
|
|
*hashes_done = n - first_nonce;
|
|
return 0;
|
|
}
|
|
|
|
#endif
|