Spaces:
Running
Running
File size: 11,617 Bytes
7b4f5dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | """
AMD ROCm Migration Advisor β CUDA β ROCm/HIP compatibility scanner.
Scans code for CUDA-specific patterns and provides actionable migration
guidance for AMD MI300X hardware. Produces an AMD Compatibility Score
and a per-file migration guide.
"""
from __future__ import annotations
import logging
import re
from typing import Any, Dict, List, Optional, Tuple
from tools.code_parser import FileEntry, get_snippet
logger = logging.getLogger(__name__)
# ββββββββββββββββββββββββββββββββββββββββββββββββββ
# Migration pattern definitions (10 categories)
# ββββββββββββββββββββββββββββββββββββββββββββββββββ
MIGRATION_PATTERNS: List[Dict[str, Any]] = [
{
"id": "AMD_M01",
"pattern": re.compile(
r"torch\.cuda\.is_available\s*\(\)", re.MULTILINE
),
"title": "CUDA Device Check",
"description": (
"torch.cuda.is_available() works on ROCm but torch.version.hip "
"is more explicit for AMD hardware detection."
),
"rocm_fix": (
"Use `torch.cuda.is_available()` (ROCm compatible) "
"or check `hasattr(torch.version, 'hip')` for explicit AMD detection."
),
"severity": "low",
},
{
"id": "AMD_M02",
"pattern": re.compile(
r"""(?:nvidia[\-_]smi|nvidia_smi|["']nvidia-smi["'])""",
re.MULTILINE,
),
"title": "NVIDIA-Specific CLI Tool",
"description": "nvidia-smi is NVIDIA-only and will fail on AMD hardware.",
"rocm_fix": (
"Replace nvidia-smi with rocm-smi. "
"Example: subprocess.run(['rocm-smi', '--showmeminfo', 'vram'])"
),
"severity": "critical",
},
{
"id": "AMD_M03",
"pattern": re.compile(
r"CUDA_VISIBLE_DEVICES", re.MULTILINE
),
"title": "CUDA Device Selection Environment Variable",
"description": "CUDA_VISIBLE_DEVICES is ignored on AMD/ROCm hardware.",
"rocm_fix": "Replace with HIP_VISIBLE_DEVICES=0 for AMD GPU selection.",
"severity": "high",
},
{
"id": "AMD_M04",
"pattern": re.compile(
r"torch\.cuda\.amp\.(?:autocast|GradScaler)", re.MULTILINE
),
"title": "Legacy CUDA AMP API",
"description": "Old torch.cuda.amp API has limited ROCm support.",
"rocm_fix": (
"Upgrade to torch.amp.autocast('cuda') and torch.amp.GradScaler('cuda') "
"which are ROCm-native and match MI300X bfloat16 support."
),
"severity": "high",
},
{
"id": "AMD_M05",
"pattern": re.compile(
r"\.half\s*\(\)|torch\.float16|dtype\s*=\s*torch\.float16",
re.MULTILINE,
),
"title": "FP16 Precision (Suboptimal on MI300X)",
"description": (
"FP16 works on AMD but bfloat16 is natively supported on MI300X "
"with no accuracy loss and better numerical stability."
),
"rocm_fix": (
"Replace .half() with .bfloat16() and torch.float16 with torch.bfloat16. "
"MI300X executes bfloat16 at the same speed with higher stability."
),
"severity": "medium",
},
{
"id": "AMD_M06",
"pattern": re.compile(
r"torch\.backends\.cudnn\.(?:benchmark|enabled|deterministic)",
re.MULTILINE,
),
"title": "cuDNN Backend Configuration",
"description": (
"torch.backends.cudnn settings are NVIDIA-specific. "
"AMD uses MIOpen as its deep learning backend."
),
"rocm_fix": (
"Remove cudnn-specific flags. ROCm/MIOpen auto-configures. "
"Use torch.backends.cuda.matmul.allow_tf32 for equivalent behavior."
),
"severity": "medium",
},
{
"id": "AMD_M07",
"pattern": re.compile(
r"(?:import\s+flash_attn|from\s+flash_attn)", re.MULTILINE
),
"title": "Flash Attention β CUDA Build",
"description": "Default flash-attn pip package is compiled for CUDA only.",
"rocm_fix": (
"Build flash-attn from source with ROCm flag: "
"MAX_JOBS=4 pip install flash-attn --no-build-isolation "
"Or use torch.nn.functional.scaled_dot_product_attention() "
"which has native ROCm support."
),
"severity": "high",
},
{
"id": "AMD_M08",
"pattern": re.compile(
r"torch\.cuda\.(?:memory_allocated|max_memory_reserved|max_memory_allocated)\s*\(",
re.MULTILINE,
),
"title": "CUDA Memory Profiling API",
"description": (
"torch.cuda.memory_allocated() works on ROCm but "
"rocm-smi gives more accurate MI300X HBM3 readings."
),
"rocm_fix": (
"Continue using torch.cuda.memory_allocated() (ROCm compatible) "
"but add rocm-smi polling for accurate HBM3 bandwidth metrics."
),
"severity": "low",
},
{
"id": "AMD_M09",
"pattern": re.compile(
r"""device\s*=\s*['"]cuda['"]""", re.MULTILINE
),
"title": "Hardcoded CUDA Device String",
"description": (
"Hardcoded 'cuda' string works on ROCm but poor practice "
"for hardware-agnostic code."
),
"rocm_fix": (
"Replace with: device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') "
"This works identically on AMD ROCm."
),
"severity": "low",
},
{
"id": "AMD_M10",
"pattern": re.compile(
r"load_in_8bit\s*=\s*True|load_in_4bit\s*=\s*True|BitsAndBytesConfig",
re.MULTILINE,
),
"title": "BitsAndBytes Quantization (CUDA Only)",
"description": "bitsandbytes library does not support AMD ROCm.",
"rocm_fix": (
"Use AutoAWQ or llama.cpp with ROCm backend for quantization. "
"For vLLM on MI300X: use --quantization awq or --dtype bfloat16 "
"with FP8 quantization which is natively supported."
),
"severity": "critical",
},
]
# Pre-built lookup for severity weighting
_SEVERITY_WEIGHT = {
"critical": 20,
"high": 10,
"medium": 3,
"low": 1,
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββ
# Migration Finding data class
# ββββββββββββββββββββββββββββββββββββββββββββββββββ
class MigrationFinding:
"""A single CUDA β ROCm migration finding."""
__slots__ = (
"id", "title", "description", "rocm_fix", "severity",
"file", "line", "code_snippet",
)
def __init__(
self,
id: str,
title: str,
description: str,
rocm_fix: str,
severity: str,
file: str,
line: int,
code_snippet: str,
) -> None:
self.id = id
self.title = title
self.description = description
self.rocm_fix = rocm_fix
self.severity = severity
self.file = file
self.line = line
self.code_snippet = code_snippet
def to_dict(self) -> Dict[str, Any]:
return {
"id": self.id,
"title": self.title,
"description": self.description,
"rocm_fix": self.rocm_fix,
"severity": self.severity,
"file": self.file,
"line": self.line,
"code_snippet": self.code_snippet,
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββ
# Main advisor class
# ββββββββββββββββββββββββββββββββββββββββββββββββββ
class AMDMigrationAdvisor:
"""
Scans source files for CUDA-specific patterns and produces
an AMD Compatibility Score with migration guidance.
"""
def __init__(self) -> None:
self.patterns = MIGRATION_PATTERNS
async def scan(self, files: List[FileEntry]) -> Dict[str, Any]:
"""
Scan all files for CUDA-specific patterns.
Parameters
----------
files : list of (filename, content) tuples
Returns
-------
dict with keys:
findings, compatibility_score, compatibility_label,
total_cuda_patterns_found
"""
all_findings: List[MigrationFinding] = []
seen: set = set() # deduplicate by (pattern_id, file, line)
for file_path, code in files:
for pat_def in self.patterns:
try:
for match in pat_def["pattern"].finditer(code):
line_number = code[: match.start()].count("\n") + 1
key = (pat_def["id"], file_path, line_number)
if key in seen:
continue
seen.add(key)
snippet = get_snippet(code, line_number, context=2)
all_findings.append(
MigrationFinding(
id=pat_def["id"],
title=pat_def["title"],
description=pat_def["description"],
rocm_fix=pat_def["rocm_fix"],
severity=pat_def["severity"],
file=file_path,
line=line_number,
code_snippet=snippet,
)
)
except Exception as exc:
logger.debug(
"[AMDMigration] Pattern %s failed on %s: %s",
pat_def["id"], file_path, exc,
)
# ββ Compute AMD Compatibility Score βββββββββββββββββββββ
penalty = 0
for f in all_findings:
penalty += _SEVERITY_WEIGHT.get(f.severity, 1)
score = max(0, min(100, 100 - penalty))
if score >= 90:
label = "Fully ROCm Ready"
elif score >= 70:
label = "Mostly Compatible"
elif score >= 50:
label = "Needs Migration Work"
else:
label = "CUDA-Specific Codebase"
logger.info(
"[AMDMigration] Scanned %d files β %d CUDA patterns found β score %d%% (%s)",
len(files), len(all_findings), score, label,
)
return {
"findings": [f.to_dict() for f in all_findings],
"compatibility_score": score,
"compatibility_label": label,
"total_cuda_patterns_found": len(all_findings),
"summary": (
f"Found {len(all_findings)} CUDA-specific pattern(s). "
f"After applying fixes, this codebase will be fully "
f"optimized for AMD MI300X."
if all_findings
else "No CUDA-specific patterns detected β codebase is ROCm-ready."
),
}
|