Skip to content

Commit c82d9aa

Browse files
committed
fix: add missing line breaks to the command line help
1 parent 5900ef6 commit c82d9aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/cli/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ void print_usage(int argc, const char* argv[]) {
236236
printf(" --diffusion-fa use flash attention in the diffusion model (for low vram)\n");
237237
printf(" Might lower quality, since it implies converting k and v to f16.\n");
238238
printf(" This might crash if it is not supported by the backend.\n");
239-
printf(" --diffusion-conv-direct use Conv2d direct in the diffusion model");
239+
printf(" --diffusion-conv-direct use Conv2d direct in the diffusion model\n");
240240
printf(" This might crash if it is not supported by the backend.\n");
241-
printf(" --vae-conv-direct use Conv2d direct in the vae model (should improve the performance)");
241+
printf(" --vae-conv-direct use Conv2d direct in the vae model (should improve the performance)\n");
242242
printf(" This might crash if it is not supported by the backend.\n");
243243
printf(" --control-net-cpu keep controlnet in cpu (for low vram)\n");
244244
printf(" --canny apply canny preprocessor (edge detection)\n");

0 commit comments

Comments
 (0)