Added DefyX profile

This commit is contained in:
MoneroOcean 2019-08-15 18:54:41 -07:00
parent 58a4f727cd
commit 962ac3ad8e

View file

@ -60,6 +60,7 @@ static const char *kCnPico = "cn-pico";
#ifdef XMRIG_ALGO_RANDOMX
static const char *kRx = "rx";
static const char *kRxWOW = "rx/wow";
static const char *kDefyX = "defyx";
#endif
extern template class Threads<CpuThreads>;
@ -173,7 +174,7 @@ void xmrig::CpuConfig::generate()
# ifdef XMRIG_ALGO_RANDOMX
m_threads.move(kRx, cpu->threads(Algorithm::RX_0));
m_threads.move(kRxWOW, cpu->threads(Algorithm::RX_WOW));
m_threads.move("defyx", cpu->threads(Algorithm::DEFYX));
m_threads.move(kDefyX, cpu->threads(Algorithm::DEFYX));
# endif
}