File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
devops/scripts/benchmarks/benches Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def setup(self):
77
77
"-DCMAKE_BUILD_TYPE=Release" ,
78
78
"-DDNNL_BUILD_TESTS=ON" ,
79
79
"-DDNNL_BUILD_EXAMPLES=OFF" ,
80
- "-DDNNL_CPU_RUNTIME=NONE" , # Disable SYCL support
80
+ "-DDNNL_CPU_RUNTIME=NONE" , # Disable SYCL CPU support
81
81
"-DDNNL_GPU_RUNTIME=SYCL" , # Enable SYCL GPU support
82
82
]
83
83
run (
@@ -89,6 +89,7 @@ def setup(self):
89
89
f"cmake --build { self .build_dir } --target benchdnn -j { options .build_jobs } " ,
90
90
add_sycl = True ,
91
91
ld_library = [str (self .build_dir ) + "/src" ] + self .oneapi .ld_libraries (),
92
+ timeout = 60 * 20 ,
92
93
)
93
94
94
95
def teardown (self ):
Original file line number Diff line number Diff line change @@ -154,9 +154,11 @@ def setup(self):
154
154
f"{ str (model_dir )} /{ self .type } .tpr" ,
155
155
]
156
156
157
+ env_vars = {"GMX_MAXBACKUP" : "-1" }
157
158
# Generate configuration files
158
159
self .conf_result = run (
159
160
cmd_list ,
161
+ env_vars = env_vars ,
160
162
add_sycl = True ,
161
163
ld_library = self .suite .oneapi .ld_libraries (),
162
164
)
You can’t perform that action at this time.
0 commit comments