7ba7db9fa1
Perform the function selection once, and only if CONFIG_AVX512_OPT is enabled. Centralize the selection to xbzrle.c, instead of spreading the init across 3 files. Remove xbzrle-bench.c. The benefit of being able to benchmark the different implementations is less important than not peeking into the internals of the implementation. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
40 lines
1.1 KiB
Meson
40 lines
1.1 KiB
Meson
|
|
qht_bench = executable('qht-bench',
|
|
sources: 'qht-bench.c',
|
|
dependencies: [qemuutil])
|
|
|
|
qtree_bench = executable('qtree-bench',
|
|
sources: 'qtree-bench.c',
|
|
dependencies: [qemuutil])
|
|
|
|
executable('atomic_add-bench',
|
|
sources: files('atomic_add-bench.c'),
|
|
dependencies: [qemuutil],
|
|
build_by_default: false)
|
|
|
|
executable('atomic64-bench',
|
|
sources: files('atomic64-bench.c'),
|
|
dependencies: [qemuutil],
|
|
build_by_default: false)
|
|
|
|
benchs = {}
|
|
|
|
if have_block
|
|
benchs += {
|
|
'benchmark-crypto-hash': [crypto],
|
|
'benchmark-crypto-hmac': [crypto],
|
|
'benchmark-crypto-cipher': [crypto],
|
|
'benchmark-crypto-akcipher': [crypto],
|
|
}
|
|
endif
|
|
|
|
foreach bench_name, deps: benchs
|
|
exe = executable(bench_name, bench_name + '.c',
|
|
dependencies: [qemuutil] + deps)
|
|
benchmark(bench_name, exe,
|
|
args: ['--tap', '-k'],
|
|
protocol: 'tap',
|
|
timeout: 0,
|
|
suite: ['speed'])
|
|
endforeach
|