Spaces:
Sleeping
Sleeping
File size: 19,711 Bytes
9ca80ec | 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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 | """
GPU Runtime Predictor - Gradio Space
=====================================
Paste your PyTorch/CUDA code, select GPUs from the catalog,
and get predicted runtimes for each GPU.
"""
import gradio as gr
import numpy as np
import pandas as pd
import torch
import torch.nn as nn
import json
import re
import pickle
import os
from huggingface_hub import hf_hub_download
# ============================================================================
# LOAD MODEL ARTIFACTS
# ============================================================================
MODEL_REPO = "RajBhope/gpu-runtime-predictor"
def download_artifacts():
"""Download all model artifacts from Hub."""
files = ['model_gbr.pkl', 'model_rf.pkl', 'model_nn.pt', 'scaler_X.pkl',
'scaler_params.json', 'gpu_catalog.json', 'nn_config.json', 'metrics.json']
paths = {}
for f in files:
paths[f] = hf_hub_download(repo_id=MODEL_REPO, filename=f)
return paths
print("Downloading model artifacts...")
artifact_paths = download_artifacts()
# Load models
with open(artifact_paths['model_gbr.pkl'], 'rb') as f:
model_gbr = pickle.load(f)
with open(artifact_paths['model_rf.pkl'], 'rb') as f:
model_rf = pickle.load(f)
with open(artifact_paths['scaler_X.pkl'], 'rb') as f:
scaler_X = pickle.load(f)
with open(artifact_paths['scaler_params.json'], 'r') as f:
scaler_params = json.load(f)
with open(artifact_paths['gpu_catalog.json'], 'r') as f:
GPU_CATALOG = json.load(f)
with open(artifact_paths['nn_config.json'], 'r') as f:
nn_config = json.load(f)
with open(artifact_paths['metrics.json'], 'r') as f:
metrics = json.load(f)
# Load NN model
class RuntimeMLP(nn.Module):
def __init__(self, input_dim, hidden_dims=[512, 256, 128], dropout=0.15):
super().__init__()
layers = []
prev_dim = input_dim
for h_dim in hidden_dims:
layers.extend([
nn.Linear(prev_dim, h_dim),
nn.LayerNorm(h_dim),
nn.GELU(),
nn.Dropout(dropout),
])
prev_dim = h_dim
layers.append(nn.Linear(prev_dim, 1))
self.net = nn.Sequential(*layers)
def forward(self, x):
return self.net(x).squeeze(-1)
model_nn = RuntimeMLP(**nn_config)
model_nn.load_state_dict(torch.load(artifact_paths['model_nn.pt'], map_location='cpu', weights_only=True))
model_nn.eval()
GPU_FEATURE_COLS = [
'cuda_cores', 'tensor_cores', 'memory_gb', 'memory_bandwidth_gbps',
'base_clock_mhz', 'boost_clock_mhz', 'sm_count', 'fp32_tflops',
'fp16_tflops', 'tdp_watts', 'compute_capability', 'l2_cache_mb',
]
print("Models loaded!")
# ============================================================================
# CODE FEATURE EXTRACTION
# ============================================================================
def extract_code_features(code_text):
"""Extract features from source code text."""
features = {}
lines = code_text.strip().split('\n')
features['num_lines'] = len(lines)
features['num_chars'] = len(code_text)
features['avg_line_length'] = np.mean([len(l) for l in lines]) if lines else 0
tokens = re.findall(r'[a-zA-Z_]\w*|[0-9]+\.?[0-9]*', code_text)
features['num_tokens'] = len(tokens)
numbers = re.findall(r'\b(\d+\.?\d*)\b', code_text)
nums = [float(n) for n in numbers if n]
features['num_numeric_literals'] = len(nums)
features['max_numeric'] = max(nums) if nums else 0
features['min_numeric'] = min(nums) if nums else 0
features['mean_numeric'] = np.mean(nums) if nums else 0
features['sum_numeric_log'] = np.log1p(sum(nums)) if nums else 0
large_nums = [n for n in nums if n >= 64]
features['num_large_dims'] = len(large_nums)
features['product_large_dims_log'] = np.log1p(np.prod(large_nums[:5])) if large_nums else 0
pytorch_ops = {
'matmul': r'torch\.matmul|torch\.mm|@',
'conv': r'Conv[12]d|conv[12]d',
'attention': r'attention|Attention|MultiheadAttention|softmax.*matmul',
'linear': r'nn\.Linear|linear',
'batchnorm': r'BatchNorm|batchnorm',
'layernorm': r'LayerNorm|layernorm',
'softmax': r'softmax|Softmax',
'relu': r'relu|ReLU',
'gelu': r'gelu|GELU',
'sigmoid': r'sigmoid|Sigmoid',
'tanh': r'tanh|Tanh',
'dropout': r'Dropout|dropout',
'embedding': r'Embedding|embedding',
'pooling': r'Pool|pool|MaxPool|AvgPool',
'fft': r'fft|FFT',
'sort': r'torch\.sort',
'backward': r'backward|grad',
'loss': r'Loss|loss|CrossEntropy',
'cat': r'torch\.cat|concatenate',
'reshape': r'reshape|view|contiguous',
'transpose': r'transpose|\.t\(\)|permute',
'reduce': r'torch\.sum|torch\.mean|torch\.max|torch\.min|reduce',
}
for op_name, pattern in pytorch_ops.items():
features[f'has_{op_name}'] = 1 if re.search(pattern, code_text) else 0
features['uses_float16'] = 1 if re.search(r'float16|half|fp16', code_text) else 0
features['uses_float32'] = 1 if re.search(r'float32|float(?!16)', code_text) else 0
features['uses_cuda'] = 1 if re.search(r"'cuda'|\.cuda\(\)|device='cuda'", code_text) else 0
features['num_for_loops'] = len(re.findall(r'\bfor\b', code_text))
features['num_function_defs'] = len(re.findall(r'\bdef\b', code_text))
features['num_class_defs'] = len(re.findall(r'\bclass\b', code_text))
features['num_imports'] = len(re.findall(r'\bimport\b', code_text))
features['num_torch_calls'] = len(re.findall(r'torch\.', code_text))
features['num_nn_calls'] = len(re.findall(r'nn\.', code_text))
dim_patterns = [r'\((\d+),\s*(\d+)\)', r'\((\d+),\s*(\d+),\s*(\d+)\)', r'\((\d+),\s*(\d+),\s*(\d+),\s*(\d+)\)']
all_dims = []
for pattern in dim_patterns:
for match in re.finditer(pattern, code_text):
dims = [int(g) for g in match.groups()]
all_dims.extend(dims)
features['num_dim_specs'] = len(all_dims)
features['max_dim'] = max(all_dims) if all_dims else 0
features['total_elements_log'] = 0
if all_dims:
tuples = re.findall(r'\([\d,\s]+\)', code_text)
for t in tuples:
dims = [int(d) for d in re.findall(r'\d+', t)]
if len(dims) >= 2:
prod = 1
for d in dims:
prod *= d
features['total_elements_log'] = max(features['total_elements_log'], np.log1p(prod))
features['compute_bound_score'] = features.get('has_matmul', 0) + features.get('has_conv', 0) + features.get('has_linear', 0)
features['memory_bound_score'] = features.get('has_embedding', 0) + features.get('has_cat', 0) + features.get('has_transpose', 0) + features.get('has_relu', 0)
features['mixed_score'] = features.get('has_attention', 0) + features.get('has_batchnorm', 0) + features.get('has_layernorm', 0)
return features
def estimate_flops_and_memory(code_text):
"""Heuristic estimate of FLOPs and memory bytes from code."""
numbers = re.findall(r'\b(\d+)\b', code_text)
nums = [int(n) for n in numbers if int(n) > 0]
# Detect dtype
dtype_bytes = 2 if re.search(r'float16|half', code_text) else 4
# Try to identify tensor dimensions for FLOPs estimation
flops = 0
memory = 0
# Matrix multiplication: look for matmul patterns
if re.search(r'matmul|torch\.mm|@', code_text):
dims = [n for n in nums if n >= 8]
if len(dims) >= 3:
M, K, N = dims[0], dims[1], dims[2] if len(dims) > 2 else dims[1]
flops = 2 * M * N * K
memory = dtype_bytes * (M*K + K*N + M*N)
# Conv2D
elif re.search(r'Conv[12]d', code_text):
dims = [n for n in nums if n >= 1]
if len(dims) >= 5:
batch, in_ch, out_ch = dims[0], dims[1], dims[2]
H = W = dims[3] if len(dims) > 3 else 56
ks = dims[4] if len(dims) > 4 else 3
flops = 2 * batch * out_ch * H * W * in_ch * ks * ks
memory = dtype_bytes * (batch*in_ch*H*W + out_ch*in_ch*ks*ks + batch*out_ch*H*W)
# Attention
elif re.search(r'attention|Attention', code_text):
dims = [n for n in nums if n >= 4]
if len(dims) >= 3:
batch, seq_len, hidden = dims[0], dims[1], dims[2]
flops = 4 * batch * seq_len * seq_len * hidden
memory = dtype_bytes * batch * 3 * seq_len * hidden * 2
# Linear
elif re.search(r'nn\.Linear', code_text):
dims = [n for n in nums if n >= 8]
if len(dims) >= 2:
in_f, out_f = dims[0], dims[1]
batch = dims[2] if len(dims) > 2 else 1
flops = 2 * batch * in_f * out_f
memory = dtype_bytes * (batch * in_f + in_f * out_f + batch * out_f)
# Generic fallback: estimate from tensor sizes
if flops == 0:
large_nums = sorted([n for n in nums if n >= 32], reverse=True)[:4]
if large_nums:
total_elements = 1
for n in large_nums:
total_elements *= n
flops = total_elements * 2
memory = dtype_bytes * total_elements * 2
return flops, memory, dtype_bytes
def predict_runtime(code_text, selected_gpus, model_choice="Ensemble"):
"""Predict runtime for code on selected GPUs."""
if not code_text.strip():
return "β οΈ Please paste some code.", None
if not selected_gpus:
return "β οΈ Please select at least one GPU.", None
# Extract code features
code_feats = extract_code_features(code_text)
code_feat_names = sorted(code_feats.keys())
code_feat_vec = [code_feats[k] for k in code_feat_names]
# Estimate FLOPs and memory
flops, memory_bytes, dtype_bytes = estimate_flops_and_memory(code_text)
arithmetic_intensity = flops / max(memory_bytes, 1)
results = []
for gpu_key in selected_gpus:
gpu_spec = GPU_CATALOG.get(gpu_key)
if gpu_spec is None:
continue
# GPU features
gpu_feat_vec = [gpu_spec[col] for col in GPU_FEATURE_COLS]
# Extra features
extra_feats = [np.log1p(flops), np.log1p(memory_bytes), arithmetic_intensity, dtype_bytes]
# Combine
all_feats = np.array(code_feat_vec + gpu_feat_vec + extra_feats, dtype=np.float32).reshape(1, -1)
# Normalize
all_feats_scaled = scaler_X.transform(all_feats)
all_feats_scaled = np.nan_to_num(all_feats_scaled, nan=0.0, posinf=0.0, neginf=0.0)
# Predict
if model_choice == "GBR":
pred_log = model_gbr.predict(all_feats_scaled)[0]
elif model_choice == "Random Forest":
pred_log = model_rf.predict(all_feats_scaled)[0]
elif model_choice == "Neural Net":
with torch.no_grad():
pred_log = model_nn(torch.tensor(all_feats_scaled, dtype=torch.float32)).item()
else: # Ensemble
pred_gbr = model_gbr.predict(all_feats_scaled)[0]
pred_rf = model_rf.predict(all_feats_scaled)[0]
with torch.no_grad():
pred_nn = model_nn(torch.tensor(all_feats_scaled, dtype=torch.float32)).item()
pred_log = 0.5 * pred_gbr + 0.3 * pred_rf + 0.2 * pred_nn
runtime_ms = np.expm1(pred_log)
runtime_ms = max(runtime_ms, 0.001)
results.append({
'GPU': gpu_spec['name'],
'Runtime (ms)': round(runtime_ms, 4),
'FP32 TFLOPS': gpu_spec['fp32_tflops'],
'Mem BW (GB/s)': gpu_spec['memory_bandwidth_gbps'],
'VRAM (GB)': gpu_spec['memory_gb'],
'Relative Speed': None,
})
if not results:
return "β οΈ No valid GPUs selected.", None
# Sort by runtime
results.sort(key=lambda x: x['Runtime (ms)'])
# Calculate relative speed (fastest = 1.0x)
fastest = results[0]['Runtime (ms)']
for r in results:
r['Relative Speed'] = f"{r['Runtime (ms)'] / fastest:.2f}x"
# Format output
df_results = pd.DataFrame(results)
# Summary text
summary = f"### π Fastest: **{results[0]['GPU']}** ({results[0]['Runtime (ms)']:.4f} ms)\n"
summary += f"### π’ Slowest: **{results[-1]['GPU']}** ({results[-1]['Runtime (ms)']:.4f} ms)\n"
summary += f"### β‘ Speedup: **{results[-1]['Runtime (ms)']/results[0]['Runtime (ms)']:.1f}x** (fastest vs slowest)\n\n"
summary += f"**Estimated FLOPs:** {flops:,.0f}\n\n"
summary += f"**Estimated Memory:** {memory_bytes:,.0f} bytes\n\n"
summary += f"**Arithmetic Intensity:** {arithmetic_intensity:.2f} FLOP/byte\n\n"
if arithmetic_intensity > 10:
summary += "π₯ **Compute-bound** workload β faster GPUs with more TFLOPS will help most"
else:
summary += "πΎ **Memory-bound** workload β GPUs with higher memory bandwidth will help most"
return summary, df_results
# ============================================================================
# EXAMPLE CODES
# ============================================================================
EXAMPLE_CODES = {
"Matrix Multiplication (2048x2048)": """import torch
def matmul_kernel(A, B):
# Matrix multiplication: (2048, 2048) x (2048, 2048) -> (2048, 2048)
C = torch.matmul(A, B)
return C
A = torch.randn(2048, 2048, dtype=torch.float32, device='cuda')
B = torch.randn(2048, 2048, dtype=torch.float32, device='cuda')
C = matmul_kernel(A, B)
torch.cuda.synchronize()""",
"Self-Attention (batch=8, seq=1024)": """import torch
import torch.nn.functional as F
def self_attention(Q, K, V, num_heads=16):
B, S, D = Q.shape
head_dim = D // num_heads
Q = Q.view(B, S, num_heads, head_dim).transpose(1, 2)
K = K.view(B, S, num_heads, head_dim).transpose(1, 2)
V = V.view(B, S, num_heads, head_dim).transpose(1, 2)
attn = torch.matmul(Q, K.transpose(-2, -1)) / (head_dim ** 0.5)
attn = F.softmax(attn, dim=-1)
out = torch.matmul(attn, V)
return out.transpose(1, 2).contiguous().view(B, S, D)
hidden_dim = 1024
Q = torch.randn(8, 1024, hidden_dim, dtype=torch.float32, device='cuda')
K = torch.randn(8, 1024, hidden_dim, dtype=torch.float32, device='cuda')
V = torch.randn(8, 1024, hidden_dim, dtype=torch.float32, device='cuda')
out = self_attention(Q, K, V)
torch.cuda.synchronize()""",
"Conv2D ResNet Block": """import torch
import torch.nn as nn
def conv2d_forward(x, conv):
# Conv2D: batch=16, in_channels=256, out_channels=512
# Input: (16, 256, 56, 56), Kernel: 3x3
return conv(x)
conv = nn.Conv2d(256, 512, kernel_size=3, padding=1).to('cuda')
x = torch.randn(16, 256, 56, 56, dtype=torch.float32, device='cuda')
out = conv2d_forward(x, conv)
torch.cuda.synchronize()""",
"Transformer Block": """import torch
import torch.nn as nn
class TransformerBlock(nn.Module):
def __init__(self):
super().__init__()
self.attn = nn.MultiheadAttention(768, 12, batch_first=True)
self.ff = nn.Sequential(
nn.Linear(768, 3072),
nn.GELU(),
nn.Linear(3072, 768)
)
self.ln1 = nn.LayerNorm(768)
self.ln2 = nn.LayerNorm(768)
def forward(self, x):
attn_out, _ = self.attn(self.ln1(x), self.ln1(x), self.ln1(x))
x = x + attn_out
x = x + self.ff(self.ln2(x))
return x
block = TransformerBlock().to('cuda')
x = torch.randn(8, 512, 768, dtype=torch.float32, device='cuda')
out = block(x)
torch.cuda.synchronize()""",
"Elementwise GELU (100M elements)": """import torch
def elementwise_op(x):
# Elementwise gelu on tensor of size 100000000
return torch.nn.functional.gelu(x)
x = torch.randn(100000000, dtype=torch.float32, device='cuda')
out = elementwise_op(x)
torch.cuda.synchronize()""",
"LLM Linear Layer (fp16, vocab=50257)": """import torch
import torch.nn as nn
def linear_forward(x, linear):
# Linear layer: (32, 4096) -> (32, 50257)
return linear(x)
linear = nn.Linear(4096, 50257).to('cuda')
x = torch.randn(32, 4096, dtype=torch.float16, device='cuda')
out = linear_forward(x, linear)
torch.cuda.synchronize()""",
}
# ============================================================================
# GRADIO UI
# ============================================================================
gpu_choices = list(GPU_CATALOG.keys())
gpu_display_names = {k: v['name'] for k, v in GPU_CATALOG.items()}
def load_example(example_name):
return EXAMPLE_CODES.get(example_name, "")
with gr.Blocks(
title="GPU Runtime Predictor",
theme=gr.themes.Soft(),
) as demo:
gr.Markdown("""
# β‘ GPU Runtime Predictor
Predict how fast your PyTorch/CUDA code will run on different GPU hardware.
Paste your code, select GPUs from the catalog, and get instant runtime estimates.
**Model**: Ensemble of GBR + Random Forest + Neural Network | **RΒ² = 0.993** | **12 GPUs** | **15 workload types**
---
""")
with gr.Row():
with gr.Column(scale=3):
example_dropdown = gr.Dropdown(
choices=list(EXAMPLE_CODES.keys()),
label="π Load Example Code",
value=None,
interactive=True,
)
code_input = gr.Code(
label="Your PyTorch/CUDA Code",
language="python",
lines=20,
value=EXAMPLE_CODES["Matrix Multiplication (2048x2048)"],
)
with gr.Column(scale=2):
gpu_selector = gr.CheckboxGroup(
choices=[(gpu_display_names[k], k) for k in gpu_choices],
value=list(GPU_CATALOG.keys()),
label="π₯οΈ Select GPUs to Compare",
)
model_selector = gr.Radio(
choices=["Ensemble", "GBR", "Random Forest", "Neural Net"],
value="Ensemble",
label="π€ Prediction Model",
)
predict_btn = gr.Button("β‘ Predict Runtime", variant="primary", size="lg")
gr.Markdown("---")
with gr.Row():
with gr.Column():
summary_output = gr.Markdown(label="Summary")
with gr.Row():
results_table = gr.DataFrame(
label="π Runtime Predictions (sorted fastest β slowest)",
interactive=False,
)
gr.Markdown("""
---
### βΉοΈ How It Works
1. **Code Analysis**: Extracts 48 features from your code (tensor dimensions, operation types, complexity indicators)
2. **GPU Encoding**: Uses 12 hardware specs for each GPU (CUDA cores, memory bandwidth, TFLOPS, etc.)
3. **ML Prediction**: Ensemble predicts `log(runtime_ms)` β converted back to milliseconds
**Powered by**: [Training Dataset](https://huggingface.co/datasets/RajBhope/gpu-runtime-prediction-dataset) | [Model](https://huggingface.co/RajBhope/gpu-runtime-predictor)
*Runtimes are estimates based on a roofline performance model. Actual runtimes may vary based on driver version, CUDA toolkit, memory state, and other factors.*
""")
# Event handlers
example_dropdown.change(
fn=load_example,
inputs=[example_dropdown],
outputs=[code_input],
)
predict_btn.click(
fn=predict_runtime,
inputs=[code_input, gpu_selector, model_selector],
outputs=[summary_output, results_table],
)
demo.launch()
|