blob: d219214a29b7a5498b7188e107ea16cae1e69179 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Hooks
#function ezbench_pre_hook() {
#}
#function ezbench_post_hook() {
#}
#function compile_pre_hook() {
# Accessible variables
# $commit [RO]: SHA1 id of the current commit
# $commitName [RO]: Name of the commit
#}
#function compile_post_hook() {
# Accessible variables
# $commit [RO]: SHA1 id of the current commit
# $commitName [RO]: Name of the commit
#}
#function <benchmark name>_run_pre_hook() {
# Accessible variables
# $benchName [RO]: Name of the benchmark
# $commit [RO]: SHA1 id of the current commit
# $commitName [RO]: Name of the commit
#}
#function <benchmark name>_run_post_hook() {
# Accessible variables
# $benchName [RO]: Name of the benchmark
# $commit [RO]: SHA1 id of the current commit
# $commitName [RO]: Name of the commit
# $fpsTest [RW]: List of FPS values returned by the test
#}
# Libraries options
LIBFRAMETIME64_SO=/usr/lib/libframetime.so
LIBFRAMETIME32_SO=/usr/lib32/libframetime.so
# Benchmark parameters
SYNMARK_FOLDER=/opt/SynMark2
# UE4 parameters
UE4_FOLDER="/opt/benchmarks/Unreal Engine 4"
UE4_WINDOW_SIZE_X=128
UE4_WINDOW_SIZE_Y=80
# Unigine settings
UNIGINE_HEAVEN_FOLDER=/opt/benchmarks/Unigine_Heaven-4.0
UNIGINE_VALLEY_FOLDER=/opt/benchmarks/Unigine_Valley-1.0
# GpuTest settings
GPUTEST_FOLDER=/opt/benchmarks/GpuTest_Linux_x64_0.7.0
# Lightsmark settings
LIGHTSMARK_FOLDER=/opt/benchmarks/Lightsmark2008.2.0
# Citybench settings
CITYBENCH_FOLDER=/opt/replay_hbas_citybench
# GLBenchmark settings
GLBENCHMARK27_FOLDER=/opt/benchmarks/glbenchmark2.7.0
#GLBENCHMARK27_WIDTH=1920
#GLBENCHMARK27_HEIGHT=1080
GLBENCHMARK30_FOLDER=/opt/benchmarks/gfxbench3_desktop/
#GLBENCHMARK30_WIDTH=1920
#GLBENCHMARK30_HEIGHT=1080
# LuxMark settings
LUXMARK_FOLDER=/opt/benchmarks/luxmark-v3.0
# PolyBench-ACC settings
# https://github.com/cavazos-lab/PolyBench-ACC
POLYBENCH_ACC_FOLDER=/opt/benchmarks/PolyBench-ACC
# FinanceBench settings
# https://github.com/cavazos-lab/FinanceBench
FINANCEBENCH_FOLDER=/opt/benchmarks/FinanceBench
# intel-gpu-tools settings
IGT_BENCHMARKS=/opt/intel-gpu-tools/benchmarks
IGT_TRACES=/opt/intel-gpu-tools/traces
# cairo-demos settings
CAIRO_DEMOS=/opt/benchmarks/cairo-demos
# xf86-video-intel setting
XF86_VIDEO_INTEL=/opt/benchmarks/xf86-video-intel
|