Add Flex algo (for KCN coin) algo support

This commit is contained in:
MoneroOcean 2024-05-27 11:03:46 -07:00
parent 7445870414
commit bf3831c05b
43 changed files with 5160 additions and 23 deletions

View file

@ -34,6 +34,7 @@ class Job;
class MoBenchmark : public IJobResultListener {
enum BenchAlgo : int {
FLEX_KCN, // "flex" Flex
GHOSTRIDER_RTM, // "ghostrider" GhostRider
CN_R, // "cn/r" CryptoNightR (Monero's variant 4).
CN_LITE_1, // "cn-lite/1" CryptoNight-Lite variant 1.
@ -53,6 +54,7 @@ class MoBenchmark : public IJobResultListener {
};
const Algorithm::Id ba2a[BenchAlgo::MAX] = {
Algorithm::FLEX_KCN,
Algorithm::GHOSTRIDER_RTM,
Algorithm::CN_R,
Algorithm::CN_LITE_1,