Added experimental DefyX support

This commit is contained in:
MoneroOcean 2019-08-15 17:23:22 -07:00
parent 4639c860a4
commit c19cb4672d
30 changed files with 5249 additions and 2 deletions

View file

@ -26,6 +26,7 @@
#include "crypto/randomx/randomx.h"
#include "crypto/defyx/defyx.h"
#include "crypto/rx/RxAlgo.h"
@ -40,6 +41,10 @@ xmrig::Algorithm::Id xmrig::RxAlgo::apply(Algorithm::Id algorithm)
randomx_apply_config(RandomX_LokiConfig);
break;
case Algorithm::DEFYX:
randomx_apply_config(RandomX_ScalaConfig);
break;
default:
randomx_apply_config(RandomX_MoneroConfig);
break;
@ -61,6 +66,9 @@ size_t xmrig::RxAlgo::l3(Algorithm::Id algorithm)
case Algorithm::RX_LOKI:
return RandomX_LokiConfig.ScratchpadL3_Size;
case Algorithm::DEFYX:
return RandomX_ScalaConfig.ScratchpadL3_Size;
default:
break;
}