소스 정보
- 저장소
- opendatahub-io/ai-helpers
- 최근 소스 활동
- 2026년 8월 26일 12:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 37
- 포크
- 75
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/opendatahub-io/ai-helpers --skill vllm-compare-reqs명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | vllm-compare-reqs |
| description | Use this skill to compare vllm requirements files between versions |
| allowed-tools | Bash |
| user-invocable | true |
Compare vllm requirements files and Dockerfiles between versions to identify dependency changes, providing intelligent analysis for AIPCC package onboarding workflows.
For accelerator builds (ROCm, CUDA, TPU, XPU), Dockerfile comparison is critical because they specify exact commits/branches for dependencies built from source (PyTorch, Triton, Flash Attention, etc.) - information not available in requirements files.
Note: Starting from v0.20, vllm moved build requirements into a build/ subdirectory (e.g., build/rocm.txt instead of rocm-build.txt). The script automatically handles both layouts, falling back to the old paths for older versions. This makes cross-version comparisons (e.g., v0.19 vs v0.20) work seamlessly.
Executable Script - Runs a Python script to fetch and compare requirements files from the vllm GitHub repository.
Use this skill when you need to:
Note: Variant comparisons include BOTH runtime and build dependencies to ensure complete coverage.
./scripts/compare_reqs.py <version1> <version2> <variant|file> [--pretty]
v0.13.0, v0.14.0rc1)rocm, cuda, cpu, tpu, xpu (auto-includes runtime + build requirements + Dockerfiles)build/rocm.txt, common.txt, docker/Dockerfile.rocm, etc. (old-style paths like rocm-build.txt also accepted)# Compare ROCm runtime + build requirements + Dockerfiles
./scripts/compare_reqs.py v0.19.0 v0.20.2 rocm
# Compare CUDA runtime + build requirements + Dockerfiles
./scripts/compare_reqs.py v0.19.0 v0.20.2 cuda
# Compare specific file only
./scripts/compare_reqs.py v0.19.0 v0.20.2 common.txt
./scripts/compare_reqs.py v0.19.0 v0.20.2 build/rocm.txt
./scripts/compare_reqs.py v0.19.0 v0.20.2 docker/Dockerfile.rocm_base
# Cross-version comparison (old layout vs new layout - handled automatically)
./scripts/compare_reqs.py v0.18.0 v0.20.2 rocm
# All variants (auto-detects correct file paths per version)
./scripts/compare_reqs.py v0.19.0 v0.20.2 rocm # common.txt + rocm.txt + build/rocm.txt + Dockerfiles
./scripts/compare_reqs.py v0.19.0 v0.20.2 cuda # common.txt + cuda.txt + build/cuda.txt + Dockerfile
./scripts/compare_reqs.py v0.19.0 v0.20.2 cpu # common.txt + cpu.txt + build/cpu.txt + Dockerfile.cpu
./scripts/compare_reqs.py v0.19.0 v0.20.2 tpu # common.txt + tpu.txt + Dockerfile.tpu
./scripts/compare_reqs.py v0.19.0 v0.20.2 xpu # common.txt + xpu.txt + Dockerfile.xpu (Intel GPU)
The script provides clean, categorized output with a summary table followed by detailed changes:
=== Comparing rocm variant (runtime + build + Dockerfiles): v0.19.0 -> v0.20.2 ===
📊 Change Summary Table:
File Package Old Version New Version Type
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
common.txt protobuf - >= 6.30.0 Added
common.txt grpcio - >=1.76.0 Added
build/rocm.txt torch ==2.9.0 ==2.9.1 Changed
build/rocm.txt triton ==3.5.0 ==3.5.1 Changed
docker/Dockerfil... PYTORCH_BRANCH=1c57644d Changed
docker/Dockerfil... MORI_BRANCH=2d02c6a9 - Added
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📄 common.txt
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Changed:
xgrammar == 0.1.27 → xgrammar == 0.1.29
mistral_common[image] >= 1.8.5 → mistral_common[image] >= 1.8.8
➕ Added:
protobuf >= 6.30.0 # Required by LlamaTokenizer, gRPC.
grpcio>=1.76.0
➖ Removed:
scipy # Required for phi-4-multimodal-instruct
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📄 build/rocm.txt
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Changed:
torch==2.9.0 → torch==2.9.1
triton==3.5.0 → triton==3.5.1
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🐳 docker/Dockerfile.rocm_base
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Changed:
BASE_IMAGE=rocm/dev-ubuntu-22.04:7.1-complete → BASE_IMAGE=rocm/dev-ubuntu-22.04:7.0-complete
PYTORCH_BRANCH=1c57644d → PYTORCH_BRANCH=89075173
AITER_BRANCH=59bd8ff2 → AITER_BRANCH=6af8b687
➕ Added:
MORI_BRANCH=2d02c6a9
MORI_REPO=https://github.com/ROCm/mori.git
RIXL_BRANCH=50d63d94
RIXL_REPO=https://github.com/vcave/RIXL.git
After running the script and displaying the output, you must provide intelligent impact analysis:
## Summary of Changes: vllm v0.13.0 → v0.14.0rc1
### Impact Level: Medium
### AIPCC Wheels Builder Impact:
#### ✅ No Action Required:
- ROCm version remains at 6.4
- PyTorch ecosystem stable (minor patch updates only)
#### ⚠️ Action Required:
**New packages to onboard:**
1. **`grpcio>=1.76.0`** (NEW)
- Purpose: gRPC support
- Complexity: Compiled extension (C++)
- PyPI: https://pypi.org/project/grpcio/
- Action: Onboard grpcio 1.76.0+
**Version updates:**
- torch: 2.9.0 → 2.9.1 (patch - safe)
- triton: 3.5.0 → 3.5.1 (patch - safe)
**Removed dependencies:**
- scipy: Was required for phi-4-multimodal-instruct
- Risk: Low (model-specific, may not be widely used)
#### Next Steps:
1. Onboard grpcio>=1.76.0 to wheels builder
2. Verify torch 2.9.1 and triton 3.5.1 availability
3. Test vllm 0.14.0rc1 build with new dependencies
4. Validate phi-4 model functionality without scipy
**Context:** This release adds gRPC support and updates to PyTorch 2.9.1.
When onboarding a new vllm version:
When builds fail:
When planning releases:
The script detects and reports errors for:
rocm-build.txt vs new build/rocm.txt)