This commit is contained in:
Jay D Dee
2017-11-20 21:19:15 -05:00
parent ab39e88318
commit 6d1361c87f
46 changed files with 6314 additions and 141 deletions

15
algo/skein/skein2-gate.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef __SKEIN2GATE_H__
#define __SKEIN2_GATE_H__
#include <stdint.h>
#if defined(__AVX2__)
void skein2hash_4way( void *output, const void *input );
int scanhash_skein2_4way( int thr_id, struct work *work, uint32_t max_nonce,
uint64_t* hashes_done );
#endif
void skein2hash( void *output, const void *input );
int scanhash_skein2( int thr_id, struct work *work, uint32_t max_nonce,
uint64_t *hashes_done );
#endif