jcbtc commited on
Commit
f1f45cd
·
verified ·
1 Parent(s): f0d3910

Pin Chadrock v2 runner checkpoint fix

Browse files
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -47,7 +47,7 @@ CHADROCK3.6 27B Coder is a Chadrock ROCmFP4/MTP GGUF release of the Qwopus3.6 27
47
 
48
  It uses the Qwopus3.6 27B Coder MTP line as upstream lineage, then converts that source into Charlie's AMD-focused ROCmFP4 Strix Lean runtime format. The public release name and artifact names are Chadrock names, while Qwopus stays explicit in lineage, base model metadata, and credits. The result is a compact 14 GB GGUF for local agentic coding, repository work, tool-use style prompts, and long-context experiments on unified-memory AMD hardware.
49
 
50
- This GGUF will **not run correctly with stock llama.cpp**. It needs the pinned [`ciru-ai/ROCmFPX`](https://github.com/ciru-ai/ROCmFPX/tree/be15a40d713f0818647739c68af95e9698d78e72) runner because the file uses ROCmFP4 tensor types that upstream llama.cpp does not currently understand.
51
 
52
  The model file is already provided here. You do **not** need to rebuild or quantize the model. Build the custom llama server once, download the files, and run the profile below.
53
 
@@ -143,7 +143,7 @@ For the pinned runner build, copy-paste build commands, request-level speculativ
143
  The current pinned runner build is:
144
 
145
  ```text
146
- ciru-ai/ROCmFPX commit: be15a40d713f0818647739c68af95e9698d78e72
147
  historical score tag: chadrock-rocmfp4-mtp-scores-20260621
148
  ```
149
 
@@ -189,6 +189,10 @@ GGML_HIP_ENABLE_UNIFIED_MEMORY=1 \
189
  -tb 32 \
190
  -ctk q4_0 \
191
  -ctv q4_0 \
 
 
 
 
192
  --spec-type draft-mtp \
193
  --spec-draft-device ROCm0 \
194
  --spec-draft-ngl all \
@@ -216,7 +220,7 @@ The projector is a GGUF-format projector file with a `.mmproj` repo extension so
216
  ```bash
217
  git clone https://github.com/ciru-ai/ROCmFPX.git
218
  cd ROCmFPX
219
- git checkout be15a40d713f0818647739c68af95e9698d78e72
220
  env JOBS=16 scripts/build-strix-rocmfp4-mtp.sh llama-server llama-bench
221
  ```
222
 
 
47
 
48
  It uses the Qwopus3.6 27B Coder MTP line as upstream lineage, then converts that source into Charlie's AMD-focused ROCmFP4 Strix Lean runtime format. The public release name and artifact names are Chadrock names, while Qwopus stays explicit in lineage, base model metadata, and credits. The result is a compact 14 GB GGUF for local agentic coding, repository work, tool-use style prompts, and long-context experiments on unified-memory AMD hardware.
49
 
50
+ This GGUF will **not run correctly with stock llama.cpp**. It needs the pinned [`ciru-ai/ROCmFPX`](https://github.com/ciru-ai/ROCmFPX/tree/7aa484a2f0a504dc612a3d74a068024f3e6d6353) runner because the file uses ROCmFP4 tensor types that upstream llama.cpp does not currently understand.
51
 
52
  The model file is already provided here. You do **not** need to rebuild or quantize the model. Build the custom llama server once, download the files, and run the profile below.
53
 
 
143
  The current pinned runner build is:
144
 
145
  ```text
146
+ ciru-ai/ROCmFPX commit: 7aa484a2f0a504dc612a3d74a068024f3e6d6353
147
  historical score tag: chadrock-rocmfp4-mtp-scores-20260621
148
  ```
149
 
 
189
  -tb 32 \
190
  -ctk q4_0 \
191
  -ctv q4_0 \
192
+ --ctx-checkpoints 0 \
193
+
194
+ --checkpoint-every-n-tokens -1 \
195
+
196
  --spec-type draft-mtp \
197
  --spec-draft-device ROCm0 \
198
  --spec-draft-ngl all \
 
220
  ```bash
221
  git clone https://github.com/ciru-ai/ROCmFPX.git
222
  cd ROCmFPX
223
+ git checkout 7aa484a2f0a504dc612a3d74a068024f3e6d6353
224
  env JOBS=16 scripts/build-strix-rocmfp4-mtp.sh llama-server llama-bench
225
  ```
226