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
Original file line number
Diff line number
Diff line change
@@ -181,6 +181,19 @@ The environment variable [`CUDA_VISIBLE_DEVICES`](https://docs.nvidia.com/cuda/c
181
181
| 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. |
182
182
| 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. |
183
183
184
+
### MUSA
185
+
186
+
- Using `make`:
187
+
```bash
188
+
make GGML_MUSA=1
189
+
```
190
+
- Using `CMake`:
191
+
192
+
```bash
193
+
cmake -B build -DGGML_MUSA=ON
194
+
cmake --build build --config Release
195
+
```
196
+
184
197
### hipBLAS
185
198
186
199
This provides BLAS acceleration on HIP-supported AMD GPUs.
0 commit comments