Spaces:
Running on Zero
Running on Zero
File size: 9,390 Bytes
333ff0e | 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 | """Standing profiling instrumentation for Diffu (Tensor-Core utilization + DCGM telemetry).
Importable from both the standalone ``scripts/profile_tensorcore.py`` and ``train.py``'s
``--profile-steps`` flag so the profiling logic lives in exactly one place. The torch.profiler
method (per the HF "Profiling in PyTorch" posts) classifies each CUDA kernel as Tensor-Core-eligible
(GEMM/conv) or memory-bound, then reports the share of GPU time spent doing Tensor-Core math.
Reading the output:
* kernel names with gemm / tensorop / wmma / s16816 / cutlass -> Tensor Core math.
* vectorized_elementwise_kernel / *Norm* / softmax / Memcpy -> NOT Tensor Core.
* Self CPU >> Self CUDA -> overhead-bound (GPU idle, launch-bound).
``torch`` is imported lazily inside the functions that need it, so importing this module is cheap
and safe (it never touches CUDA on import).
"""
from __future__ import annotations
import re
import shutil
import subprocess
from collections.abc import Callable
from typing import TYPE_CHECKING
from pydantic import BaseModel
if TYPE_CHECKING:
from torch.profiler import profile as TorchProfile
TENSOR_CORE_RE = re.compile(
"gemm|tensorop|wmma|s16816|s161616|cutlass|implicit|dgrad|wgrad|fprop|cublas",
re.I,
)
"""Kernel-name patterns that indicate Tensor-Core-eligible (GEMM/conv) math."""
class KernelRow(BaseModel):
"""One GPU kernel's self-CUDA time and whether it is Tensor-Core-eligible.
Attributes:
name: Profiler kernel key (the demangled kernel name).
self_cuda_ms: Self GPU time in milliseconds (excludes child kernels).
tensor_core: True if the name matches :data:`TENSOR_CORE_RE` (GEMM/conv math).
"""
name: str
self_cuda_ms: float
tensor_core: bool
class ProfileReport(BaseModel):
"""Result of profiling a step: the kernel table plus the Tensor-Core breakdown.
Attributes:
table_text: The full ``key_averages().table()`` text (top kernels by CUDA time).
tensor_core_pct: Share of self-CUDA time in Tensor-Core-eligible kernels (0-100).
total_cuda_ms: Total self-CUDA time across all kernels, in milliseconds.
top_kernels: Kernels sorted by descending self-CUDA time (for the human summary).
"""
table_text: str
tensor_core_pct: float
total_cuda_ms: float
top_kernels: list[KernelRow]
def render(self) -> str:
"""Build the human-readable summary (profiler table + Tensor-Core breakdown).
Returns:
A multi-line string ready to print or write to a file.
"""
lines = [
"==== PROFILER TABLE (top kernels by CUDA time) ====",
self.table_text,
"",
f"==== GEMM/conv (Tensor-Core-eligible) self CUDA time: "
f"{self.tensor_core_pct:.1f}% of {self.total_cuda_ms:.1f} ms ====",
"Top 15 GPU kernels by self CUDA time (TC = Tensor-Core-eligible):",
]
for row in self.top_kernels[:15]:
tag = "TC " if row.tensor_core else " "
lines.append(f" {tag}{row.self_cuda_ms:8.3f} ms {row.name[:90]}")
return "\n".join(lines)
def _self_cuda_us(evt: object) -> float:
"""Self GPU time (microseconds) of a profiler event across torch versions.
torch renamed ``self_cuda_time_total`` to ``self_device_time_total``; this reads whichever is
present so the module works on both old and new torch.
Args:
evt: A ``torch.autograd.profiler_util.FunctionEventAvg`` (or similar) event.
Returns:
Self GPU time in microseconds, or 0.0 if neither attribute is set.
"""
for attr in ("self_device_time_total", "self_cuda_time_total"):
val = getattr(evt, attr, 0)
if val:
return float(val)
return 0.0
def _build_report(prof: TorchProfile) -> ProfileReport:
"""Assemble a :class:`ProfileReport` from a finished profiler context.
Args:
prof: A finished ``torch.profiler.profile`` context with CUDA activity recorded.
Returns:
The populated report (table text, Tensor-Core percentage, total time, sorted kernels).
"""
table_text = prof.key_averages().table(sort_by="cuda_time_total", row_limit=30)
rows = [(e.key, _self_cuda_us(e)) for e in prof.key_averages()]
rows = [(name, t) for name, t in rows if t > 0]
total_us = sum(t for _, t in rows)
kernels = [
KernelRow(
name=name,
self_cuda_ms=t / 1000.0,
tensor_core=bool(TENSOR_CORE_RE.search(name)),
)
for name, t in sorted(rows, key=lambda x: -x[1])
]
pct = (sum(t for name, t in rows if TENSOR_CORE_RE.search(name)) / total_us * 100.0) if total_us else 0.0
return ProfileReport(
table_text=table_text,
tensor_core_pct=pct,
total_cuda_ms=total_us / 1000.0,
top_kernels=kernels,
)
def profile_callable(
step: Callable[[], None],
*,
warmup: int = 2,
active: int = 3,
trace_path: str | None = None,
with_stack: bool = False,
) -> ProfileReport:
"""Profile a step function with torch.profiler (CPU + CUDA) and build a report.
Runs ``warmup`` un-recorded iterations (to let cuDNN/cuBLAS pick algorithms and warm caches)
then ``active`` recorded iterations under a ``schedule(wait=0, warmup, active, repeat=1)``.
Synchronizes CUDA before building the report so all kernel times are flushed.
Args:
step: A zero-arg callable that runs exactly one forward+backward step (no optimizer state
assumptions). It is called ``warmup + active`` times.
warmup: Number of un-recorded warmup iterations.
active: Number of recorded iterations to profile.
trace_path: If set, export the Kineto chrome trace here (for HTA / Perfetto).
with_stack: Record Python source stacks so ops can be attributed to the line that issued them.
Writes a stack-grouped CPU-time table next to ``trace_path`` (``.stacks.txt``). Adds
overhead, so it is off by default and only enabled for a deliberate attribution profile.
Returns:
A :class:`ProfileReport` summarizing kernel times and Tensor-Core utilization.
"""
import torch
import torch.profiler as prof_mod
sched = prof_mod.schedule(wait=0, warmup=warmup, active=active, repeat=1)
with prof_mod.profile(
activities=[prof_mod.ProfilerActivity.CPU, prof_mod.ProfilerActivity.CUDA],
schedule=sched,
with_stack=with_stack,
) as prof:
for _ in range(warmup + active):
step()
prof.step()
if torch.cuda.is_available():
torch.cuda.synchronize()
if trace_path is not None:
prof.export_chrome_trace(trace_path) # Kineto chrome trace for HTA / the profile-model skill
if with_stack: # attribute self-CPU time (the cast/launch storm) to the Python line that issued it
table = prof.key_averages(group_by_stack_n=12).table(
sort_by="self_cpu_time_total", row_limit=40
)
with open(trace_path + ".stacks.txt", "w") as fh:
fh.write(table)
return _build_report(prof)
def read_dcgm(fields: tuple[int, ...] = (1002, 1004, 1005)) -> dict[str, float] | None:
"""Read DCGM profiling fields for GPU 0 via ``dcgmi dmon`` (no GPU memory allocated).
Shells out to ``dcgmi dmon -c 1 -e <fields>`` and parses the SM-activity / Tensor-Core-activity /
DRAM-activity columns. The default fields are:
* 1002 — SMACT (SM activity, fraction of time SMs were busy).
* 1004 — TENSO (Tensor-Core pipe active, fraction of cycles).
* 1005 — DRAMA (DRAM active, fraction of cycles — memory-bandwidth pressure).
This reads telemetry counters only; it does NOT launch a CUDA context or allocate device memory,
so it is safe to call while another job owns the GPUs.
Args:
fields: DCGM field ids to request (defaults to SMACT/TENSO/DRAMA).
Returns:
A dict mapping ``"SMACT"`` / ``"TENSO"`` / ``"DRAMA"`` (only the parseable ones) to floats,
or ``None`` if the ``dcgmi`` binary is not installed.
"""
if shutil.which("dcgmi") is None:
return None
field_arg = ",".join(str(f) for f in fields)
try:
out = subprocess.run(
["dcgmi", "dmon", "-c", "1", "-e", field_arg],
capture_output=True,
text=True,
timeout=15,
check=False,
)
except (OSError, subprocess.SubprocessError):
return None
header: list[str] = []
result: dict[str, float] = {}
for line in out.stdout.splitlines():
tokens = line.split()
if not tokens:
continue
if tokens[0] in {"#Entity", "Entity", "ID"} or line.lstrip().startswith("#"):
header = [t for t in tokens if t not in {"#Entity", "Entity", "ID", "GPU-I", "GPU"}]
continue
if tokens[0] in {"GPU", "GPU-I"} and len(tokens) >= 2:
values = tokens[2:] # drop "GPU" and the device index
for name, raw in zip(header, values, strict=False):
try:
result[name] = float(raw)
except ValueError:
continue
if result: # first data row (GPU 0) is enough
break
return result or None
|