Files
cpuminer-opt-gpu/algo/polytimos/polytimos-gate.c
Jay D Dee 6d1361c87f v3.7.3
2017-11-20 21:19:15 -05:00

13 lines
332 B
C

#include "polytimos-gate.h"
bool register_polytimos_algo( algo_gate_t* gate )
{
gate->optimizations = SSE2_OPT | AES_OPT | AVX_OPT | AVX2_OPT;
init_polytimos_context();
gate->scanhash = (void*)&scanhash_polytimos;
gate->hash = (void*)&polytimos_hash;
gate->get_max64 = (void*)&get_max64_0x3ffff;
return true;
};