Skip to content

Commit

Permalink
Fixup algos
Browse files Browse the repository at this point in the history
  • Loading branch information
Spudz76 committed Oct 24, 2020
1 parent 838f859 commit ac69e09
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/3rdparty/moneroocean/PerfChk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ double PerfChk::get_algo_perf(Algorithm::Id algo) const {
case Algorithm::CN_PICO_TLO: return m_perfchk_algo_perf[PerfChkAlgo::CN_PICO_0];
case Algorithm::CN_GPU: return m_perfchk_algo_perf[PerfChkAlgo::CN_GPU];
case Algorithm::AR2_CHUKWA: return m_perfchk_algo_perf[PerfChkAlgo::AR2_CHUKWA];
case Algorithm::AR2_CHUKWA_V2: return m_perfchk_algo_perf[PerfChkAlgo::AR2_CHUKWA_V2];
case Algorithm::AR2_WRKZ: return m_perfchk_algo_perf[PerfChkAlgo::AR2_WRKZ];
case Algorithm::ASTROBWT_DERO: return m_perfchk_algo_perf[PerfChkAlgo::ASTROBWT_DERO];
case Algorithm::RX_0: return m_perfchk_algo_perf[PerfChkAlgo::RX_0];
Expand Down
6 changes: 6 additions & 0 deletions src/3rdparty/moneroocean/PerfChk.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,14 @@ class PerfChk : public IJobResultListener {
CN_PICO_0, // "cn-pico" CryptoNight-Pico.
CN_CCX, // "cn/ccx" Conceal (CCX).
CN_GPU, // "cn/gpu" CryptoNight-GPU (Ryo).
AR2_CHUKWA, // "argon2/chukwa" Argon2id (Chukwa).
AR2_CHUKWA_V2, // "argon2/chukwav2" Argon2id (Chukwa v2).
AR2_WRKZ, // "argon2/wrkz" Argon2id (WRKZ).
ASTROBWT_DERO, // "astrobwt" AstroBWT (Dero).
RX_0, // "rx/0" RandomX (Monero).
RX_WOW, // "rx/wow" RandomWOW (Wownero).
RX_ARQ, // "rx/arq" RandomARQ (Arqma).
RX_KEVA, // "rx/keva" RandomKEVA (Keva).
RX_XLA, // "panthera" Panthera (Scala2).
MAX,
MIN = 0,
Expand All @@ -57,11 +60,14 @@ class PerfChk : public IJobResultListener {
Algorithm::CN_PICO_0,
Algorithm::CN_CCX,
Algorithm::CN_GPU,
Algorithm::AR2_CHUKWA,
Algorithm::AR2_CHUKWA_V2,
Algorithm::AR2_WRKZ,
Algorithm::ASTROBWT_DERO,
Algorithm::RX_0,
Algorithm::RX_WOW,
Algorithm::RX_ARQ,
Algorithm::RX_KEVA,
Algorithm::RX_XLA,
};

Expand Down

0 comments on commit ac69e09

Please sign in to comment.