#ifndef __SKEIN_GATE_H__ #define __SKEIN_GATE_H__ #include #include "algo-gate-api.h" #if defined(FOUR_WAY) && defined(__AVX2__) #define SKEIN_4WAY #endif #if defined(SKEIN_4WAY) void skeinhash_4way( void *output, const void *input ); int scanhash_skein_4way( int thr_id, struct work *work, uint32_t max_nonce, uint64_t *hashes_done ); #endif void skeinhash( void *output, const void *input ); int scanhash_skein( int thr_id, struct work *work, uint32_t max_nonce, uint64_t *hashes_done ); #endif