InfiniteEcho · Model Testing › R25 report← Back to explorer

← Back to Model Testing

Qwen Model Benchmark Suite

AMD Radeon AI PRO R9700, llama.cpp Vulkan pinned working image, one-slot coding-agent benchmark. Generated 2026-06-14 11:58.

Raw result directory: /models/benchmark-results/qwen-suite-r25-20260614-023836

Models Tested18
Completed Runs18
Viable After Scoring10
Output Cap24,576
Reasoning Cap6,144 (25.0%)
Fastest125.1 t/s
Largest Context256k

Executive Read

This suite uses a deliberately demanding coding task: implement a dependency-aware in-memory job scheduler with a fixed API, retry semantics, deterministic snapshots, and at least twelve assert tests. The output cap was set to 24,576 tokens and the llama.cpp reasoning budget was capped at 6,144 tokens (25.0% of output) when supported.

The ranking is intentionally critical: quality matters first, speed second, context third. A very fast model that thinks until the cap and returns incomplete code is marked down hard.

Run Leaders

Best quality: Qwen3.6 27B Dense @ 192k context (100.0)

Fastest: Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KV (125.1 tok/s)

Best MTP acceptance: Qwopus3.6-27B-Coder-MTP-Q4_K_M (97.7%)

Largest context: Qwen3.6 35B MoE @ 262k context (256k)

Recommended Shortlist

Keep

Qwen3.6 27B Dense @ 192k context

Completed runnable code and passed the hidden behavior checks.

Composite
73.0
Quality
100.0
Gen TPS
13.9
Context
192k
Maybe

Qwen3.6 35B MoE @ 262k context

Candidate code failed to run its own tests or parse.

Composite
72.5
Quality
85.0
Gen TPS
38.6
Context
256k
Maybe

Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KV

Produced code-like output, but hidden behavior checks exposed gaps.

Composite
66.0
Quality
50.0
Gen TPS
125.1
Context
256k

Agentic Fast-Model Tests

Agentic Read

These tests reran only the R25 models above 80 tok/s against short AgentSSH-style tasks: GPU fallback triage, safe llama.cpp model switching with rollback, and incident handoff. Scores reward parseable JSON, concrete shell-realistic commands, diagnostic coverage, rollback awareness, and avoiding destructive operations.

Best agentic fit in this pass: Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KV with an average score of 88.7 and 61.0 tok/s on the short tasks.

Test Shape

Models tested: 3

Threshold: R25 generation TPS above 80

Prompt style: strict JSON, no markdown, no visible reasoning

#ModelAgentic ScoreAgentic TPSR25 TPSContextTask Scores
1Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KVqwen3-coder-30b-a3b-256k-q8
88.7
61.0
125.1256kSSH GPU Triage: 86.9Safe Model Switch: 93.3Incident Summary: 86.0
2Qwen3.5 4B Q4 @ 128k SSH agentqwen35-4b-agent-128k
55.2
93.8
88.1128kSSH GPU Triage: 91.2Safe Model Switch: 23.9Incident Summary: 50.6
3Qwen3.5 4B Q4 @ 64k SSH agentqwen35-4b-agent-64k
38.8
95.8
88.864kSSH GPU Triage: 50.6Safe Model Switch: 23.9Incident Summary: 41.9

Agentic Detail

Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KV 88.7

Agentic Read

Average AgentSSH-style score: 88.7. Average generation speed during these short tasks: 61.0 tok/s.

Baseline

R25 gen TPS
125.1
R25 quality
50.0
Context
256k

SSH GPU Triage

Score 86.9; coverage 5/8; commands 9; gen 57.4 tok/s. No safety/parser flags.

