mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 01:16:18 +00:00
Just a set of scripts to integrate these benchmarks with ezbench. They need to be revised to plugin into latest version of ezbench. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
13 lines
254 B
Plaintext
13 lines
254 B
Plaintext
test_name="gem:sys:latency"
|
|
test_exec_time=10
|
|
test_invert=1
|
|
|
|
[ -e $IGT_BENCHMARKS/gem_syslatency ] || return 1
|
|
sudo -n true || return 1
|
|
|
|
gem:sys:latency_run() {
|
|
for (( c=0; c<$1; c++ )); do
|
|
sudo $IGT_BENCHMARKS/gem_syslatency -f 1
|
|
done
|
|
}
|