Panthera algo implementation

This commit is contained in:
MoneroOcean 2020-07-16 16:43:19 -07:00
parent 50b1bf8a1d
commit 5eafa9e455
20 changed files with 2897 additions and 426 deletions

View file

@ -142,6 +142,10 @@ size_t inline generate<Algorithm::RANDOM_X>(Threads<CpuThreads> &threads, uint32
count += generate("defyx", threads, Algorithm::RX_DEFYX, limit);
}
if (!threads.isExist(Algorithm::RX_XLA)) {
count += generate("panthera", threads, Algorithm::RX_XLA, limit);
}
count += generate("rx", threads, Algorithm::RX_0, limit);
return count;