]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
scripts: strip "AMD Instinct" from GPU name (#15668)
authorJohannes Gäßler <redacted>
Fri, 29 Aug 2025 20:04:08 +0000 (22:04 +0200)
committerGitHub <redacted>
Fri, 29 Aug 2025 20:04:08 +0000 (22:04 +0200)
scripts/compare-llama-bench.py

index 2cfca66e0938cb0d6b4113b6830a85cc22105519..c45c83fdb55c3d801d70399f41e5f1a128046ea1 100755 (executable)
@@ -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):