From 650a4f2eb8c2f5b40380ff875e22fb01100608f5 Mon Sep 17 00:00:00 2001 From: Recoordinate Date: Sat, 1 Aug 2026 13:02:56 +1200 Subject: [PATCH] docs: fix --blasbatchssize typo in README (#2373) The flag is defined as --blasbatchsize in koboldcpp.py; the README had a doubled 's' (--blasbatchssize) which argparse would reject. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e576f9f44..3609ea719 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Finally, obtain and load a GGUF model. See [here](#Obtaining-a-GGUF-model) - **GPU Acceleration**: If you're on Windows with an Nvidia GPU you can get CUDA support out of the box using the `--usecuda` flag (Nvidia Only), or `--usevulkan` (Any GPU), make sure you select the correct .exe with CUDA support. - **GPU Layer Offloading**: Add `--gpulayers` to offload model layers to the GPU. The more layers you offload to VRAM, the faster generation speed will become. Experiment to determine number of layers to offload, and reduce by a few if you run out of memory. - **Increasing Context Size**: Use `--contextsize (number)` to increase context size, allowing the model to read more text. Note that you may also need to increase the max context in the KoboldAI Lite UI as well (click and edit the number text field). -- **Old CPU Compatibility**: If you are having crashes or issues, you can try running in a non-avx2 compatibility mode by adding the `--noavx2` flag. You can also try reducing your `--blasbatchssize` (set -1 to avoid batching) +- **Old CPU Compatibility**: If you are having crashes or issues, you can try running in a non-avx2 compatibility mode by adding the `--noavx2` flag. You can also try reducing your `--blasbatchsize` (set -1 to avoid batching) For more information, be sure to run the program with the `--help` flag, or **[check the wiki](https://github.com/LostRuins/koboldcpp/wiki).**