skill(infer-hw-adapt, infer-precision-check): expand backend coverage and add shared precision check skill#18
Merged
Caozhou1995 merged 6 commits intoJul 13, 2026
Conversation
37bb53e to
fb6dda0
Compare
Caozhou1995
reviewed
Jul 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two skill updates based on findings from recent backend adaptation work.
Changes
infer-hw-adapt
SKILL.md
musa,iluvatar,sunrise,hygon,ppuSUMMARY.md
platform detectionto theLoad whendescriptioninfer-precision-check (new skill)
SKILL.md
SUMMARY.md
Integration
infer-model-adaptcallsinfer-precision-checkat Step 13 (after offline inference passes)infer-hw-adaptcallsinfer-precision-checkat Stage 4 (after functional tests pass)No functional changes to agent behavior
All updates are documentation/guidance only. No code changes.
Precision Verification: Qwen3.6-27B on MetaX C550
Real-world validation run using the
infer-precision-checkskill on MetaX C550 hardware.Setup
vllm-precision-gtvllm-fl-adapt-0202Tier 1 Results (Exact Token ID Match)
5 prompts × 128 max tokens, greedy decoding:
Tier 1: 3/5 MATCH
Analysis
Known Workaround Applied
MetaX MACA NCCL
init_process_group(world_size=1) consumes ~54 GiB of device memory before vLLM's memory snapshot, causing the defaultgpu_memory_utilization=0.85check to fail (free=7.54 GiB < requested=54 GiB). Fix: usekv_cache_memory_bytes=3*1024**3to bypass the utilization-based check and directly specify KV cache size. Also requiresenforce_eager=True.