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