File size: 13,454 Bytes
786f63c | 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 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | from __future__ import annotations
import json
import os
import uuid
from pathlib import Path
from typing import Any
import gradio as gr
from rocmport.agents import CREWAI_AVAILABLE
from rocmport.ingest import PreparedRepo, prepare_github_repo, prepare_uploaded_zip, sample_repo_path
from rocmport.models import CATEGORY_LABELS, MigrationBundle
from rocmport.pipeline import analyze_repository
def _pipeline_mode_html() -> str:
"""Return an HTML badge indicating whether the agentic CrewAI pipeline is active."""
if (
CREWAI_AVAILABLE
and os.getenv("QWEN_BASE_URL", "").strip()
and os.getenv("QWEN_API_KEY", "").strip()
):
return (
"<div class='mode-badge agentic'>"
"🤖 <strong>CrewAI Agentic Mode</strong> — "
"CUDA Auditor → ROCm Engineer → Report Writer agents active "
"(powered by Qwen3-Coder on AMD Instinct)"
"</div>"
)
return (
"<div class='mode-badge deterministic'>"
"⚙️ <strong>Deterministic Mode</strong> — "
"Set <code>QWEN_BASE_URL</code> & <code>QWEN_API_KEY</code> "
"to enable the full CrewAI multi-agent pipeline."
"</div>"
)
PROJECT_ROOT = Path(__file__).resolve().parent
RUNTIME_DIR = PROJECT_ROOT / "artifacts" / "runtime"
RUNTIME_DIR.mkdir(parents=True, exist_ok=True)
os.environ.setdefault("ROCMPORT_TMP_DIR", str(RUNTIME_DIR))
def run_analysis(source_mode: str, uploaded_zip: str | None, github_url: str, branch: str) -> tuple[Any, ...]:
try:
prepared = _prepare_repo(source_mode, uploaded_zip, github_url, branch)
output_dir = RUNTIME_DIR / f"rocmport-ui-artifacts-{uuid.uuid4().hex}"
output_dir.mkdir(parents=True, exist_ok=False)
bundle = analyze_repository(prepared.path, output_dir=output_dir, repo_name=prepared.name)
return _format_outputs(bundle)
except Exception as exc:
error = f"Analysis failed: {exc}"
empty_scores = "<div class='score-card'><h2>Analysis failed</h2><p>{}</p></div>".format(error)
return (
empty_scores,
[],
error,
"",
"",
"",
error,
"{}",
error,
None,
)
def _prepare_repo(source_mode: str, uploaded_zip: str | None, github_url: str, branch: str) -> PreparedRepo:
if source_mode == "Built-in sample":
sample = sample_repo_path(PROJECT_ROOT)
return PreparedRepo(path=sample, name="cuda_first_repo")
if source_mode == "Uploaded ZIP":
if not uploaded_zip:
raise ValueError("Upload a ZIP file or switch to the built-in sample.")
return prepare_uploaded_zip(uploaded_zip)
if source_mode == "Public GitHub URL":
if not github_url.strip():
raise ValueError("Enter a public GitHub repository URL.")
return prepare_github_repo(github_url, branch.strip() or "main")
raise ValueError("Unknown source mode.")
def _format_outputs(bundle: MigrationBundle) -> tuple[Any, ...]:
benchmark_json = json.dumps(bundle.benchmark, indent=2)
return (
_score_html(bundle),
bundle.findings_table(),
_migration_plan_markdown(bundle),
bundle.patch_diff,
bundle.dockerfile,
bundle.runbook,
_benchmark_markdown(bundle.benchmark),
benchmark_json,
bundle.report,
bundle.artifact_paths.get("rocmport_artifacts.zip"),
)
def _score_html(bundle: MigrationBundle) -> str:
rows = []
for category, label in CATEGORY_LABELS.items():
before = bundle.before_score.categories[category]
after = bundle.after_score.categories[category]
rows.append(
f"""
<tr>
<td>{label}</td>
<td><div class="meter"><span style="width:{before}%"></span></div><strong>{before}</strong></td>
<td><div class="meter after"><span style="width:{after}%"></span></div><strong>{after}</strong></td>
</tr>
"""
)
return f"""
<div class="score-wrap">
<div class="score-card">
<div class="score-label">Before</div>
<div class="score-number">{bundle.before_score.total}</div>
</div>
<div class="score-card">
<div class="score-label">Migration package</div>
<div class="score-number after-text">{bundle.after_score.total}</div>
</div>
<div class="score-card">
<div class="score-label">Findings</div>
<div class="score-number">{len(bundle.findings)}</div>
</div>
</div>
<table class="score-table">
<thead><tr><th>Category</th><th>Before</th><th>Migration package</th></tr></thead>
<tbody>{''.join(rows)}</tbody>
</table>
"""
def _migration_plan_markdown(bundle: MigrationBundle) -> str:
if not bundle.findings:
return "### Migration Plan\n\nNo blockers were found. Run the generated AMD Developer Cloud smoke test before submission."
grouped: dict[str, list[str]] = {}
for finding in bundle.findings:
grouped.setdefault(finding.category, []).append(
f"- `{finding.path}:{finding.line}`: {finding.suggested_fix}"
)
sections = ["### Migration Plan"]
for category, label in CATEGORY_LABELS.items():
if category not in grouped:
continue
sections.append(f"\n#### {label}\n" + "\n".join(grouped[category][:8]))
return "\n".join(sections)
def _benchmark_markdown(benchmark: dict[str, Any]) -> str:
verified = benchmark.get("verified", False)
status = "Verified AMD Developer Cloud run" if verified else "Pending AMD Developer Cloud run"
lines = [
f"### {status}",
"",
f"- Hardware: `{benchmark.get('hardware', 'not captured')}`",
f"- ROCm: `{benchmark.get('rocm_version', 'not captured')}`",
f"- vLLM: `{benchmark.get('vllm_version', 'not captured')}`",
f"- Model: `{benchmark.get('model', 'not captured')}`",
f"- Throughput tokens/sec: `{benchmark.get('throughput_tokens_per_second', 'not captured')}`",
f"- P50 latency ms: `{benchmark.get('p50_latency_ms', 'not captured')}`",
f"- Peak VRAM GB: `{benchmark.get('peak_vram_gb', 'not captured')}`",
"",
benchmark.get("notes", "Run the generated AMD Developer Cloud runbook to replace this record with measured values."),
]
return "\n".join(lines)
CSS = """
.gradio-container { max-width: 1280px !important; }
.mode-badge {
padding: 10px 16px;
border-radius: 8px;
font-size: 14px;
margin-bottom: 16px;
border: 1px solid;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.mode-badge.agentic {
background: rgba(8, 127, 91, 0.1);
border-color: #087f5b;
color: var(--body-text-color);
}
.mode-badge.deterministic {
background: rgba(54, 79, 199, 0.1);
border-color: #748ffc;
color: var(--body-text-color);
}
.score-wrap {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
margin: 12px 0 24px;
}
.score-card {
border: 1px solid var(--border-color-primary);
border-radius: 12px;
padding: 20px;
background: var(--background-fill-secondary);
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.score-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(237, 28, 36, 0.15);
}
.score-label {
color: var(--body-text-color-subdued);
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 8px;
font-weight: 600;
}
.score-number {
color: var(--body-text-color);
font-size: 42px;
line-height: 1;
font-weight: 800;
}
.after-text { color: #ed1c24; } /* AMD Red */
.score-table {
width: 100%;
border-collapse: collapse;
margin-top: 12px;
}
.score-table th {
text-transform: uppercase;
font-size: 12px;
color: var(--body-text-color-subdued);
}
.score-table th,
.score-table td {
border-bottom: 1px solid var(--border-color-primary);
padding: 12px 8px;
text-align: left;
}
.meter {
width: calc(100% - 48px);
height: 10px;
background: var(--background-fill-primary);
border-radius: 5px;
display: inline-block;
vertical-align: middle;
margin-right: 8px;
overflow: hidden;
}
.meter span {
display: block;
height: 100%;
background: var(--body-text-color-subdued);
border-radius: 5px;
transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.meter.after span { background: linear-gradient(90deg, #b80000 0%, #ed1c24 100%); }
#findings-table table {
table-layout: fixed;
}
#findings-table th {
white-space: nowrap;
}
"""
THEME = gr.themes.Soft(
primary_hue="red",
neutral_hue="zinc",
font=[gr.themes.GoogleFont("Inter"), "ui-sans-serif", "system-ui", "sans-serif"]
).set(
button_primary_background_fill="linear-gradient(90deg, #ed1c24 0%, #b80000 100%)",
button_primary_background_fill_hover="linear-gradient(90deg, #ff333a 0%, #cc0000 100%)",
button_primary_text_color="white",
block_title_text_weight="600",
block_shadow="*shadow_drop_lg",
block_border_width="0px",
block_radius="*radius_lg"
)
with gr.Blocks(title="ROCmPort AI ⚡") as demo:
gr.Markdown("# ROCmPort AI ⚡")
gr.Markdown("CUDA-to-ROCm migration scanner for PyTorch, Hugging Face, and vLLM repositories.")
gr.HTML(_pipeline_mode_html())
gr.Markdown(
"> **How it works:** Three CrewAI agents collaborate to migrate the repository. All scoring is deterministic.\n\n"
"```text\n"
" [ 📁 User Repository ]\n"
" │\n"
" ▼\n"
" [ 🖥️ Gradio UI ]\n"
" │\n"
" ▼\n"
" [ ⚙️ Pipeline ]\n"
" │\n"
" ┌─────────────────┴─────────────────┐\n"
" (Agentic Workflow) (Deterministic Fallback)\n"
" │ │\n"
" [ 🕵️ CUDA Auditor ] [ 🔍 Scanner ]\n"
" │ │\n"
" [ 🛠️ ROCm Engineer ] [ 🩹 Patcher ]\n"
" │ │\n"
" [ 📝 Report Writer ] [ 📦 Artifacts ]\n"
" │ │\n"
" (🧠 Qwen3 on MI300X) │\n"
" │ │\n"
" └─────────────────┬─────────────────┘\n"
" ▼\n"
" [ 🎯 Final Migration Package ]\n"
"```"
)
with gr.Row():
source_mode = gr.Radio(
choices=["Built-in sample", "Uploaded ZIP", "Public GitHub URL"],
value="Built-in sample",
label="Repository source",
)
uploaded_zip = gr.File(label="Repository ZIP", type="filepath", file_types=[".zip"])
with gr.Row():
github_url = gr.Textbox(label="GitHub URL", placeholder="https://github.com/owner/repo")
branch = gr.Textbox(label="Branch", value="main")
analyze_button = gr.Button("Analyze repository", variant="primary")
with gr.Tabs():
with gr.Tab("Scan"):
score_html = gr.HTML(label="AMD Readiness Score")
findings_table = gr.Dataframe(
headers=["Severity", "Category", "Path", "Line", "Finding", "Suggested fix"],
label="Findings",
wrap=True,
column_widths=[92, 210, 260, 72, 500, 620],
elem_id="findings-table",
)
migration_plan = gr.Markdown(label="Migration Plan")
with gr.Tab("Patch"):
patch_diff = gr.Code(label="rocm_patch.diff", language=None, lines=20)
dockerfile = gr.Code(label="Dockerfile.rocm", language="dockerfile", lines=18)
runbook = gr.Markdown(label="AMD Developer Cloud Runbook")
with gr.Tab("Benchmark"):
benchmark_md = gr.Markdown(label="Benchmark Summary")
benchmark_json = gr.Code(label="benchmark_result.json", language="json", lines=18)
with gr.Tab("Report"):
report_md = gr.Markdown(label="Migration Report")
artifact_zip = gr.File(label="Download migration artifact bundle")
analyze_button.click(
fn=run_analysis,
inputs=[source_mode, uploaded_zip, github_url, branch],
outputs=[
score_html,
findings_table,
migration_plan,
patch_diff,
dockerfile,
runbook,
benchmark_md,
benchmark_json,
report_md,
artifact_zip,
],
)
if __name__ == "__main__":
server_name = os.getenv("GRADIO_SERVER_NAME") or ("0.0.0.0" if os.getenv("SPACE_ID") else "127.0.0.1")
server_port = int(os.getenv("GRADIO_SERVER_PORT", "7860"))
demo.launch(server_name=server_name, server_port=server_port, theme=THEME, css=CSS, quiet=True)
|