|
| 1 | +# Table of Contents |
| 2 | + |
| 3 | +## Installation |
| 4 | +- [Can I run the platform benchmark under a bare-metal Ubuntu environment?](#can-i-run-the-platform-benchmark-under-a-bare-metal-ubuntu-environment) |
| 5 | +- [Can I use Ubuntu 24.04 LTS as the base OS?](#can-i-use-ubuntu-2404-lts-as-the-base-os) |
| 6 | +- [Why can't I see the desktop even with Ubuntu 25.04 desktop version installed?](#why-cant-i-see-the-desktop-even-with-ubuntu-2504-desktop-version-installed) |
| 7 | +- [Can I update the kernel version or other drivers of Ubuntu to get the latest fixes?](#can-i-update-the-kernel-version-or-other-drivers-of-ubuntu-to-get-the-latest-fixes) |
| 8 | +- [Why do I need to run `native_bkc_setup.sh` before using the `vllm/platform` Docker image?](#why-do-i-need-to-run-native_bkc_setupsh-before-using-the-vllmplatform-docker-image) |
| 9 | + |
| 10 | +## Hardware & Firmware |
| 11 | +- [No re-sizable BAR configuration in my BIOS. What can I do to enable B60 with a larger BAR2 size?](#no-re-sizable-bar-configuration-in-my-bios-what-can-i-do-to-enable-b60-with-a-larger-bar2-size) |
| 12 | +- [Maxsun 2x GPU Card Not Detected Behind PCIe Switch](#maxsun-2x-gpu-card-not-detected-behind-pcie-switch) |
| 13 | + |
| 14 | +## Benchmarking |
| 15 | +- [Why do I see unusually high Device-to-Device bandwidth in `ze_peak` benchmark?](#why-do-i-see-unusually-high-device-to-device-bandwidth-in-ze_peak-benchmark) |
| 16 | +- [How can I verify if the benchmark data from `platform_basic_evaluation.sh` is valid?](#how-can-i-verify-if-the-benchmark-data-from-platform_basic_evaluationsh-is-valid) |
| 17 | + |
| 18 | +## Tools |
| 19 | +- [Why can't I see `xpu-smi` in the `vllm` Docker image?](#why-cant-i-see-xpu-smi-in-the-vllm-docker-image) |
| 20 | +- [Why can't I see GPU utilization with `xpu-smi`?](#why-cant-i-see-gpu-utilization-with-xpu-smi) |
| 21 | + |
| 22 | +--- |
| 23 | + |
| 24 | +# Installation |
| 25 | + |
| 26 | +## Can I run the platform benchmark under a bare-metal Ubuntu environment? |
| 27 | + |
| 28 | +Yes. Please contact the Intel support team to obtain an offline installer for native setup. |
| 29 | +We also plan to make the offline installer publicly available on the Intel RDC website in an upcoming release. |
| 30 | + |
| 31 | +## Can I use Ubuntu 24.04 LTS as the base OS? {#can-i-use-ubuntu-2404-lts-as-the-base-os} |
| 32 | + |
| 33 | +Not yet. Support for Ubuntu 24.04 LTS is planned in future releases (targeting late 2025). |
| 34 | + |
| 35 | +## Why can't I see the desktop even with Ubuntu 25.04 desktop version installed? {#why-cant-i-see-the-desktop-even-with-ubuntu-2504-desktop-version-installed} |
| 36 | + |
| 37 | +Some versions of Ubuntu may default to text mode (multi-user target) after installation. You can check the current mode: |
| 38 | + |
| 39 | +```bash |
| 40 | +sudo systemctl get-default |
| 41 | +``` |
| 42 | + |
| 43 | +If it returns `multi-user.target`, you can switch to graphical mode: |
| 44 | + |
| 45 | +```bash |
| 46 | +sudo systemctl set-default graphical.target |
| 47 | +sudo reboot |
| 48 | +``` |
| 49 | + |
| 50 | +## Can I update the kernel version or other drivers of Ubuntu to get the latest fixes? |
| 51 | + |
| 52 | +During the evaluation phase, we **do not recommend updating the kernel or system packages** to ensure consistency with the validated environment. |
| 53 | +Any updates may affect stability or introduce compatibility issues with pre-installed components. |
| 54 | + |
| 55 | +## Why do I need to run `native_bkc_setup.sh` before using the `vllm/platform` Docker image? |
| 56 | + |
| 57 | +To ensure consistent kernel and firmware behavior, `native_bkc_setup.sh` is required to unify Linux kernel version and install B60 GuC/HuC firmware directly on the host system before using the container image. |
| 58 | + |
| 59 | +--- |
| 60 | + |
| 61 | +# Hardware & Firmware |
| 62 | + |
| 63 | +## No re-sizable BAR configuration in my BIOS. What can I do to enable B60 with a larger BAR2 size? |
| 64 | + |
| 65 | +Please contact your AIB (Add-In-Board) vendor to request the latest IFWI (firmware image) with max re-sizable BAR pre-configured. |
| 66 | +This setup has been validated on Gunnir and Maxsun B60 cards. |
| 67 | + |
| 68 | +## Maxsun 2x GPU Card Not Detected Behind PCIe Switch |
| 69 | + |
| 70 | +Many PCIe switch firmware versions do not support PCIe bifurcation, which prevents detection of dual-GPU cards like Maxsun 2x. |
| 71 | + |
| 72 | +Solution: A firmware update for the PCIe switch is required. |
| 73 | +The Broadcom PEX 89104 has been validated. Please contact your PCIe switch vendor for support or an updated firmware. |
| 74 | + |
| 75 | +--- |
| 76 | + |
| 77 | +# Benchmarking |
| 78 | + |
| 79 | +## Why do I see unusually high Device-to-Device bandwidth in `ze_peak` benchmark? |
| 80 | + |
| 81 | +Please export the following environment variable before running ze_peak. |
| 82 | + |
| 83 | +```bash |
| 84 | +export NEOReadDebugKeys=1 |
| 85 | +export RenderCompressedBuffersEnabled=0 |
| 86 | +``` |
| 87 | + |
| 88 | +## How can I verify if the benchmark data from `platform_basic_evaluation.sh` is valid? |
| 89 | + |
| 90 | +Sample benchmark results are available in: |
| 91 | + |
| 92 | +``` |
| 93 | +/opt/intel/multi-arc/results |
| 94 | +``` |
| 95 | + |
| 96 | +These data points are collected from internal evaluations using an Intel® Xeon® W5-2545X system with dual B60 GPUs. |
| 97 | +> **Disclaimer**: This reference is provided for informational purposes only and should not be interpreted as official performance indicators or guarantees. Actual results may vary depending on hardware configuration, software stack, and usage scenarios. |
| 98 | +
|
| 99 | +--- |
| 100 | + |
| 101 | +# Tools |
| 102 | + |
| 103 | +## Why can't I see `xpu-smi` in the `vllm` Docker image? |
| 104 | + |
| 105 | +Due to release process limitations, `xpu-smi` is currently not included in the official `vllm` Docker image. |
| 106 | +We plan to add it in the next release. In the meantime, you may install it manually using: |
| 107 | + |
| 108 | +[xpu-smi 1.3.1 on GitHub](https://github.com/intel/xpumanager/releases/download/V1.3.1/xpumanager_1.3.1_20250724.061629.60921e5e_u24.04_amd64.deb) |
| 109 | + |
| 110 | +## Why can't I see GPU utilization with `xpu-smi`? |
| 111 | + |
| 112 | +GPU utilization metrics are not yet fully supported by `xpu-smi` in the current release. |
| 113 | +This functionality is scheduled to be added in next release. |
0 commit comments