Spaces:
Running on Zero
Running on Zero
File size: 6,414 Bytes
28404e6 | 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 | """
将 PyTorch CUDA profiler 事件按内核/算子名称粗分为若干类,便于估算
memcpy、GEMM/Linear、Attention、Norm 等在 GPU 时间中的占比。
说明:
- 分类基于名称子串启发式,不同 CUDA / Triton / cuBLAS 版本下内核名会有差异;
- 若需更细粒度,请配合 prof.export_chrome_trace() 在 chrome://tracing 或 Perfetto 中查看。
"""
from __future__ import annotations
from collections import defaultdict
from typing import DefaultDict, Dict, Iterable, List, Tuple
# 顺序有意义:先匹配更具体的类别
_BUCKET_ORDER: List[str] = [
"memcpy_sync",
"attention",
"gemm_linear",
"conv",
"norm",
"elementwise_reduce",
"other",
]
def classify_cuda_name(name: str) -> str:
"""根据内核或 aten 算子名称归入粗分类。"""
n = (name or "").lower()
# 设备同步、拷贝、显存设置(含部分 launch 开销)
if any(
s in n
for s in (
"memcpy",
"memset",
"memgetinfo",
"cudaget",
"cudaevent",
"cudaoccupancy",
"cuda stream",
"cudastream",
"cudadevicesynchronize",
"cuda devicesynchronize",
"device synchronize",
"eventrecord",
"eventsynchronize",
)
):
return "memcpy_sync"
# FlashAttention / SDPA / 各类 fused attention
if any(
s in n
for s in (
"flash_attn",
"flash-attn",
"scaled_dot_product",
"sdpa",
"efficient_attention",
"mem_eff_attention",
"fused_attention",
"fmha",
"mha_default",
"multi_head_attention",
"contrib_attn",
"attention_forward",
"attention_backward",
"softmax",
)
):
# 独立 softmax 小核也可能与 attention 同桶;若需拆开可把 softmax 挪到 elementwise
return "attention"
# MatMul / Linear / GEMM(含 cutlass、cublas、triton、fp8)
if any(
s in n
for s in (
"gemm",
"cublas",
"cutlass",
"matmul",
"mat_mul",
"aten::linear",
"aten::mm",
"aten::bmm",
"aten::addmm",
"aten::matmul",
"scaled_mm",
"fp8",
"wmma",
"mma_sync",
"triton",
"dot",
)
):
return "gemm_linear"
if any(s in n for s in ("conv", "cudnn", "depthwise", "convolution")):
return "conv"
if any(
s in n
for s in (
"layernorm",
"layer_norm",
"rms_norm",
"group_norm",
"flash_norm",
"aten::layer_norm",
"aten::group_norm",
"aten::native_layer_norm",
)
):
return "norm"
if any(
s in n
for s in (
"elementwise",
"vectorized",
"unary",
"binary",
"reduce",
"reduction",
"activation",
"silu",
"gelu",
"swiglu",
"relu",
"aten::add",
"aten::mul",
"aten::div",
"aten::pow",
"aten::sqrt",
"aten::rsqrt",
)
):
return "elementwise_reduce"
return "other"
def _event_cuda_time_us(event) -> float:
for attr in (
"cuda_time_total",
"self_cuda_time_total",
"self_cuda_time_total_us",
):
v = getattr(event, attr, None)
if v is not None:
return float(v)
return 0.0
def aggregate_from_profiler(prof) -> Tuple[Dict[str, float], List[Tuple[str, float]]]:
"""
从 torch.profiler.profile 实例聚合:
- 返回 (bucket -> 微秒总和, 按耗时排序的 (name, us) 列表)
使用 prof.events() 以尽量接近 CUDA 内核级名称。
"""
bucket_us: DefaultDict[str, float] = defaultdict(float)
per_name: DefaultDict[str, float] = defaultdict(float)
try:
events = prof.events()
except Exception:
events = []
for e in events:
us = _event_cuda_time_us(e)
if us <= 0:
continue
name = getattr(e, "name", "") or ""
b = classify_cuda_name(name)
bucket_us[b] += us
per_name[name] += us
# 若 events() 为空,回退到 key_averages(多为 aten 级)
if not bucket_us and not per_name:
try:
for avg in prof.key_averages():
us = float(getattr(avg, "cuda_time_total", 0) or getattr(avg, "self_cuda_time_total", 0) or 0)
if us <= 0:
continue
name = getattr(avg, "key", "") or ""
b = classify_cuda_name(name)
bucket_us[b] += us
per_name[name] += us
except Exception:
pass
sorted_names = sorted(per_name.items(), key=lambda x: -x[1])
out = {k: bucket_us.get(k, 0.0) for k in _BUCKET_ORDER}
for k, v in bucket_us.items():
if k not in out:
out[k] = v
return out, sorted_names
def format_bucket_report(
bucket_us: Dict[str, float],
top_names: Iterable[Tuple[str, float]],
top_k: int = 25,
) -> str:
total = sum(bucket_us.values()) or 1e-9
lines: List[str] = []
lines.append("=== CUDA 时间按粗分类(微秒 / 占比)===")
for k in _BUCKET_ORDER:
if k in bucket_us and bucket_us[k] > 0:
us = bucket_us[k]
lines.append(f" {k:22s} {us:12.1f} us ({100.0 * us / total:5.1f}%)")
# 其它未在顺序表中的桶
for k, us in sorted(bucket_us.items(), key=lambda x: -x[1]):
if k in _BUCKET_ORDER:
continue
if us > 0:
lines.append(f" {k:22s} {us:12.1f} us ({100.0 * us / total:5.1f}%)")
lines.append(f" {'TOTAL':22s} {total:12.1f} us")
lines.append("")
lines.append(f"=== 耗时最高的 {top_k} 个事件名(微秒)===")
for i, (name, us) in enumerate(top_names):
if i >= top_k:
break
short = name if len(name) <= 120 else name[:117] + "..."
lines.append(f" {us:10.1f} {short}")
return "\n".join(lines)
|