diff options
author | slaren <slarengh@gmail.com> | 2024-03-05 22:27:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-05 22:27:29 +0100 |
commit | 652ca2bded3c818320d92c70d2b67f64bdbff5e5 (patch) | |
tree | 619da1bae3f6f7e956ffcb7cacde06c572f507ae /scripts/compare-llama-bench.py | |
parent | bd836944f826f07e19b7edcf994a78728da49c1c (diff) |
compare-llama-bench.py : remove mul_mat_q (#5892)
Diffstat (limited to 'scripts/compare-llama-bench.py')
-rwxr-xr-x | scripts/compare-llama-bench.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/compare-llama-bench.py b/scripts/compare-llama-bench.py index 39c3e52e..54a7771d 100755 --- a/scripts/compare-llama-bench.py +++ b/scripts/compare-llama-bench.py @@ -18,7 +18,7 @@ except ImportError as e: KEY_PROPERTIES = [ "cpu_info", "gpu_info", "n_gpu_layers", "main_gpu", "cuda", "opencl", "metal", "gpu_blas", "blas", "model_filename", "model_type", "model_size", "model_n_params", "n_batch", "n_threads", - "type_k", "type_v", "no_kv_offload", "mul_mat_q", "tensor_split", "n_prompt", "n_gen" + "type_k", "type_v", "no_kv_offload", "tensor_split", "n_prompt", "n_gen" ] # Properties that are boolean and are converted to Yes/No for the table: |