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
@@ -220,6 +223,15 @@ To install on CPU nodes only:
220
223
make install NAMESPACE=llama-stack-rag LLM=llama-3-2-3b-instruct DEVICE=cpu
221
224
```
222
225
226
+
**Xeon Deployment Example:**
227
+
To install on Xeon nodes only:
228
+
229
+
```bash
230
+
make install NAMESPACE=llama-stack-rag LLM=llama-3-2-3b-instruct DEVICE=xeon
231
+
```
232
+
- This assumes that all your worker nodes use Sapphire Rapids (SPR) or newer Intel Xeon processors.
233
+
- If you have heterogeneous worker nodes, work with your cluster administrator to identify SPR+ nodes and use taint keys, similar to the GPU and HPU deployments above, to set `LLM_TOLERATION` and `SAFETY_TOLERATION` to schedule on valid nodes.
234
+
223
235
**Simplified Commands (No Tolerations Needed):**
224
236
225
237
If you have no tainted nodes (all worker nodes have accelerators), you can use simplified commands:
@@ -233,6 +245,10 @@ make install NAMESPACE=llama-stack-rag LLM=llama-3-2-3b-instruct SAFETY=llama-gu
233
245
234
246
# CPU deployment
235
247
make install NAMESPACE=llama-stack-rag LLM=llama-3-2-3b-instruct SAFETY=llama-guard-3-8b DEVICE=cpu
248
+
249
+
# Xeon deployment
250
+
make install NAMESPACE=llama-stack-rag LLM=llama-3-2-3b-instruct SAFETY=llama-guard-3-8b DEVICE=xeon
251
+
236
252
```
237
253
238
254
When prompted, enter your **[Hugging Face Token](https://huggingface.co/settings/tokens)**.
# - Use DEVICE=gpu for NVIDIA GPU deployment (default)
44
44
# - Use DEVICE=hpu for Intel Gaudi HPU deployment (requires Intel Gaudi drivers and setup)
45
+
# - Use DEVICE=xeon for Intel Xeon CPU deployment (optimized for large CPU instances, works on SPR/EMR/GNR, requires min 16vCPU and 32GB RAM to run efficiently)
0 commit comments