diff options
author | hwspeedy <ns@bigbear.dk> | 2024-02-20 03:42:44 +0100 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-02-20 03:42:44 +0100 |
commit | 896b523acf565d236764c0dc0bbb29ba2e27b0f1 (patch) | |
tree | 74138da31053abef1d0644fcf2f4eeafc1bdff0a | |
parent | 25aaa1877ebce61e39526fb017357d20370f58cf (diff) |
FIX minor UI for Internal Network Speed Benchmark
-rw-r--r-- | includes/benchmark.h | 2 | ||||
-rw-r--r-- | modules/benchmark/benches.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/includes/benchmark.h b/includes/benchmark.h index e7a0fc21..399c5e46 100644 --- a/includes/benchmark.h +++ b/includes/benchmark.h @@ -18,10 +18,10 @@ enum BenchmarkEntries { BENCHMARK_NQUEENS, BENCHMARK_FFT, BENCHMARK_RAYTRACE, + BENCHMARK_IPERF3_SINGLE, BENCHMARK_SBCPU_SINGLE, BENCHMARK_SBCPU_ALL, BENCHMARK_SBCPU_QUAD, - BENCHMARK_IPERF3_SINGLE, BENCHMARK_MEMORY_SINGLE, BENCHMARK_MEMORY_DUAL, BENCHMARK_MEMORY_QUAD, diff --git a/modules/benchmark/benches.c b/modules/benchmark/benches.c index 0a9f2bc2..64ec687a 100644 --- a/modules/benchmark/benches.c +++ b/modules/benchmark/benches.c @@ -47,7 +47,7 @@ BENCH_SIMPLE(BENCHMARK_BLOWFISH_THREADS, "CPU Blowfish (Multi-thread)", benchmar BENCH_SIMPLE(BENCHMARK_BLOWFISH_CORES, "CPU Blowfish (Multi-core)", benchmark_bfish_cores, 1); BENCH_SIMPLE(BENCHMARK_ZLIB, "CPU Zlib", benchmark_zlib, 1); BENCH_SIMPLE(BENCHMARK_CRYPTOHASH, "CPU CryptoHash", benchmark_cryptohash, 1); -BENCH_SIMPLE(BENCHMARK_IPERF3_SINGLE, "Iperf3 localhost", benchmark_iperf3_single, 1); +BENCH_SIMPLE(BENCHMARK_IPERF3_SINGLE, "Internal Network Speed", benchmark_iperf3_single, 1); BENCH_SIMPLE(BENCHMARK_SBCPU_SINGLE, "SysBench CPU (Single-thread)", benchmark_sbcpu_single, 1); BENCH_SIMPLE(BENCHMARK_SBCPU_ALL, "SysBench CPU (Multi-thread)", benchmark_sbcpu_all, 1); BENCH_SIMPLE(BENCHMARK_SBCPU_QUAD, "SysBench CPU (Four threads)", benchmark_sbcpu_quad, 1); @@ -155,7 +155,7 @@ static ModuleEntry entries[] = { [BENCHMARK_IPERF3_SINGLE] = { N_("Internal Network Speed"), - "memory.png", + "network.png", callback_benchmark_iperf3_single, scan_benchmark_iperf3_single, MODULE_FLAG_NONE, |