You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/build.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,6 +192,19 @@ The environment variable [`CUDA_VISIBLE_DEVICES`](https://docs.nvidia.com/cuda/c
192
192
| GGML_CUDA_PEER_MAX_BATCH_SIZE | Positive integer | 128 | Maximum batch size for which to enable peer access between multiple GPUs. Peer access requires either Linux or NVLink. When using NVLink enabling peer access for larger batch sizes is potentially beneficial. |
193
193
| GGML_CUDA_FA_ALL_QUANTS | Boolean | false | Compile support for all KV cache quantization type (combinations) for the FlashAttention CUDA kernels. More fine-grained control over KV cache size but compilation takes much longer. |
194
194
195
+
### MUSA
196
+
197
+
- Using `make`:
198
+
```bash
199
+
make GGML_MUSA=1
200
+
```
201
+
- Using `CMake`:
202
+
203
+
```bash
204
+
cmake -B build -DGGML_MUSA=ON
205
+
cmake --build build --config Release
206
+
```
207
+
195
208
### hipBLAS
196
209
197
210
This provides BLAS acceleration on HIP-supported AMD GPUs.
0 commit comments