From: Johannes Gäßler Date: Fri, 29 Aug 2025 20:04:08 +0000 (+0200) Subject: scripts: strip "AMD Instinct" from GPU name (#15668) X-Git-Tag: upstream/0.0.6527~207 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=3d16b29c3bb1ec816ac0e782f20d169097063919;p=pkg%2Fggml%2Fsources%2Fllama.cpp scripts: strip "AMD Instinct" from GPU name (#15668) --- diff --git a/scripts/compare-llama-bench.py b/scripts/compare-llama-bench.py index 2cfca66e..c45c83fd 100755 --- a/scripts/compare-llama-bench.py +++ b/scripts/compare-llama-bench.py @@ -96,7 +96,7 @@ DEFAULT_HIDE_LLAMA_BENCH = ["model_filename"] # Always hide these properties by DEFAULT_SHOW_TEST_BACKEND_OPS = ["backend_name", "op_name"] # Always show these properties by default. DEFAULT_HIDE_TEST_BACKEND_OPS = ["error_message"] # Always hide these properties by default. -GPU_NAME_STRIP = ["NVIDIA GeForce ", "Tesla ", "AMD Radeon "] # Strip prefixes for smaller tables. +GPU_NAME_STRIP = ["NVIDIA GeForce ", "Tesla ", "AMD Radeon ", "AMD Instinct "] # Strip prefixes for smaller tables. MODEL_SUFFIX_REPLACE = {" - Small": "_S", " - Medium": "_M", " - Large": "_L"} DESCRIPTION = """Creates tables from llama-bench or test-backend-ops data written to multiple JSON/CSV files, a single JSONL file or SQLite database. Example usage (Linux):