Files
cpuminer-opt-gpu/algo/x17/x17-gate.c
Jay D Dee d6e8d7a46e v3.9.4
2019-06-18 13:15:45 -04:00

16 lines
349 B
C

#include "x17-gate.h"
bool register_x17_algo( algo_gate_t* gate )
{
#if defined (X17_4WAY)
gate->scanhash = (void*)&scanhash_x17_4way;
gate->hash = (void*)&x17_4way_hash;
#else
gate->scanhash = (void*)&scanhash_x17;
gate->hash = (void*)&x17_hash;
#endif
gate->optimizations = SSE2_OPT | AES_OPT | AVX2_OPT;
return true;
};