scripts : fix missing key in compare-llama-bench.py (#10332)

This commit is contained in:
Georgi Gerganov 2024-11-16 10:32:50 +02:00 committed by GitHub
parent 772703c8ff
commit f245cc28d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -303,14 +303,11 @@ else:
show = []
# Show CPU and/or GPU by default even if the hardware for all results is the same:
if "gpu_blas" not in properties_different and "n_gpu_layers" not in properties_different:
gpu_blas = bool(rows_full[0][KEY_PROPERTIES.index("gpu_blas")])
if "n_gpu_layers" not in properties_different:
ngl = int(rows_full[0][KEY_PROPERTIES.index("n_gpu_layers")])
if not gpu_blas or ngl != 99 and "cpu_info" not in properties_different:
if ngl != 99 and "cpu_info" not in properties_different:
show.append("cpu_info")
if gpu_blas and "gpu_info" not in properties_different:
show.append("gpu_info")
show += properties_different