forked from Robbyant/lingbot-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgct_profile.py
More file actions
381 lines (325 loc) · 16.6 KB
/
Copy pathgct_profile.py
File metadata and controls
381 lines (325 loc) · 16.6 KB
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
"""
Profile GCTStream streaming inference FPS.
Measures only the top-level model.forward() GPU time — no per-module hooks,
no inner breakdown. One CUDA event pair per frame, a single sync at the end.
Usage:
python gct_profile.py --backend both --dtype bf16 --num_frames 500
"""
import argparse
import contextlib
import json
import numpy as np
import torch
from lingbot_map.models.gct_stream import GCTStream
# ============================================================================
# Model loading
# ============================================================================
def load_model(backend, img_size, sliding_window, max_frame_num, camera_num_iterations, device='cuda'):
"""Build GCTStream with random weights (no checkpoint). Eval mode on device."""
model = GCTStream(
img_size=img_size,
patch_size=14,
enable_3d_rope=True,
max_frame_num=max_frame_num,
kv_cache_sliding_window=sliding_window,
kv_cache_scale_frames=8,
use_sdpa=(backend == 'sdpa'),
camera_num_iterations=camera_num_iterations,
)
return model.eval().to(device)
def compile_model(model):
"""
Apply torch.compile(mode="reduce-overhead") to compute-heavy, fixed-shape
modules and drop point_head. Matches the optimizations from the original
--compile path; omits per-block experiments that did not pay off.
"""
agg = model.aggregator
for i, b in enumerate(agg.frame_blocks):
agg.frame_blocks[i] = torch.compile(b, mode="reduce-overhead")
for i, b in enumerate(agg.patch_embed.blocks):
agg.patch_embed.blocks[i] = torch.compile(b, mode="reduce-overhead")
for b in agg.global_blocks:
if hasattr(b, 'attn_pre'):
b.attn_pre = torch.compile(b.attn_pre, mode="reduce-overhead")
if hasattr(b, 'ffn_residual'):
b.ffn_residual = torch.compile(b.ffn_residual, mode="reduce-overhead")
b.attn.proj = torch.compile(b.attn.proj, mode="reduce-overhead")
model.point_head = None # saves ~5.9 ms/frame; not needed for FPS measurement
# ============================================================================
# Profiling — reuse one CUDA event pair, sync after every frame
# ============================================================================
def profile_streaming(model, images, num_frames, dtype, keyframe_interval=1):
"""
Run streaming inference. Return (per_frame_ms, scale_frames, phase1_ms).
Reuses a single CUDA event pair across frames and syncs after every frame
(matches the original non-lightweight path — necessary to keep GPU clock /
memory allocator behavior comparable run-to-run).
With ``keyframe_interval > 1``, every N-th phase-2 frame is a keyframe whose
KV is appended to cache; non-keyframes go through the
``_set_skip_append(True)`` defer+append+attend+rollback path (per
``docs/keyframe_interval_bugfix.md``). All frames still time the same
forward op, so per-frame ms reflects the actual cost difference.
"""
device = next(model.parameters()).device
if images.ndim == 4:
images = images.unsqueeze(0)
images = images.to(dtype)
S = min(images.shape[1], num_frames)
scale_frames = min(8, S)
kf_int = max(int(keyframe_interval), 1)
autocast_ctx = (
contextlib.nullcontext() if dtype == torch.float32
else torch.amp.autocast('cuda', dtype=dtype)
)
start_ev = torch.cuda.Event(enable_timing=True)
end_ev = torch.cuda.Event(enable_timing=True)
model.clean_kv_cache()
# ── Phase 1: scale frames, bidirectional attention among themselves ────
# Move data onto GPU BEFORE the start event so the host→device copy is
# excluded from the measured forward time. `.to(device)` is a no-op if
# `images` already lives on GPU.
scale_batch = images[:, :scale_frames].to(device)
start_ev.record()
torch.compiler.cudagraph_mark_step_begin()
with torch.no_grad(), autocast_ctx:
model.forward(
scale_batch,
num_frame_for_scale=scale_frames,
num_frame_per_block=scale_frames,
causal_inference=True,
)
end_ev.record()
torch.cuda.synchronize()
phase1_ms = start_ev.elapsed_time(end_ev)
print(f" Phase 1: {phase1_ms:.1f} ms for {scale_frames} scale frames")
# ── Phase 2: causal streaming, one frame at a time ─────────────────────
per_frame_ms = []
for i in range(scale_frames, S):
is_keyframe = (kf_int <= 1) or ((i - scale_frames) % kf_int == 0)
if not is_keyframe:
model._set_skip_append(True)
frame = images[:, i:i + 1].to(device) # outside the timed region
start_ev.record()
torch.compiler.cudagraph_mark_step_begin()
with torch.no_grad(), autocast_ctx:
model.forward(
frame,
num_frame_for_scale=scale_frames,
num_frame_per_block=1,
causal_inference=True,
)
end_ev.record()
torch.cuda.synchronize()
if not is_keyframe:
model._set_skip_append(False)
per_frame_ms.append(start_ev.elapsed_time(end_ev))
return per_frame_ms, scale_frames, phase1_ms
# ============================================================================
# Reporting
# ============================================================================
def summarize(per_frame_ms, scale_frames, phase1_ms, label):
"""Print global FPS (total time / total frames) + 10/50/90% windows + trace."""
n = len(per_frame_ms)
if n == 0:
print(f" [{label}]: no frames")
return {}
def avg_ms(pos, window=30):
lo = max(0, pos - window)
hi = min(n, pos + window + 1)
return float(np.mean(per_frame_ms[lo:hi]))
def fps(ms):
return 1000.0 / ms if ms > 0 else 0.0
# Global throughput: total wall time (Phase 1 + Phase 2) / total frames.
total_frames = scale_frames + n
total_ms = phase1_ms + float(np.sum(per_frame_ms))
global_ms_per_frame = total_ms / total_frames
global_fps = fps(global_ms_per_frame)
# Per-region windowed averages (±30 frames) for how FPS drifts over time.
p_lo = max(10, n // 10)
p_mid = n // 2
p_hi = n - max(1, n // 10)
ms_lo, ms_mid, ms_hi = avg_ms(p_lo), avg_ms(p_mid), avg_ms(p_hi)
print(f"\n [{label}] ({total_frames} total frames: {scale_frames} scale + {n} streaming)")
print(f" ── Global FPS ─────────────────────────────────────")
print(f" total time: {total_ms / 1000:.2f} s "
f"({phase1_ms:.1f} ms phase1 + {total_ms - phase1_ms:.1f} ms phase2)")
print(f" per frame : {global_ms_per_frame:6.2f} ms → {global_fps:6.2f} FPS")
print(f" ── Windowed FPS (±30 streaming frames) ────────────")
print(f" frame {scale_frames + p_lo:>5d} (10%): {ms_lo:6.2f} ms → {fps(ms_lo):6.2f} FPS")
print(f" frame {scale_frames + p_mid:>5d} (50%): {ms_mid:6.2f} ms → {fps(ms_mid):6.2f} FPS")
print(f" frame {scale_frames + p_hi:>5d} (90%): {ms_hi:6.2f} ms → {fps(ms_hi):6.2f} FPS")
# Trace at global frame indices that are multiples of 100, matching the
# original script. This naturally skips the cold first streaming frame
# (global index = scale_frames), whose ms is dominated by one-time CUDA
# graph (re)capture after `clean_kv_cache()` in profile_streaming.
print(f" ── FPS trace (every 100 global frames) ────────────")
first_trace = (100 - scale_frames) % 100 or 100
for i in range(first_trace, n, 100):
ms_i = avg_ms(i, window=3)
print(f" frame {scale_frames + i:>5d}: {fps(ms_i):6.2f} FPS ({ms_i:.2f} ms)")
return {
'global_fps': global_fps, 'global_ms': global_ms_per_frame,
'total_ms': total_ms, 'total_frames': total_frames,
'phase1_ms': phase1_ms,
'ms_lo': ms_lo, 'ms_mid': ms_mid, 'ms_hi': ms_hi,
'fps_lo': fps(ms_lo), 'fps_mid': fps(ms_mid), 'fps_hi': fps(ms_hi),
}
def print_comparison(results):
"""Side-by-side FPS / ms table across all variants."""
if len(results) < 2:
return
keys = sorted(results.keys())
col = 14
width = 18 + col * len(keys)
print(f"\n{'=' * width}\n Comparison\n{'=' * width}")
print(f" {'Metric':<18s}" + "".join(f"{k:>{col}s}" for k in keys))
print(" " + "-" * (width - 2))
rows = [
('Global FPS', 'global_fps'), ('Global ms/frame', 'global_ms'),
('FPS @10%', 'fps_lo'), ('FPS @50%', 'fps_mid'), ('FPS @90%', 'fps_hi'),
('ms @10%', 'ms_lo'), ('ms @50%', 'ms_mid'), ('ms @90%', 'ms_hi'),
]
for label, field in rows:
vals = "".join(f"{results[k].get(field, 0):>{col}.2f}" for k in keys)
print(f" {label:<18s}{vals}")
# ============================================================================
# Main
# ============================================================================
def main():
parser = argparse.ArgumentParser(
description="GCTStream end-to-end FPS profiling (no module breakdown)."
)
parser.add_argument('--img_size', type=int, default=518)
parser.add_argument('--img_h', type=int, default=378, help='Must be divisible by 14')
parser.add_argument('--img_w', type=int, default=504, help='Must be divisible by 14')
parser.add_argument('--num_frames', type=int, default=500)
parser.add_argument('--sliding_window', type=int, default=64)
parser.add_argument('--camera_num_iterations', type=int, default=4,
help='Camera head iterative-refinement steps. Default 4; '
'set 1 for faster inference (skips 3 refinement passes '
'at a small accuracy cost).')
parser.add_argument('--backend', choices=['sdpa', 'flashinfer', 'both'], default='flashinfer')
parser.add_argument('--dtype', choices=['bf16', 'fp32', 'both'], default='bf16')
parser.add_argument('--compile', action='store_true', default=True,
help='torch.compile hot modules (reduce-overhead) and drop point_head. '
'Typically ~5 FPS faster at 518×378.')
parser.add_argument('--keyframe_interval', type=int, default=1,
help='Every N-th phase-2 frame is a keyframe whose KV stays in cache; '
'non-keyframes go through skip_append (defer+append+attend+rollback). '
'1 = every frame is a keyframe (default). With --compile, the warmup '
'alternates keyframe/non-keyframe so both code paths capture CUDA graphs.')
parser.add_argument('--fa3', action='store_true',
help='Use FlashInfer FA3 (SM90) kernel instead of FA2 (requires power-of-2 page_size)')
args = parser.parse_args()
if args.keyframe_interval < 1:
parser.error(f"--keyframe_interval must be >= 1 (got {args.keyframe_interval})")
dtype_map = {'bf16': torch.bfloat16, 'fp32': torch.float32}
backends = ['sdpa', 'flashinfer'] if args.backend == 'both' else [args.backend]
dtypes = ['bf16', 'fp32'] if args.dtype == 'both' else [args.dtype]
device = 'cuda'
print("=" * 72)
print(f"GCTStream FPS profiling | {args.img_h}×{args.img_w} | "
f"{args.num_frames} frames | sw={args.sliding_window} | "
f"kf_int={args.keyframe_interval}")
print(f" backends={backends} dtypes={dtypes}")
print("=" * 72)
# Synthetic images — keep on CPU for long runs to avoid OOM.
img_device = device if args.num_frames <= 500 else 'cpu'
print(f"Generating {args.num_frames} synthetic images on {img_device.upper()}...")
torch.manual_seed(42)
images_master = torch.randn(
1, args.num_frames, 3, args.img_h, args.img_w,
device=img_device, dtype=torch.float32,
)
results = {}
for backend in backends:
for dtype_str in dtypes:
dtype = dtype_map[dtype_str]
key = f'{backend}_{dtype_str}'
print(f"\n{'=' * 72}\n Run: {key}\n{'=' * 72}")
model = load_model(
backend,
img_size=args.img_size,
sliding_window=args.sliding_window,
max_frame_num=args.num_frames + 100,
camera_num_iterations=args.camera_num_iterations,
device=device,
)
# FlashInfer FA2 only supports fp16/bf16; fall back to gather+SDPA for fp32.
if backend == 'flashinfer' and dtype == torch.float32:
model.aggregator.kv_cache_force_fp32 = True
if backend == 'flashinfer' and args.fa3:
model.aggregator.kv_cache_fa3 = True
autocast_ctx = (
contextlib.nullcontext() if dtype == torch.float32
else torch.amp.autocast('cuda', dtype=dtype)
)
# N streaming frames in warmup so CUDA graphs / cuDNN autotune /
# FlashInfer lazy init / allocator growth all complete before the
# measured profile begins. Profile's `clean_kv_cache → P1 → stream`
# opening then hits already-captured graphs with stable addresses.
WARMUP_STREAM = 10
warm_scale = images_master[:1, :8].to(device=device, dtype=dtype)
warm_stream = images_master[:1, 8:8 + WARMUP_STREAM].to(device=device, dtype=dtype)
kf_int = args.keyframe_interval
def _warm(m, passes=1):
"""Run `passes` full `clean → Phase-1 → N-stream` sequences.
When ``kf_int > 1`` the inner stream loop alternates keyframe /
non-keyframe forwards (matching what `profile_streaming` will do)
so that `torch.compile` warms BOTH the append-and-evict path and
the skip_append (defer+append+attend+rollback) path before the
measured run begins. Otherwise non-keyframes hit cold orchestration
code on every measured frame, masking the real `--compile` win.
"""
for _ in range(passes):
m.clean_kv_cache()
torch.compiler.cudagraph_mark_step_begin()
with torch.no_grad(), autocast_ctx:
m.forward(warm_scale, num_frame_for_scale=8,
num_frame_per_block=8, causal_inference=True)
for i in range(WARMUP_STREAM):
is_keyframe = (kf_int <= 1) or (i % kf_int == 0)
if not is_keyframe:
m._set_skip_append(True)
torch.compiler.cudagraph_mark_step_begin()
with torch.no_grad(), autocast_ctx:
m.forward(warm_stream[:, i:i + 1], num_frame_for_scale=8,
num_frame_per_block=1, causal_inference=True)
if not is_keyframe:
m._set_skip_append(False)
torch.cuda.synchronize()
# Eager warmup populates RoPE / kernel caches BEFORE torch.compile
# captures CUDA graphs (otherwise capture would bake in a cache-miss
# tensor-allocation path).
print(f" Warmup eager (scale + {WARMUP_STREAM} streaming)...")
_warm(model)
if args.compile:
print(f" Compiling hot modules...")
compile_model(model)
# Three passes under compile: 1st captures CUDA graphs, 2nd/3rd
# replay so the caching allocator and graph-address map converge
# on the exact state the subsequent profile will see.
print(f" Warmup compiled (3× dress rehearsal)...")
_warm(model, passes=3)
else:
# No compile → a single dress-rehearsal pass is enough to
# settle cuDNN / allocator for the first Phase-2 frame.
_warm(model)
images = images_master.to(dtype=dtype)
per_frame_ms, scale_frames, phase1_ms = profile_streaming(
model, images, args.num_frames, dtype,
keyframe_interval=args.keyframe_interval,
)
results[key] = summarize(per_frame_ms, scale_frames, phase1_ms, key)
del model
torch.cuda.empty_cache()
print_comparison(results)
out_path = (
f'/tmp/profile_results_{args.img_h}x{args.img_w}_'
f'{args.num_frames}f_{args.dtype}.json'
)
with open(out_path, 'w') as f:
json.dump(results, f, indent=2)
print(f"\n Saved to {out_path}")
if __name__ == "__main__":
main()