File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -303,14 +303,11 @@ def get_rows(properties):
303303
304304 show = []
305305 # Show CPU and/or GPU by default even if the hardware for all results is the same:
306- if "gpu_blas" not in properties_different and "n_gpu_layers" not in properties_different :
307- gpu_blas = bool (rows_full [0 ][KEY_PROPERTIES .index ("gpu_blas" )])
306+ if "n_gpu_layers" not in properties_different :
308307 ngl = int (rows_full [0 ][KEY_PROPERTIES .index ("n_gpu_layers" )])
309308
310- if not gpu_blas or ngl != 99 and "cpu_info" not in properties_different :
309+ if ngl != 99 and "cpu_info" not in properties_different :
311310 show .append ("cpu_info" )
312- if gpu_blas and "gpu_info" not in properties_different :
313- show .append ("gpu_info" )
314311
315312 show += properties_different
316313
You can’t perform that action at this time.
0 commit comments