Add new GPU data point; Add smaller diagram number function

This commit is contained in:
2024-02-13 16:22:18 +01:00
parent 5be483c4c1
commit 6a02f3bee6
8 changed files with 44 additions and 50 deletions

View File

@ -44,7 +44,7 @@ if isfile(results_filename)
df = CSV.read(results_filename, DataFrame)
end
nInputs = 1_000
nInputs = 1_000_000
function cpu_bench(compute_function, inputs)
bench = @benchmark begin
@ -80,7 +80,7 @@ function bench_process(
gen_time::Float64,
opt_time::Float64,
func_time::Float64;
use_likwid = true,
use_likwid = false,
use_gpu = true,
)
log("\n--- Benchmarking $(process_name) ---")

View File

@ -41,7 +41,7 @@ if isfile(results_filename)
df = CSV.read(results_filename, DataFrame)
end
nInputs = 1_000
nInputs = 1_000_000
# use "mock" machine that only uses cpu
machine = Machine(
@ -79,7 +79,7 @@ function bench_process(
gen_time::Float64,
opt_time::Float64,
io::IO = stdout;
use_likwid = true,
use_likwid = false,
)
log("\n--- Benchmarking $(process_name) ---")