Removed AR2_WRKZ bench

This commit is contained in:
MoneroOcean 2019-10-29 14:20:28 -07:00
parent 245838ffae
commit 1c4178eedc
2 changed files with 0 additions and 3 deletions

View file

@ -127,7 +127,6 @@ float Benchmark::get_algo_perf(Algorithm::Id algo) const {
case Algorithm::DEFYX: return m_bench_algo_perf[BenchAlgo::DEFYX];
case Algorithm::RX_ARQ: return m_bench_algo_perf[BenchAlgo::RX_ARQ];
case Algorithm::AR2_CHUKWA: return m_bench_algo_perf[BenchAlgo::AR2_CHUKWA];
case Algorithm::AR2_WRKZ: return m_bench_algo_perf[BenchAlgo::AR2_WRKZ];
default: return 0.0f;
}
}

View file

@ -31,7 +31,6 @@ class Benchmark : public IJobResultListener {
enum BenchAlgo : int {
AR2_CHUKWA, // "argon2/chukwa"
AR2_WRKZ, // "argon2/wrkz"
RX_LOKI, // "rx/loki" RandomXL (Loki).
RX_WOW, // "rx/wow" RandomWOW (Wownero).
DEFYX, // "defyx DefyX.
@ -48,7 +47,6 @@ class Benchmark : public IJobResultListener {
const Algorithm::Id ba2a[BenchAlgo::MAX] = {
Algorithm::AR2_CHUKWA,
Algorithm::AR2_WRKZ,
Algorithm::RX_LOKI,
Algorithm::RX_WOW,
Algorithm::DEFYX,