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>
9 lines
275 B
Plaintext
9 lines
275 B
Plaintext
test_exec_time=2
|
|
|
|
[ -e $IGT_BENCHMARKS/gem_create ] || return 1
|
|
sudo -n true || return 1
|
|
|
|
test_name="gem:create:4k gem:create:4M"
|
|
gem:create:4k_run() { sudo $IGT_BENCHMARKS/gem_create -s 4096 -r $1; }
|
|
gem:create:4M_run() { sudo $IGT_BENCHMARKS/gem_create -s 4194304 -r $1; }
|