CoolFace
Modelpublic

Frosty40/Ornith-1.0-35B-B70-Turbo

sourceHugging Facemitupdated 3mo agoView on Hugging Face
2likes25downloads
Model Card

Ornith-1.0-35B B70 Turbo GGUF

Ornith-1.0-35B B70 Turbo artwork

This repository publishes a Q5_K_M GGUF for `deepreinforce-ai/Ornith-1.0-35B` plus the tested Intel Arc Pro B70 serving recipe.

The "Turbo" part is the serving stack, not a behavior-changing fine-tune:

  • —same base model semantics as Ornith-1.0-35B
  • —Q5KM GGUF quantization
  • —llama.cpp SYCL runtime tuned for Intel Arc Pro B70
  • —no safeguard edits, refusal edits, or new training
  • —no speculative-head artifact in this release

For the benchmark package, raw tables, charts, and example games, see: `newjordan/Ornith-1.0-35B-B70-Turbo`.

Files

FilePurpose
ornith-1.0-35b-Q5_K_M.ggufQ5KM GGUF model file
ornith-1.0-35b-Q5_K_M.gguf.sha256SHA-256 checksum

Recommended B70 Serve Config

Agent-fleet default:

bash
GGML_SYCL_DISABLE_DNN=1 ONEAPI_DEVICE_SELECTOR=level_zero:gpu \
llama-server \
  -m ornith-1.0-35b-Q5_K_M.gguf \
  --alias ornith-1.0-35b-turbo \
  -ngl 99 -fa on -ctk f16 -ctv f16 \
  -c 131072 -np 32 -b 8192 -ub 4096 \
  --host 0.0.0.0 --port 8092 --jinja

Single deep-agent profile:

bash
GGML_SYCL_DISABLE_DNN=1 ONEAPI_DEVICE_SELECTOR=level_zero:gpu \
llama-server \
  -m ornith-1.0-35b-Q5_K_M.gguf \
  --alias ornith-1.0-35b-turbo \
  -ngl 99 -fa on -ctk f16 -ctv f16 \
  -c 262144 -np 1 -b 8192 -ub 4096 \
  --host 0.0.0.0 --port 8092 --jinja

Avoid -np >= 56 on a single B70 in the measured fleet harness; it thrashed or timed out under the tested workload.

Measured Performance

Hardware and stack:

  • —GPU: Intel Arc Pro B70, 30.3 GiB, 230 W
  • —Runtime: llama.cpp SYCL
  • —Quant: Q5KM
  • —KV cache in the final ship profile: f16

The benchmark split compares:

  • —upstream: mainline llama.cpp, default flags
  • —up+flags: mainline llama.cpp plus B70 runtime flags
  • —Turbo: B70 fusion build plus the same runtime flags

Prefill

The tuned runtime configuration provides most of the prefill win.

Prompt tokensupstreamup+flagsTurboTotal win
8051075137813861.29x
33131074184018461.72x
69631031174117341.68x
14563959153815311.60x
29713825120812051.46x
613416288288261.32x
1293254134894881.18x

Single-Stream Decode

The B70 fusion build provides the single-stream decode gain.

Context depthupstreamup+flagsTurboTotal win
80581.781.893.51.14x
331380.079.891.21.14x
696377.577.488.21.14x
1456372.972.782.31.13x
2971366.566.174.11.11x
6134155.755.561.11.10x
12932541.441.344.21.07x

Fleet Decode

Aggregate decode with a synthetic 2048+256 workload:

Agentsupstreamup+flagsTurboTotal win
178.578.986.21.10x
485.7118.8120.81.41x
891.4132.8132.81.45x
1698.1132.3132.51.35x
24103.2143.8139.01.35x
32112.0149.1149.11.33x
48122.9160.8157.01.28x
56126.6161.8160.21.27x

Accuracy Snapshot

These are reference lm-eval results carried over from the local benchmark set; serving changes are lossless for the same GGUF.

BenchmarkScore
GSM8K97.0
HellaSwag82.1
Winogrande71.6
ARC-Challenge49.2
MMLU41.1
TruthfulQA-MC135.7
Wikitext2 PPL6.36

Notes

  • —This release is for llama.cpp-compatible GGUF runtimes.
  • —The best measured B70 profile uses f16 KV. q8_0 KV was slower at long depth on this SYCL backend in local testing.
  • —The route-aware DeepSpec/Eagle3 speculative-head work is tracked separately and is not included in this artifact.