update constants for yadacoin

This commit is contained in:
Matthew Vogel 2024-07-31 23:45:34 -07:00
parent 5f6bcfe949
commit 5342f25fbf
8 changed files with 38 additions and 9 deletions

View file

@ -126,6 +126,11 @@ size_t inline generate<Algorithm::RANDOM_X>(Threads<CpuThreads> &threads, uint32
count += threads.move(Algorithm::kRX_WOW, std::move(wow));
}
if (!threads.isExist(Algorithm::RX_YADA)) {
auto yada = cpuInfo->threads(Algorithm::RX_YADA, limit);
count += threads.move(Algorithm::kRX_YADA, std::move(yada));
}
count += generate(Algorithm::kRX, threads, Algorithm::RX_0, limit);
return count;