diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-05-20 08:55:09 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-05-20 08:55:09 +0300 |
commit | 2789baf480ba7dc9281b65f601f0918e58920f54 (patch) | |
tree | 2091623edf949a34de4e83e6b0c21340e8df2c3f /examples | |
parent | 33c8d50accd6dca73c9c4af00a05e24209c160fe (diff) |
tests : fix --keep_split -> --keep-split (#7374)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/quantize/tests.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/quantize/tests.sh b/examples/quantize/tests.sh index 160c12be..a3ca74c6 100644 --- a/examples/quantize/tests.sh +++ b/examples/quantize/tests.sh @@ -41,8 +41,8 @@ $SPLIT --split-max-tensors 28 $WORK_PATH/gemma-1.1-2b-it.Q8_0.gguf $WORK_PATH/g echo PASS echo -# 3. Requant model with '--keep_split' -$QUANTIZE --allow-requantize --keep_split $WORK_PATH/ggml-model-split-00001-of-00006.gguf $WORK_PATH/ggml-model-requant.gguf Q4_K +# 3. Requant model with '--keep-split' +$QUANTIZE --allow-requantize --keep-split $WORK_PATH/ggml-model-split-00001-of-00006.gguf $WORK_PATH/ggml-model-requant.gguf Q4_K echo PASS echo @@ -51,7 +51,7 @@ $MAIN --model $WORK_PATH/ggml-model-requant-00001-of-00006.gguf --random-prompt echo PASS echo -# 4. Requant mode without '--keep_split' +# 4. Requant mode without '--keep-split' $QUANTIZE --allow-requantize $WORK_PATH/ggml-model-split-00001-of-00006.gguf $WORK_PATH/ggml-model-requant-merge.gguf Q4_K echo PASS echo |