jcbtc commited on
Commit
42de3b6
·
verified ·
1 Parent(s): ce6cdf5

Add model card

Browse files
Files changed (1) hide show
  1. README.md +15 -4
README.md CHANGED
@@ -200,7 +200,7 @@ sudo apt-get install -y build-essential cmake git ninja-build pkg-config libssl-
200
 
201
  git clone https://github.com/ciru-ai/ROCmFPX.git
202
  cd ROCmFPX
203
- git checkout kairic-edge-qwen38-27b-v1
204
 
205
  git clone https://github.com/ROCm/composable_kernel.git third_party/composable_kernel
206
  git -C third_party/composable_kernel checkout fdf4bb7fcc984811cef48ce817d89aac064b984a
@@ -238,7 +238,7 @@ cmake --build build-kairic --target llama-server -j"$(nproc)"
238
  ./build-kairic/bin/llama-server --help | grep -A1 -- '--kairic-edge'
239
  ```
240
 
241
- See the release repository's [build and verification guide](https://github.com/ciru-ai/ROCmFPX/blob/kairic-edge-qwen38-27b-v1/docs/kairic-edge-gfx1151.md) for dependency checks, exact compiler identity, and smoke tests.
242
 
243
  ## Recommended launch
244
 
@@ -273,7 +273,16 @@ reasoning off
273
  metrics enabled
274
  ```
275
 
276
- For a normal non-thinking chat, keep the runtime configuration and override sampling per request with Qwen's recommended live values:
 
 
 
 
 
 
 
 
 
277
 
278
  ```bash
279
  curl http://127.0.0.1:8080/v1/chat/completions \
@@ -288,9 +297,11 @@ curl http://127.0.0.1:8080/v1/chat/completions \
288
  "presence_penalty": 1.5,
289
  "cache_prompt": true,
290
  "stream": true
291
- }'
292
  ```
293
 
 
 
294
  For benchmark reproduction, keep the launcher's deterministic sampler and use the first trajectory only. Do not compare results collected with repair retries or a different chat template.
295
 
296
  ## Scope and limitations
 
200
 
201
  git clone https://github.com/ciru-ai/ROCmFPX.git
202
  cd ROCmFPX
203
+ git checkout kairic-edge-qwen38-27b-v1.1
204
 
205
  git clone https://github.com/ROCm/composable_kernel.git third_party/composable_kernel
206
  git -C third_party/composable_kernel checkout fdf4bb7fcc984811cef48ce817d89aac064b984a
 
238
  ./build-kairic/bin/llama-server --help | grep -A1 -- '--kairic-edge'
239
  ```
240
 
241
+ See the release repository's [build and verification guide](https://github.com/ciru-ai/ROCmFPX/blob/kairic-edge-qwen38-27b-v1.1/docs/kairic-edge-gfx1151.md) for dependency checks, exact compiler identity, compatibility mode, and smoke tests.
242
 
243
  ## Recommended launch
244
 
 
273
  metrics enabled
274
  ```
275
 
276
+ The default is the highest-throughput fast greedy mode. It accepts one unmodified greedy completion (`temperature: 0`, `top_p: 1`, `top_k: 0` or `1`, `min_p: 0`) and rejects sampling, penalties, probabilities, grammar-constrained tool calls, logit bias, LoRA, and reasoning budgets because those features require full target logits.
277
+
278
+ For sampling, penalties, DSH, or tool calling, restart the runner with compatibility mode enabled:
279
+
280
+ ```bash
281
+ export KAIRIC_EDGE_COMPATIBILITY_MODE=1
282
+ ./ROCmFPX/scripts/run-kairic-edge-gfx1151.sh
283
+ ```
284
+
285
+ Then use Qwen's recommended live values at request level:
286
 
287
  ```bash
288
  curl http://127.0.0.1:8080/v1/chat/completions \
 
297
  "presence_penalty": 1.5,
298
  "cache_prompt": true,
299
  "stream": true
300
+ }'
301
  ```
302
 
303
+ Compatibility mode disables only the target greedy argmax fast path. Kairic Edge, native MTP4, prompt caching, context checkpoints, and the rest of the recommended live configuration stay enabled. In our quick release gate, sampled chat and a forced tool call both returned HTTP 200; HumanEval 0–9 passed 10/10 Base and 10/10 Plus in both modes with byte-identical raw output. Compatibility measured 41.87 versus 46.37 generated tokens/s on that short coding subset, a 9.70% reduction, so it remains opt-in. This ten-task run is a compatibility smoke test, not a leaderboard score or a universal throughput estimate.
304
+
305
  For benchmark reproduction, keep the launcher's deterministic sampler and use the first trajectory only. Do not compare results collected with repair retries or a different chat template.
306
 
307
  ## Scope and limitations