This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Must get latest code from https://github.com/ggml-org/llama.cpp | |
| # then build with cuda support | |
| CUDACXX=/usr/local/cuda/bin/nvcc cmake -DGGML_CUDA=ON --preset x64-linux-gcc-release | |
| cd build-x64-linux-gcc-release | |
| ninja -j3 | |
| # notice we are pointing to unsloth MTP Q2 model: https://huggingface.co/unsloth/Qwen3.6-27B-MTP-GGUF?show_file_info=Qwen3.6-27B-UD-IQ2_XXS.gguf | |
| # and enabling MTP. play with n-max locally (1-3) | |
| # no-mmproj: disable non-text modalities to fit my 11 GB VRAM | |
| ./llama-server -hf unsloth/Qwen3.6-27B-GGUF:UD-IQ2_XXS \ |