Skip to content

Commit 2ed9ad3

Browse files
committed
fix missing newline
1 parent ef3c0a2 commit 2ed9ad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: examples/quantize/quantize.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ static void usage(const char * executable) {
7575
printf("usage: %s [--help] [--allow-requantize] [--leave-output-tensor] [--pure] model-f32.gguf [model-quant.gguf] type [nthreads]\n\n", executable);
7676
printf(" --allow-requantize: Allows requantizing tensors that have already been quantized. Warning: This can severely reduce quality compared to quantizing from 16bit or 32bit\n");
7777
printf(" --leave-output-tensor: Will leave output.weight un(re)quantized. Increases model size but may also increase quality, especially when requantizing\n");
78-
printf(" --pure: Disable k-quant mixtures and quantize all tensors to the same type");
78+
printf(" --pure: Duisable k-quant mixtures and quantize all tensors to the same type\n");
7979
printf("\nAllowed quantization types:\n");
8080
for (auto & it : QUANT_OPTIONS) {
8181
if (it.name != "COPY") {

0 commit comments

Comments
 (0)