Files
cpuminer-opt-gpu/algo/whirlpool/whirlpool-gate.c
Jay D Dee 7a1389998b v3.7.6
2017-12-14 18:28:51 -05:00

17 lines
385 B
C

#include "whirlpool-gate.h"
bool register_whirlpool_algo( algo_gate_t* gate )
{
#if defined (WHIRLPOOL_4WAY)
four_way_not_tested();
gate->scanhash = (void*)&scanhash_whirlpool_4way;
gate->hash = (void*)&whirlpool_hash_4way;
#else
gate->scanhash = (void*)&scanhash_whirlpool;
gate->hash = (void*)&whirlpool_hash;
init_whirlpool_ctx();
#endif
return true;
};