jcbtc commited on
Commit
e148120
·
verified ·
1 Parent(s): 97082b0

Clarify ROCmFPX runner distro assumptions

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -183,7 +183,11 @@ commit: 7aa484a2f0a504dc612a3d74a068024f3e6d6353
183
 
184
  The Q3 QualityPlus Step 3.7 rows on this card were validated with the Chadrock/ROCmFPX runner path on AMD Ryzen AI Max+ 395 / Strix Halo. For fresh installs, use the current Ciru pin above unless you are reproducing an older benchmark exactly.
185
 
186
- Build the runner:
 
 
 
 
187
 
188
  ```bash
189
  git clone https://github.com/ciru-ai/ROCmFPX.git
@@ -196,12 +200,18 @@ env JOBS="$(nproc)" \
196
  scripts/build-strix-rocmfp4-mtp.sh llama-server llama-bench
197
  ```
198
 
 
 
 
 
199
  The server binary should be:
200
 
201
  ```text
202
  ./build-strix-rocmfp4/bin/llama-server
203
  ```
204
 
 
 
205
  If the model load fails with an unknown GGUF tensor type, you are using the wrong runner.
206
 
207
  ## Recommended Serving Profile
 
183
 
184
  The Q3 QualityPlus Step 3.7 rows on this card were validated with the Chadrock/ROCmFPX runner path on AMD Ryzen AI Max+ 395 / Strix Halo. For fresh installs, use the current Ciru pin above unless you are reproducing an older benchmark exactly.
185
 
186
+ Build the runner on a Linux system with a working ROCm/HIP toolchain, Vulkan
187
+ development headers, CMake, and a C++ compiler. This is the pinned Strix Halo
188
+ reference build used by Ciru; it is not a universal distro installer, so package
189
+ names and ROCm paths may differ on Ubuntu, Arch, Fedora, NixOS, and other
190
+ distros.
191
 
192
  ```bash
193
  git clone https://github.com/ciru-ai/ROCmFPX.git
 
200
  scripts/build-strix-rocmfp4-mtp.sh llama-server llama-bench
201
  ```
202
 
203
+ If your ROCm or rocWMMA headers live outside the script defaults, set the relevant environment variables before running the build, for example `ROCM_WMMA_INCLUDE=/path/to/rocWMMA/library/include`. If your GPU is not Strix Halo / gfx1151, change `CMAKE_HIP_ARCHITECTURES` for your target.
204
+
205
+ The script and build directory still use the historical `rocmfp4` name, but this is the ROCmFPX/Chadrock runner. For this model, the required support is ROCmFPX Q3 tensor support, not a ROCmFP4-only runtime.
206
+
207
  The server binary should be:
208
 
209
  ```text
210
  ./build-strix-rocmfp4/bin/llama-server
211
  ```
212
 
213
+ Again, `build-strix-rocmfp4` is the historical build-directory name used by the ROCmFPX runner script.
214
+
215
  If the model load fails with an unknown GGUF tensor type, you are using the wrong runner.
216
 
217
  ## Recommended Serving Profile