mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
18 lines
409 B
C
18 lines
409 B
C
#include "deep-gate.h"
|
|
|
|
bool register_deep_algo( algo_gate_t* gate )
|
|
{
|
|
#if defined (DEEP_2WAY)
|
|
init_deep_2way_ctx();
|
|
gate->scanhash = (void*)&scanhash_deep_2way;
|
|
gate->hash = (void*)&deep_2way_hash;
|
|
#else
|
|
init_deep_ctx();
|
|
gate->scanhash = (void*)&scanhash_deep;
|
|
gate->hash = (void*)&deep_hash;
|
|
#endif
|
|
gate->optimizations = SSE2_OPT | AES_OPT | AVX_OPT | AVX2_OPT;
|
|
return true;
|
|
};
|
|
|