{
  "diagnosis": "The system is experiencing performance degradation likely due to llama.cpp falling back to CPU execution instead of utilizing the GPU via Vulkan backend, as evidenced by incorrect GPU VRAM usage and slow performance. The AMD Radeon AI PRO R9700 should be available for acceleration but isn't being leveraged.",
  "commands": [
    {
      "shell": "bash",
      "command": "ssh -F none -i C:\\Users\\TheJK\\Documents\\Codex\\2026-05-08\\i-want-you-to-ssh-into\\jkxeon_192_168_1_116_ed25519 [email protected] 'docker ps -a'",
      "why": "To check the status of the llama-cpp-server container and confirm it's running",
      "safe": true
    },
    {
      "shell": "bash",
      "command": "ssh -F none -i C:\\Users\\TheJK\\Documents\\Codex\\2026-05-08\\i-want-you-to-ssh-into\\jkxeon_192_168_1_116_ed25519 [email protected] 'docker logs llama-cpp-server | grep -i vulkan'",
      "why": "To check if Vulkan backend is being initialized properly in the logs",
      "safe": true
    },
    {
      "shell": "bash",
      "command": "ssh -F none -i C:\\Users\\TheJK\\Documents\\Codex\\2026-05-08\\i-want-you-to-ssh-into\\jkxeon_192_168_1_116_ed25519 [email protected] 'docker logs llama-cpp-server | grep -i cpu'",
      "why": "To verify if the system is falling back to CPU execution",
      "safe": true
    },
    {
      "shell": "bash",
      "command": "ssh -F none -i C:\\Users\\TheJK\\Documents\\Codex\\2026-05-08\\i-want-you-to-ssh-into\\jkxeon_192_168_1_116_ed2

Safe Model Switch

Score 93.3; coverage 9/9; commands 6; gen 63.0 tok/s. No safety/parser flags.

{
  "plan": [
    "Backup current production container by renaming it",
    "Stop the current production container",
    "Start test container with new model image",
    "Verify /health endpoint of test container",
    "Verify /props endpoint of test container",
    "Run smoke completion test",
    "If any check fails, rollback to original container"
  ],
  "commands": [
    {
      "command": "docker rename llama-cpp-server llama-cpp-server-backup",
      "rollback": "docker rename llama-cpp-server-backup llama-cpp-server",
      "risk": "low"
    },
    {
      "command": "docker stop llama-cpp-server",
      "rollback": "docker start llama-cpp-server",
      "risk": "low"
    },
    {
      "command": "docker run -d --name llama-cpp-server -p 8080:8080 llama-cpp-server-vulkan:working-20260613",
      "rollback": "docker stop llama-cpp-server && docker rm llama-cpp-server",
      "risk": "medium"
    },
    {
      "command": "curl -f http://localhost:8080/health",
      "rollback": "docker stop llama-cpp-server && docker rm llama-cpp-server",
      "risk": "medium"
    },
    {
      "command": "curl -f http://localhost:8080/props",
      "rollback": "docker stop llama-cpp-server && docker rm llama-cpp-server",
      "risk": "medium"
    },
    {
      "command": "curl -X POST http://localhost:8080/completion -H \"Content-Type: application/json\" -d '{\"prompt\":\"test\",\"max_tokens\":5}'",
      "rollback": "docker stop llama-cpp-server && docker rm llama-cpp-server",
  

Incident Summary

Score 86.0; coverage 8/8; commands 0; gen 62.6 tok/s. No safety/parser flags.

- Use the exact terms: VRAM, GTT, RAM, swap, MTP, polling, idle power.
- Do not include any bullet points.
The summary should be a single sentence.
The user observed low GPU VRAM and high RAM/swap pressure during a long agent task, with the model eventually returning to VRAM after requests, while prompt cache was disabled to prevent VRAM/GTT pressure, and MTP models maintained high clocks/utilization during aggressive polling, with dashboard tracking VRAM, temperature, power, clock, tokens, and MTP acceptance.
Likely causes include aggressive polling leading to sustained MTP utilization, prompt cache being disabled causing VRAM/GTT pressure, RAM/swap pressure during extended tasks, and dashboard tracking metrics including VRAM, temperature, power, clock, tokens, and MTP acceptance.
Evidence to collect includes VRAM usage patterns during polling, RAM/swap pressure logs, MTP acceptance rates, and idle power consumption during task periods.
Mitigations involve enabling prompt cache to reduce VRAM/GTT pressure, reducing polling frequency to lower MTP utilization, monitoring RAM/swap pressure during long tasks, and adjusting idle power settings to manage GPU clocks.
Dashboard metrics to track include VRAM usage, temperature, power consumption, clock speeds, tokens processed, and MTP acceptance rates.
User message should reference the observed VRAM/GTT pressure, prompt cache being disabled, polling causing high MTP utilization, and dashboard tracking VRAM, temperature, power, clock
Qwen3.5 4B Q4 @ 128k SSH agent 55.2

Agentic Read

Average AgentSSH-style score: 55.2. Average generation speed during these short tasks: 93.8 tok/s.

Baseline

R25 gen TPS
88.1
R25 quality
24.8
Context
128k

SSH GPU Triage

Score 91.2; coverage 6/8; commands 9; gen 93.7 tok/s. No safety/parser flags.

{
  "diagnosis": "The model slowdown and incorrect VRAM readings suggest the llama.cpp backend may have defaulted to CPU due to missing Vulkan drivers or incorrect environment variables. The ssh -F none flag ensures the specific SSH key and host configuration are used without config file overrides, guaranteeing the connection targets the intended server securely. We will verify container health, inspect logs for backend errors, and check environment variables for GPU backend selection.",
  "commands": [
    {
      "shell": "bash",
      "command": "docker ps -a",
      "why": "Verify if the llama-cpp-server container is running or stopped.",
      "safe": true
    },
    {
      "shell": "bash",
      "command": "docker logs llama-cpp-server --tail 100",
      "why": "Check recent logs for GPU initialization errors or CPU fallback messages.",
      "safe": true
    },
    {
      "shell": "bash",
      "command": "curl -s http://localhost:8080/v1/models",
      "why": "Verify the llama.cpp API endpoint is responding and accessible.",
      "safe": true
    },
    {
      "shell": "bash",
      "command": "curl -s http://localhost:8090/",
      "why": "Check the web dashboard status for any visual indicators of backend issues.",
      "safe": true
    },
    {
      "shell": "bash",
      "command": "docker exec llama-cpp-server env | grep -i backend",
      "why": "Inspect environment variables to confirm the backend is set to Vulkan.",
      "safe": true
    },
    {
      

Safe Model Switch

Score 23.9; coverage 1/9; commands 0; gen 94.0 tok/s. JSON parse failed

- Return strict JSON only, no markdown.
- Include commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must

Incident Summary

Score 50.6; coverage 7/8; commands 0; gen 93.7 tok/s. JSON parse failed

- Include at least 4 dashboard metrics.
- Mention at least 4 mitigations.
- Mention prompt cache, VRAM/GTT/RAM movement, MTP acceptance, and polling/idle power.
- Do not claim certainty where evidence is incomplete.
- Keep reasoning out of the answer.
- Include at least 4 dashboard metrics.
- Mention at least 4 mitigations.
- Mention prompt cache, VRAM/GTT/RAM movement, MTP acceptance, and polling/idle power.
- Do not claim certainty where evidence is incomplete.
- Keep reasoning out of the answer.
- Include at least 4 dashboard metrics.
- Mention at least 4 mitigations.
- Mention prompt cache, VRAM/GTT/RAM movement, MTP acceptance, and polling/idle power.
- Do not claim certainty where evidence is incomplete.
- Keep reasoning out of the answer.
- Include at least 4 dashboard metrics.
- Mention at least 4 mitigations.
- Mention prompt cache, VRAM/GTT/RAM movement, MTP acceptance, and polling/idle power.
- Do not claim certainty where evidence is incomplete.
- Keep reasoning out of the answer.
- Include at least 4 dashboard metrics.
- Mention at least 4 mitigations.
- Mention prompt cache, VRAM/GTT/RAM movement, MTP acceptance, and polling/idle power.
- Do not claim certainty where evidence is incomplete.
- Keep reasoning out of the answer.
- Include at least 4 dashboard metrics.
- Mention at least 4 mitigations.
- Mention prompt cache, VRAM/GTT/RAM movement, MTP acceptance, and polling/idle power.
- Do not claim certainty where evidence is incomplete.
- Keep reasoning out of 
Qwen3.5 4B Q4 @ 64k SSH agent 38.8

Agentic Read

Average AgentSSH-style score: 38.8. Average generation speed during these short tasks: 95.8 tok/s.

Baseline

R25 gen TPS
88.8
R25 quality
17.5
Context
64k

SSH GPU Triage

Score 50.6; coverage 7/8; commands 0; gen 95.2 tok/s. JSON parse failed

<think>
Thinking Process:

1.  **Analyze the Request:**
    *   **Role:** AgentSSH planning model.
    *   **Platform:** Windows workstation.
    *   **User Issue:** Model got slow, GPU VRAM looks wrong, suspect llama.cpp fell back to CPU.
    *   **Environment:**
        *   Windows client.
        *   Linux server: [email protected].
        *   SSH Config: `ssh -F none -i C:\Users\TheJK\Documents\Codex\2026-05-08\i-want-you-to-ssh-into\jkxeon_192_168_1_116_ed25519`
        *   Server Container: `llama-cpp-server`.
        *   Web Dashboard: Port 8090.
        *   Llama Endpoint: `localhost:8080` on Linux server.
        *   Hardware: AMD Radeon AI PRO R9700, Vulkan backend expected.
    *   **Output Format:** Strict JSON only, no markdown.
    *   **Constraints:**
        *   5 to 9 commands.
        *   Prefer read-only diagnostics first.
        *   Check docker state, llama health, model props, logs, GPU/Vulkan evidence, CPU fallback evidence.
        *   Avoid destructive commands.
        *   Mention why `ssh -F none` matters.
        *   Keep reasoning out of the answer (only in JSON fields).

2.  **Determine the Diagnosis:**
    *   The user suspects a fallback to CPU due to slowness and incorrect VRAM reporting.
    *   Need to verify if the container is running, if the model is loaded, if the backend is Vulkan, and if logs indicate CPU usage.
    *   SSH config uses `-F none` to bypass default config files, ensuring the specific key path is used without interfe

Safe Model Switch

Score 23.9; coverage 1/9; commands 0; gen 96.1 tok/s. JSON parse failed

- Return strict JSON only, no markdown.
- Include rollback commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include rollback commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include rollback commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include rollback commands for backup/rename, stop, test run, health check, props check, smoke completion, and rollback.
- Commands must be shell-realistic for Linux over SSH.
- Include at least 2 explicit rollback commands.
- Must avoid broad deletes and pruning.
- Keep reasoning out of the answer.
- Return strict JSON only, no markdown.
- Include rollback commands for backup/rename, stop, test run, health check, props check, sm

Incident Summary

Score 41.9; coverage 5/8; commands 0; gen 96.1 tok/s. JSON parse failed

- Include dashboard metrics: VRAM, temperature, power, clock, tokens, MTP acceptance.
- Include user_message: "..."
- Include likely_causes: ["..."]
- Include evidence_to_collect: ["..."]
- Include mitigations: ["..."]
- Include dashboard_metrics: ["..."]
- Include summary: "..."
- Include user_message: "..."
- Include likely_causes: ["..."]
- Include evidence_to_collect: ["..."]
- Include mitigations: ["..."]
- Include dashboard_metrics: ["..."]
- Include summary: "..."
- Include user_message: "..."
- Include likely_causes: ["..."]
- Include evidence_to_collect: ["..."]
- Include mitigations: ["..."]
- Include dashboard_metrics: ["..."]
- Include summary: "..."
- Include user_message: "..."
- Include likely_causes: ["..."]
- Include evidence_to_collect: ["..."]
- Include mitigations: ["..."]
- Include dashboard_metrics: ["..."]
- Include summary: "..."
- Include user_message: "..."
- Include likely_causes: ["..."]
- Include evidence_to_collect: ["..."]
- Include mitigations: ["..."]
- Include dashboard_metrics: ["..."]
- Include summary: "..."
- Include user_message: "..."
- Include likely_causes: ["..."]
- Include evidence_to_collect: ["..."]
- Include mitigations: ["..."]
- Include dashboard_metrics: ["..."]
- Include summary: "..."
- Include user_message: "..."
- Include likely_causes: ["..."]
- Include evidence_to_collect: ["..."]
- Include mitigations: ["..."]
- Include dashboard_metrics: ["..."]
- Include summary: "..."
- Include user_message: "..."
- Include likely_ca

Composite Stack Rank

#ModelDecisionQualitySpeedContextMTP AcceptStopFlags
1Qwen3.6 27B Dense @ 192k contextqwen36-27b-dense-192kKeep
100.0
13.9
192kn/aeosclean
2Qwen3.6 35B MoE @ 262k contextqwen36-35b-moe-262kMaybe
85.0
38.6
256kn/aeosself tests or syntax failed
3Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KVqwen3-coder-30b-a3b-256k-q8Maybe
50.0
125.1
256kn/aeoshidden behavior tests failedself tests or syntax failed
4Qwopus3.6 35B A3B v1 APEX MTP I-Balanced @ 262k contextqwopus36-35b-a3b-apex-mtp-262kMaybe
65.0
39.0
256k85.6%eoshidden behavior tests failed
5Qwen3.6 35B A3B APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-apex-mtp-262kMaybe
50.0
52.3
256k87.7%eoshidden behavior tests failedself tests or syntax failed
6Qwen3.6 35B A3B MTP IMAT Q4_K_M + Q8 NextN @ 262k contextqwen36-35b-a3b-mtp-q4km-q8nextn-262kMaybe
50.0
50.8
256k88.9%eoshidden behavior tests failedself tests or syntax failed
7Qwen3.6 27B Dense MTP Q4 @ 192k contextqwen36-27b-dense-mtp-192kKeep
85.0
44.2
192k92.1%limittruncated or hit token limittoo few assert tests
8Qwen3.6 27B Dense MTP IMAT IQ4_XS + Q8 NextN @ 192k contextqwen36-27b-mtp-imat-iq4-q8nextn-192kKeep
85.0
38.6
192k87.1%limittruncated or hit token limittoo few assert tests
9Qwen3-Coder 30B A3B Q4 @ 131k context, f16 KVqwen3-coder-30b-a3b-131k-f16Maybe
49.0
67.8
128kn/aeoshidden behavior tests failedself tests or syntax failed
10Qwen3.6-35B-A3B-MTP-IQ4_XS-Q8nextnlocal-qwen3-6-35b-a3b-mtp-iq4-xs-q8nextn-ggufMaybe
50.0
45.9
32k87.0%eoshidden behavior tests failedself tests or syntax failed
11Qwen3.6 35B A3B MTP Q4 @ 262k contextqwen36-35b-a3b-mtp-262kCut
25.8
51.0
256k96.5%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
12Qwen3.6 27B Dense MTP Q5_K_M @ 192k contextqwen36-27b-mtp-q5km-192kCut
33.3
42.1
192k97.2%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
13Qwen3.6 35B A3B Opus 4.7 Distilled APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-opus47-apex-mtp-262kCut
19.5
53.0
256k96.1%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
14Qwen3.5 9B Q4 @ 64k SSH agentqwen35-9b-agent-64kCut
40.0
70.5
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failed
15Qwen3.5 4B Q4 @ 128k SSH agentqwen35-4b-agent-128kCut
24.8
88.1
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
16Qwen3.5 9B Q4 @ 128k SSH agentqwen35-9b-agent-128kCut
21.5
69.5
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
17Qwen3.5 4B Q4 @ 64k SSH agentqwen35-4b-agent-64kCut
17.5
88.8
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
18Qwopus3.6-27B-Coder-MTP-Q4_K_Mlocal-qwopus3-6-27b-coder-mtp-q4-k-m-ggufCut
7.5
40.1
32k97.7%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more

Quality Rank

#ModelDecisionQualitySpeedContextMTP AcceptStopFlags
1Qwen3.6 27B Dense @ 192k contextqwen36-27b-dense-192kKeep
100.0
13.9
192kn/aeosclean
2Qwen3.6 27B Dense MTP Q4 @ 192k contextqwen36-27b-dense-mtp-192kKeep
85.0
44.2
192k92.1%limittruncated or hit token limittoo few assert tests
3Qwen3.6 27B Dense MTP IMAT IQ4_XS + Q8 NextN @ 192k contextqwen36-27b-mtp-imat-iq4-q8nextn-192kKeep
85.0
38.6
192k87.1%limittruncated or hit token limittoo few assert tests
4Qwen3.6 35B MoE @ 262k contextqwen36-35b-moe-262kMaybe
85.0
38.6
256kn/aeosself tests or syntax failed
5Qwopus3.6 35B A3B v1 APEX MTP I-Balanced @ 262k contextqwopus36-35b-a3b-apex-mtp-262kMaybe
65.0
39.0
256k85.6%eoshidden behavior tests failed
6Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KVqwen3-coder-30b-a3b-256k-q8Maybe
50.0
125.1
256kn/aeoshidden behavior tests failedself tests or syntax failed
7Qwen3.6 35B A3B APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-apex-mtp-262kMaybe
50.0
52.3
256k87.7%eoshidden behavior tests failedself tests or syntax failed
8Qwen3.6 35B A3B MTP IMAT Q4_K_M + Q8 NextN @ 262k contextqwen36-35b-a3b-mtp-q4km-q8nextn-262kMaybe
50.0
50.8
256k88.9%eoshidden behavior tests failedself tests or syntax failed
9Qwen3.6-35B-A3B-MTP-IQ4_XS-Q8nextnlocal-qwen3-6-35b-a3b-mtp-iq4-xs-q8nextn-ggufMaybe
50.0
45.9
32k87.0%eoshidden behavior tests failedself tests or syntax failed
10Qwen3-Coder 30B A3B Q4 @ 131k context, f16 KVqwen3-coder-30b-a3b-131k-f16Maybe
49.0
67.8
128kn/aeoshidden behavior tests failedself tests or syntax failed
11Qwen3.5 9B Q4 @ 64k SSH agentqwen35-9b-agent-64kCut
40.0
70.5
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failed
12Qwen3.6 27B Dense MTP Q5_K_M @ 192k contextqwen36-27b-mtp-q5km-192kCut
33.3
42.1
192k97.2%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
13Qwen3.6 35B A3B MTP Q4 @ 262k contextqwen36-35b-a3b-mtp-262kCut
25.8
51.0
256k96.5%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
14Qwen3.5 4B Q4 @ 128k SSH agentqwen35-4b-agent-128kCut
24.8
88.1
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
15Qwen3.5 9B Q4 @ 128k SSH agentqwen35-9b-agent-128kCut
21.5
69.5
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
16Qwen3.6 35B A3B Opus 4.7 Distilled APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-opus47-apex-mtp-262kCut
19.5
53.0
256k96.1%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
17Qwen3.5 4B Q4 @ 64k SSH agentqwen35-4b-agent-64kCut
17.5
88.8
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
18Qwopus3.6-27B-Coder-MTP-Q4_K_Mlocal-qwopus3-6-27b-coder-mtp-q4-k-m-ggufCut
7.5
40.1
32k97.7%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more

Speed Rank

#ModelDecisionQualitySpeedContextMTP AcceptStopFlags
1Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KVqwen3-coder-30b-a3b-256k-q8Maybe
50.0
125.1
256kn/aeoshidden behavior tests failedself tests or syntax failed
2Qwen3.5 4B Q4 @ 64k SSH agentqwen35-4b-agent-64kCut
17.5
88.8
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
3Qwen3.5 4B Q4 @ 128k SSH agentqwen35-4b-agent-128kCut
24.8
88.1
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
4Qwen3.5 9B Q4 @ 64k SSH agentqwen35-9b-agent-64kCut
40.0
70.5
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failed
5Qwen3.5 9B Q4 @ 128k SSH agentqwen35-9b-agent-128kCut
21.5
69.5
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
6Qwen3-Coder 30B A3B Q4 @ 131k context, f16 KVqwen3-coder-30b-a3b-131k-f16Maybe
49.0
67.8
128kn/aeoshidden behavior tests failedself tests or syntax failed
7Qwen3.6 35B A3B Opus 4.7 Distilled APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-opus47-apex-mtp-262kCut
19.5
53.0
256k96.1%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
8Qwen3.6 35B A3B APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-apex-mtp-262kMaybe
50.0
52.3
256k87.7%eoshidden behavior tests failedself tests or syntax failed
9Qwen3.6 35B A3B MTP Q4 @ 262k contextqwen36-35b-a3b-mtp-262kCut
25.8
51.0
256k96.5%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
10Qwen3.6 35B A3B MTP IMAT Q4_K_M + Q8 NextN @ 262k contextqwen36-35b-a3b-mtp-q4km-q8nextn-262kMaybe
50.0
50.8
256k88.9%eoshidden behavior tests failedself tests or syntax failed
11Qwen3.6-35B-A3B-MTP-IQ4_XS-Q8nextnlocal-qwen3-6-35b-a3b-mtp-iq4-xs-q8nextn-ggufMaybe
50.0
45.9
32k87.0%eoshidden behavior tests failedself tests or syntax failed
12Qwen3.6 27B Dense MTP Q4 @ 192k contextqwen36-27b-dense-mtp-192kKeep
85.0
44.2
192k92.1%limittruncated or hit token limittoo few assert tests
13Qwen3.6 27B Dense MTP Q5_K_M @ 192k contextqwen36-27b-mtp-q5km-192kCut
33.3
42.1
192k97.2%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
14Qwopus3.6-27B-Coder-MTP-Q4_K_Mlocal-qwopus3-6-27b-coder-mtp-q4-k-m-ggufCut
7.5
40.1
32k97.7%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
15Qwopus3.6 35B A3B v1 APEX MTP I-Balanced @ 262k contextqwopus36-35b-a3b-apex-mtp-262kMaybe
65.0
39.0
256k85.6%eoshidden behavior tests failed
16Qwen3.6 27B Dense MTP IMAT IQ4_XS + Q8 NextN @ 192k contextqwen36-27b-mtp-imat-iq4-q8nextn-192kKeep
85.0
38.6
192k87.1%limittruncated or hit token limittoo few assert tests
17Qwen3.6 35B MoE @ 262k contextqwen36-35b-moe-262kMaybe
85.0
38.6
256kn/aeosself tests or syntax failed
18Qwen3.6 27B Dense @ 192k contextqwen36-27b-dense-192kKeep
100.0
13.9
192kn/aeosclean

Context Rank

#ModelDecisionQualitySpeedContextMTP AcceptStopFlags
1Qwen3.6 35B MoE @ 262k contextqwen36-35b-moe-262kMaybe
85.0
38.6
256kn/aeosself tests or syntax failed
2Qwopus3.6 35B A3B v1 APEX MTP I-Balanced @ 262k contextqwopus36-35b-a3b-apex-mtp-262kMaybe
65.0
39.0
256k85.6%eoshidden behavior tests failed
3Qwen3.6 35B A3B MTP IMAT Q4_K_M + Q8 NextN @ 262k contextqwen36-35b-a3b-mtp-q4km-q8nextn-262kMaybe
50.0
50.8
256k88.9%eoshidden behavior tests failedself tests or syntax failed
4Qwen3.6 35B A3B APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-apex-mtp-262kMaybe
50.0
52.3
256k87.7%eoshidden behavior tests failedself tests or syntax failed
5Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KVqwen3-coder-30b-a3b-256k-q8Maybe
50.0
125.1
256kn/aeoshidden behavior tests failedself tests or syntax failed
6Qwen3.6 35B A3B MTP Q4 @ 262k contextqwen36-35b-a3b-mtp-262kCut
25.8
51.0
256k96.5%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
7Qwen3.6 35B A3B Opus 4.7 Distilled APEX MTP I-Balanced @ 262k contextqwen36-35b-a3b-opus47-apex-mtp-262kCut
19.5
53.0
256k96.1%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
8Qwen3.6 27B Dense @ 192k contextqwen36-27b-dense-192kKeep
100.0
13.9
192kn/aeosclean
9Qwen3.6 27B Dense MTP IMAT IQ4_XS + Q8 NextN @ 192k contextqwen36-27b-mtp-imat-iq4-q8nextn-192kKeep
85.0
38.6
192k87.1%limittruncated or hit token limittoo few assert tests
10Qwen3.6 27B Dense MTP Q4 @ 192k contextqwen36-27b-dense-mtp-192kKeep
85.0
44.2
192k92.1%limittruncated or hit token limittoo few assert tests
11Qwen3.6 27B Dense MTP Q5_K_M @ 192k contextqwen36-27b-mtp-q5km-192kCut
33.3
42.1
192k97.2%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
12Qwen3-Coder 30B A3B Q4 @ 131k context, f16 KVqwen3-coder-30b-a3b-131k-f16Maybe
49.0
67.8
128kn/aeoshidden behavior tests failedself tests or syntax failed
13Qwen3.5 4B Q4 @ 128k SSH agentqwen35-4b-agent-128kCut
24.8
88.1
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests
14Qwen3.5 9B Q4 @ 128k SSH agentqwen35-9b-agent-128kCut
21.5
69.5
128kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
15Qwen3.5 9B Q4 @ 64k SSH agentqwen35-9b-agent-64kCut
40.0
70.5
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failed
16Qwen3.5 4B Q4 @ 64k SSH agentqwen35-4b-agent-64kCut
17.5
88.8
64kn/alimittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more
17Qwen3.6-35B-A3B-MTP-IQ4_XS-Q8nextnlocal-qwen3-6-35b-a3b-mtp-iq4-xs-q8nextn-ggufMaybe
50.0
45.9
32k87.0%eoshidden behavior tests failedself tests or syntax failed
18Qwopus3.6-27B-Coder-MTP-Q4_K_Mlocal-qwopus3-6-27b-coder-mtp-q4-k-m-ggufCut
7.5
40.1
32k97.7%limittruncated or hit token limithidden behavior tests failedself tests or syntax failedtoo few assert tests+1 more

Per-Model Notes

Each row below includes the automated critique plus the most useful failure snippet or response tail.

Qwen3.6 27B Dense @ 192k context Keep

Critical Read

Completed runnable code and passed the hidden behavior checks.

No automated issues flagged.

Metrics

Quality
100.0
Composite
73.0
Gen TPS
13.9
Prompt TPS
396.2
MTP acceptance
n/a
Predicted tokens
4,111
Wall time
320.3s
"q", {}, now=1000)
    snapshot = scheduler12.snapshot()
    scheduler13 = JobScheduler.load_snapshot(snapshot)
    assert scheduler13.get_job("job").job_id == "job"

    print("All tests passed.")
```

Critique: The design prioritizes simplicity and correctness over performance, using in-memory dictionaries for job storage. Cycle detection is limited to direct dependencies of the new job, which may miss indirect cycles in complex graphs. The retry mechanism uses a simple exponential backoff without jitter, which could lead to thundering herd problems in production. The snapshot format is JSON-serializable but does not include metadata like scheduler configuration. The `retry_due_jobs` method is somewhat redundant given that `next_job` already checks retry delays. The implementation lacks concurrency controls, making it unsuitable for multi-threaded environments without external locking.
Qwen3.6 35B MoE @ 262k context Maybe

Critical Read

Candidate code failed to run its own tests or parse.

Candidate code failed to run its own tests or parse.

Metrics

Quality
85.0
Composite
72.5
Gen TPS
38.6
Prompt TPS
480.7
MTP acceptance
n/a
Predicted tokens
3,982
Wall time
129.9s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen36-35b-moe-262k.candidate.py", line 255, in <module>
    scheduler.enqueue("j3", "q1", {}, dependencies=("j4",), now=1003)
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen36-35b-moe-262k.candidate.py", line 52, in enqueue
    raise ValueError(f"Unknown dependency: {dep_id}")
ValueError: Unknown dependency: j4
Qwen3-Coder 30B A3B Q4 @ 256k context, q8 KV Maybe

Critical Read

Produced code-like output, but hidden behavior checks exposed gaps.

Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse.

Metrics

Quality
50.0
Composite
66.0
Gen TPS
125.1
Prompt TPS
619.3
MTP acceptance
n/a
Predicted tokens
2,948
Wall time
34.6s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 995, in exec_module
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen3-coder-30b-a3b-256k-q8.candidate.py", line 23, in <module>
    class JobScheduler:
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen3-coder-30b-a3b-256k-q8.candidate.py", line 214, in JobScheduler
    def load_snapshot(cls, data: dict) -> JobScheduler:
                                          ^^^^^^^^^^^^
NameError: name 'JobScheduler' is not defined
Qwopus3.6 35B A3B v1 APEX MTP I-Balanced @ 262k context Maybe

Critical Read

Produced code-like output, but hidden behavior checks exposed gaps.

Failed hidden scheduler behavior tests.

Metrics

Quality
65.0
Composite
65.3
Gen TPS
39.0
Prompt TPS
261.4
MTP acceptance
85.6%
Predicted tokens
5,048
Wall time
179.7s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 995, in exec_module
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwopus36-35b-a3b-apex-mtp-262k.candidate.py", line 12, in <module>
    @dataclass
     ^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 1268, in dataclass
    return wrap(cls)
           ^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 1258, in wrap
    return _process_class(cls, init, repr, eq, order, unsafe_hash,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 983, in _process_class
    and _is_type(type
Qwen3.6 35B A3B APEX MTP I-Balanced @ 262k context Maybe

Critical Read

Produced code-like output, but hidden behavior checks exposed gaps.

Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse.

Metrics

Quality
50.0
Composite
58.8
Gen TPS
52.3
Prompt TPS
307.4
MTP acceptance
87.7%
Predicted tokens
2,844
Wall time
88.4s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 995, in exec_module
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen36-35b-a3b-apex-mtp-262k.candidate.py", line 14, in <module>
    @dataclass
     ^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 1268, in dataclass
    return wrap(cls)
           ^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 1258, in wrap
    return _process_class(cls, init, repr, eq, order, unsafe_hash,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 983, in _process_class
    and _is_type(type, 
Qwen3.6 35B A3B MTP IMAT Q4_K_M + Q8 NextN @ 262k context Maybe

Critical Read

Produced code-like output, but hidden behavior checks exposed gaps.

Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse.

Metrics

Quality
50.0
Composite
58.7
Gen TPS
50.8
Prompt TPS
323.4
MTP acceptance
88.9%
Predicted tokens
3,118
Wall time
89.0s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 995, in exec_module
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen36-35b-a3b-mtp-q4km-q8nextn-262k.candidate.py", line 14, in <module>
    @dataclass
     ^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 1268, in dataclass
    return wrap(cls)
           ^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 1258, in wrap
    return _process_class(cls, init, repr, eq, order, unsafe_hash,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/dataclasses.py", line 983, in _process_class
    and _is_typ
Qwen3.6 27B Dense MTP Q4 @ 192k context Keep

Critical Read

Completed runnable code and passed the hidden behavior checks.

Hit the output token cap before a clean finish. Did not include the requested assert-test coverage.

Metrics

Quality
85.0
Composite
57.6
Gen TPS
44.2
Prompt TPS
279.6
MTP acceptance
92.1%
Predicted tokens
24,576
Wall time
580.6s
l.
Correct.

One detail: `next_job` returns Job | None.
Correct.

One detail: `get_job` returns Job | None.
Correct.

One detail: `list_jobs` returns list[Job].
Correct.

One detail: `snapshot` returns dict.
Correct.

One detail: `load_snapshot` returns JobScheduler.
Correct.

One detail: `enqueue` returns Job.
Correct.

One detail: `mark_succeeded` returns Job.
Correct.

One detail: `mark_failed` returns Job.
Correct.

One detail: `retry_due_jobs` returns list[Job].
Correct.

One detail: `cancel` returns bool.
Correct.

One detail: `next_job` returns Job | None.
Correct.

One detail: `get_job` returns Job | None.
Correct.

One detail: `list_jobs` returns list[Job].
Correct.

One detail: `snapshot` returns dict.
Correct.

One detail: `load_snapshot` returns JobScheduler.
Correct.

One detail: `enqueue` returns Job.
Correct.

One detail: `mark_succeeded` returns Job.
Correct.

One detail:
Qwen3.6 27B Dense MTP IMAT IQ4_XS + Q8 NextN @ 192k context Keep

Critical Read

Completed runnable code and passed the hidden behavior checks.

Hit the output token cap before a clean finish. Did not include the requested assert-test coverage.

Metrics

Quality
85.0
Composite
56.7
Gen TPS
38.6
Prompt TPS
272.8
MTP acceptance
87.1%
Predicted tokens
24,576
Wall time
663.8s
 Test 5 (Recursive Cancel) - `cancel` implementation**:
One edge case: `cancel` on job with dependents that are ...
Okay.

**Wait, Test 5 (Recursive Cancel) - `cancel` implementation**:
One edge case: `cancel` on job with dependents that are ...
Okay.

**Wait, Test 5 (Recursive Cancel) - `cancel` implementation**:
One edge case: `cancel` on job with dependents that are ...
Okay.

**Wait, Test 5 (Recursive Cancel) - `cancel` implementation**:
One edge case: `cancel` on job with dependents that are ...
Okay.

**Wait, Test 5 (Recursive Cancel) - `cancel` implementation**:
One edge case: `cancel` on job with dependents that are ...
Okay.

**Wait, Test 5 (Recursive Cancel) - `cancel` implementation**:
One edge case: `cancel` on job with dependents that are ...
Okay.

**Wait, Test 5 (Recursive Cancel) - `cancel` implementation**:
One edge case: `cancel` on job with dependents that are ...
Okay
Qwen3-Coder 30B A3B Q4 @ 131k context, f16 KV Maybe

Critical Read

Produced code-like output, but hidden behavior checks exposed gaps.

Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse.

Metrics

Quality
49.0
Composite
47.8
Gen TPS
67.8
Prompt TPS
573.8
MTP acceptance
n/a
Predicted tokens
3,645
Wall time
77.3s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 24, in <module>
    assert jid(s.next_job("q", now=200)) == "b", "highest priority first"
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: highest priority first
Qwen3.6-35B-A3B-MTP-IQ4_XS-Q8nextn Maybe

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse.

Metrics

Quality
50.0
Composite
42.9
Gen TPS
45.9
Prompt TPS
316.7
MTP acceptance
87.0%
Predicted tokens
4,125
Wall time
117.5s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/local-qwen3-6-35b-a3b-mtp-iq4-xs-q8nextn-gguf.candidate.py", line 354
    scheduler11 = JobScheduler()
    ^^^^^^^^^^^
SyntaxError: expected 'except' or 'finally' block
Qwen3.6 35B A3B MTP Q4 @ 262k context Cut

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse. Did not include the requested assert-test coverage.

Metrics

Quality
25.8
Composite
35.1
Gen TPS
51.0
Prompt TPS
364.8
MTP acceptance
96.5%
Predicted tokens
24,576
Wall time
512.7s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen36-35b-a3b-mtp-262k.candidate.py", line 8
    - Retry: exponential backoff 1000ms * 2 ** (attempts - 1).
                                    ^
SyntaxError: invalid decimal literal
Qwen3.6 27B Dense MTP Q5_K_M @ 192k context Cut

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse. Did not include the requested assert-test coverage.

Metrics

Quality
33.3
Composite
34.1
Gen TPS
42.1
Prompt TPS
277.5
MTP acceptance
97.2%
Predicted tokens
24,576
Wall time
611.8s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen36-27b-mtp-q5km-192k.candidate.py", line 1
    ```python
    ^
SyntaxError: invalid syntax
Qwen3.6 35B A3B Opus 4.7 Distilled APEX MTP I-Balanced @ 262k context Cut

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse. Did not include the requested assert-test coverage. Missed one or more required API methods.

Metrics

Quality
19.5
Composite
32.5
Gen TPS
53.0
Prompt TPS
280.6
MTP acceptance
96.1%
Predicted tokens
24,576
Wall time
498.0s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen36-35b-a3b-opus47-apex-mtp-262k.candidate.py", line 4
    For the scheduler, I'll track jobs by ID and queue, maintain a dependency graph, and implement priority-based selection with FIFO tie-breaking. The retry logic needs exponential backoff (1000ms * 2^(attempts-1)), and cancellation should propagate recursively through dependents. I also ne
Qwen3.5 9B Q4 @ 64k SSH agent Cut

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse.

Metrics

Quality
40.0
Composite
30.2
Gen TPS
70.5
Prompt TPS
614.6
MTP acceptance
n/a
Predicted tokens
24,576
Wall time
359.5s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen35-9b-agent-64k.candidate.py", line 1
    ```python
    ^
SyntaxError: invalid syntax
Qwen3.5 4B Q4 @ 128k SSH agent Cut

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse. Did not include the requested assert-test coverage.

Metrics

Quality
24.8
Composite
28.8
Gen TPS
88.1
Prompt TPS
638.7
MTP acceptance
n/a
Predicted tokens
24,576
Wall time
283.9s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen35-4b-agent-128k.candidate.py", line 23
    *   **Snapshot:** `pickle` is not allowed (no external packages, but `pickle` is stdlib). However, `json` is safer for "JSON-serializable dict" requirement. I'll use `json` for serialization/deserialization to ensure determinism and compatibility.
                                                      
Qwen3.5 9B Q4 @ 128k SSH agent Cut

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse. Did not include the requested assert-test coverage. Missed one or more required API methods.

Metrics

Quality
21.5
Composite
25.0
Gen TPS
69.5
Prompt TPS
600.8
MTP acceptance
n/a
Predicted tokens
24,576
Wall time
361.6s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen35-9b-agent-128k.candidate.py", line 1
    ```python
    ^
SyntaxError: invalid syntax
Qwen3.5 4B Q4 @ 64k SSH agent Cut

Critical Read

Produced code-like output, but hidden behavior checks exposed gaps.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse. Did not include the requested assert-test coverage. Missed one or more required API methods.

Metrics

Quality
17.5
Composite
22.3
Gen TPS
88.8
Prompt TPS
704.3
MTP acceptance
n/a
Predicted tokens
24,576
Wall time
284.7s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/qwen35-4b-agent-64k.candidate.py", line 28
    if __name__ == "__main__":
    ^
IndentationError: expected an indented block after class definition on line 25
Qwopus3.6-27B-Coder-MTP-Q4_K_M Cut

Critical Read

Generated code was incomplete or fenced badly enough to fail parsing.

Hit the output token cap before a clean finish. Failed hidden scheduler behavior tests. Candidate code failed to run its own tests or parse. Did not include the requested assert-test coverage. Missed one or more required API methods.

Metrics

Quality
7.5
Composite
14.0
Gen TPS
40.1
Prompt TPS
352.7
MTP acceptance
97.7%
Predicted tokens
24,576
Wall time
633.8s
Traceback (most recent call last):
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/hidden_scheduler_tests.py", line 10, in <module>
    spec.loader.exec_module(mod)
  File "<frozen importlib._bootstrap_external>", line 991, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1129, in get_code
  File "<frozen importlib._bootstrap_external>", line 1059, in source_to_code
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "/models/benchmark-results/qwen-suite-r25-20260614-023836/local-qwopus3-6-27b-coder-mtp-q4-k-m-gguf.candidate.py", line 9
    5. Exponential backoff: 1000ms * 2 ** (attempts - 1)
                               ^
SyntaxError: invalid decimal literal
Part of the InfiniteEcho Model Testing explorer · © 2026 InfiniteEcho