visualize_layerwise_profile.py 20.4 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
5
6
7
8
9
import argparse
import copy
import json
import math
import os
from pathlib import Path
10
from typing import Any, Optional
11
12
13
14
15
16
17
18
19
20

import matplotlib.pyplot as plt
import pandas as pd

## JSON parsing utils ####


def largest_dist_from_leaf(node: dict, depth: int = 0):
    if len(node["children"]) == 0:
        return depth
21
22
23
24
25
26
27
28
29
30
31
32
    return max(
        [largest_dist_from_leaf(child, depth=depth + 1) for child in node["children"]]
    )


def get_entries_at_depth(
    depth: int,
    entries_and_traces: list[tuple[Any, Any]],
    node: dict,
    curr_depth: int = 0,
    trace=(),
):
33
34
35
36
37
38
39
40
41
42
43
    # assert that the query is at kernel or module level
    assert depth == -1 or depth == -2

    if curr_depth == 0 and largest_dist_from_leaf(node) <= (abs(depth) - 1):
        # The tree is not tall enough!
        entries_and_traces.append((node["entry"], trace))
        return

    if largest_dist_from_leaf(node) == (abs(depth) - 1):
        entries_and_traces.append((node["entry"], trace))

44
    trace = (node["entry"]["name"],) + trace
45
    for child in node["children"]:
46
47
48
        get_entries_at_depth(
            depth, entries_and_traces, child, curr_depth=curr_depth + 1, trace=trace
        )
49
50


51
52
def fold_nodes(root: dict, nodes_to_fold: list[str]):
    stack: list[dict] = [root]
53
54
    while len(stack) != 0:
        node = stack.pop()
55
        if node["entry"]["name"] in nodes_to_fold:
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
            node["children"] = []
            continue
        for child in node["children"]:
            stack.append(child)
    return root


## Operation name cleanup utils ####


def trim_string_back(string: str, width: int) -> str:
    if len(string) > width:
        offset = len(string) - width + 3
        string = string[:-offset]
        if len(string) > 3:
            string = string + "..."
    return string


def shorten_plot_legend_strings(legend, max_char_len: int):
    for t in legend.get_texts():
77
        t.set_text(trim_string_back(abbreviate_known_names(t.get_text()), max_char_len))
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


def abbreviate_known_names(name: str) -> str:
    abbreviations = {
        "MergedColumnParallelLinear": "MCPLinear",
        "QKVParallelLinear": "QKVPLinear",
        "RowParallelLinear": "RPLinear",
        "weight=": "w=",
        "bfloat16": "bf16",
        "float16": "f16",
    }
    for key, value in abbreviations.items():
        name = name.replace(key, value)
    return name


def attempt_to_make_names_unique(entries_and_traces):
    names, non_unique_names = (set(), set())

    def all_the_same(items) -> bool:
        return all(i == items[0] for i in items)

    for entry, _ in entries_and_traces:
        if entry["name"] in names:
            non_unique_names.add(entry["name"])
        else:
            names.add(entry["name"])

    for name in non_unique_names:
107
108
109
110
111
        entries_and_traces_with_name = [
            (entry, trace)
            for entry, trace in entries_and_traces
            if entry["name"] == name
        ]
112

113
        zipped_traces = list(zip(*[trace for _, trace in entries_and_traces_with_name]))
114
        first_trace_difference = next(
115
116
117
118
119
120
121
            (
                i
                for i, trace_eles in enumerate(zipped_traces)
                if not all_the_same(trace_eles)
            ),
            None,
        )
122
123

        if first_trace_difference is None:
124
            # can't create a unique name, leave the names as they
125
126
127
128
            # are they will get aggregated by the pivot_table call
            continue

        for entry, trace in entries_and_traces_with_name:
129
130
131
            entry["name"] = " <- ".join(
                (entry["name"],) + trace[: first_trace_difference + 1]
            )
132
133
134


## Operation grouping utils ####
135
"""
136
137
138
139
140
    Group operations in the given dataframe by some high-level ops like,
    - gemms
    - attention
    - rms_norm 
    etc.
141
"""
142
143
144
145
146
147
148
149


def group_trace_by_operations(trace_df: pd.DataFrame) -> pd.DataFrame:
    def is_rms_norm(op_name: str):
        if "rms_norm_kernel" in op_name:
            return True

    def is_attention_block(op_name: str):
150
        if "flash_fwd" in op_name or "reshape_and_cache_flash_kernel" in op_name:
151
152
153
            return True

    def is_quant(op_name: str):
154
        if "scaled_fp8_quant" in op_name or "scaled_int8_quant" in op_name:
155
156
            return True

157
158
159
160
161
162
163
164
165
166
167
168
169
170
    # LoRA ops
    def is_sgmv_shrink(op_name: str):
        return "sgmv_shrink" in op_name

    def is_sgmv_expand(op_name: str):
        return "sgmv_expand" in op_name

    def is_bgmv_shrink(op_name: str):
        return "bgmv_shrink" in op_name

    def is_bgmv_expand(op_name: str):
        return "bgmv_expand" in op_name

    def is_cutlass_gemm_op(op_name: str):
171
172
173
174
        return (
            "void cutlass::Kernel" in op_name
            or "void cutlass::device_kernel" in op_name
        )
175

176
177
178
    def is_gemm_op(op_name: str):
        if is_quant(op_name):
            return False
179
180
181
182
183
184
185
        return (
            is_cutlass_gemm_op(op_name)
            or "xmma_gemm" in op_name
            or "gemv2T_kernel" in op_name
            or "splitKreduce" in op_name
            or "s16816gemm" in op_name
        )
186
187
188
189
190

    def is_elementwise_op(op_name: str):
        return "elementwise_kernel" in op_name

    def is_mem_op(op_name: str):
191
        return "memcpy" in op_name.lower() or "memset" in op_name.lower()
192
193
194
195
196
197
198
199
200

    def is_vocab_embedding_op(op_name: str):
        return "vocabparallelembed" in op_name.lower()

    # nccl ops
    def is_nccl_op(op_name: str):
        return "nccl" in op_name.lower()

    def is_nccl_all_reduce(op_name: str):
201
202
203
        return is_nccl_op(op_name) and (
            "all_reduce" in op_name.lower() or "allreduce" in op_name.lower()
        )
204
205

    def is_nccl_gather(op_name: str):
206
        return is_nccl_op(op_name) and "gather" in op_name.lower()
207
208

    def is_nccl_broadcast(op_name: str):
209
        return is_nccl_op(op_name) and "broadcast" in op_name.lower()
210
211
212
213
214
215
216
217

    # Reduce ops types
    def is_cross_device_reduce_1stage(op_name: str):
        return "cross_device_reduce_1stage" in op_name

    def is_cross_device_reduce_2stage(op_name: str):
        return "cross_device_reduce_2stage" in op_name

218
219
    def is_custom_ar_all_reduce(op_name: str):
        return "_C_custom_ar::all_reduce" in op_name
220
221
222
223
224
225
226
227
228
229
230
231
232

    def is_reduce_kernel(op_name: str):
        return "reduce_kernel" in op_name

    headers = list(trace_df)
    ops = copy.deepcopy(headers)

    attention_ops = list(filter(lambda x: is_attention_block(x), ops))
    ops = list(filter(lambda x: x not in attention_ops, ops))

    quant_ops = list(filter(lambda x: is_quant(x), ops))
    ops = list(filter(lambda x: x not in quant_ops, ops))

233
234
235
236
237
238
239
240
241
242
243
244
    sgmv_shrink_ops = list(filter(lambda x: is_sgmv_shrink(x), ops))
    ops = list(filter(lambda x: x not in sgmv_shrink_ops, ops))
    sgmv_expand_ops = list(filter(lambda x: is_sgmv_expand(x), ops))
    ops = list(filter(lambda x: x not in sgmv_expand_ops, ops))
    bgmv_shrink_ops = list(filter(lambda x: is_bgmv_shrink(x), ops))
    ops = list(filter(lambda x: x not in bgmv_shrink_ops, ops))
    bgmv_expand_ops = list(filter(lambda x: is_bgmv_expand(x), ops))
    ops = list(filter(lambda x: x not in bgmv_expand_ops, ops))

    cutlass_gemm_ops = list(filter(lambda x: is_cutlass_gemm_op(x), ops))
    ops = list(filter(lambda x: x not in cutlass_gemm_ops, ops))

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
    gemm_ops = list(filter(lambda x: is_gemm_op(x), ops))
    ops = list(filter(lambda x: x not in gemm_ops, ops))

    rms_norm_ops = list(filter(lambda x: is_rms_norm(x), ops))
    ops = list(filter(lambda x: x not in rms_norm_ops, ops))

    vocab_embed_ops = list(filter(lambda x: is_vocab_embedding_op(x), ops))
    ops = list(filter(lambda x: x not in vocab_embed_ops, ops))

    mem_ops = list(filter(lambda x: is_mem_op(x), ops))
    ops = list(filter(lambda x: x not in mem_ops, ops))

    elementwise_ops = list(filter(lambda x: is_elementwise_op(x), ops))
    ops = list(filter(lambda x: x not in elementwise_ops, ops))

    nccl_all_reduce_ops = list(filter(lambda x: is_nccl_all_reduce(x), ops))
    ops = list(filter(lambda x: x not in nccl_all_reduce_ops, ops))

    nccl_gather_ops = list(filter(lambda x: is_nccl_gather(x), ops))
    ops = list(filter(lambda x: x not in nccl_gather_ops, ops))

    nccl_broadcast_ops = list(filter(lambda x: is_nccl_broadcast(x), ops))
    ops = list(filter(lambda x: x not in nccl_broadcast_ops, ops))

    nccl_other_ops = list(filter(lambda x: is_nccl_op(x), ops))
    ops = list(filter(lambda x: x not in nccl_other_ops, ops))

    cross_device_reduce_1stage_ops = list(
273
274
        filter(lambda x: is_cross_device_reduce_1stage(x), ops)
    )
275
276
277
    ops = list(filter(lambda x: x not in cross_device_reduce_1stage_ops, ops))

    cross_device_reduce_2stage_ops = list(
278
279
        filter(lambda x: is_cross_device_reduce_2stage(x), ops)
    )
280
281
    ops = list(filter(lambda x: x not in cross_device_reduce_2stage_ops, ops))

282
    custom_ar_all_reduce_ops = list(filter(lambda x: is_custom_ar_all_reduce(x), ops))
283
    ops = list(filter(lambda x: x not in custom_ar_all_reduce_ops, ops))
284
285
286
287
288

    reduce_kernel_ops = list(filter(lambda x: is_reduce_kernel(x), ops))
    ops = list(filter(lambda x: x not in reduce_kernel_ops, ops))

    if len(attention_ops):
289
        trace_df["attention"] = trace_df[attention_ops].agg("sum", axis=1)
290
    if len(quant_ops):
291
        trace_df["quant_ops"] = trace_df[quant_ops].agg("sum", axis=1)
292
293

    if len(sgmv_shrink_ops):
294
        trace_df["sgmv_shrink_ops"] = trace_df[sgmv_shrink_ops].agg("sum", axis=1)
295
    if len(sgmv_expand_ops):
296
        trace_df["sgmv_expand_ops"] = trace_df[sgmv_expand_ops].agg("sum", axis=1)
297
    if len(bgmv_shrink_ops):
298
        trace_df["bgmv_shrink_ops"] = trace_df[bgmv_shrink_ops].agg("sum", axis=1)
299
    if len(bgmv_expand_ops):
300
        trace_df["bgmv_expand_ops"] = trace_df[bgmv_expand_ops].agg("sum", axis=1)
301
302

    if len(cutlass_gemm_ops):
303
        trace_df["cutlass_gemm_ops"] = trace_df[cutlass_gemm_ops].agg("sum", axis=1)
304

305
    if len(gemm_ops):
306
        trace_df["gemm_ops"] = trace_df[gemm_ops].agg("sum", axis=1)
307
    if len(rms_norm_ops):
308
        trace_df["rms_norm_ops"] = trace_df[rms_norm_ops].agg("sum", axis=1)
309
    if len(vocab_embed_ops):
310
        trace_df["vocab_embed_ops"] = trace_df[vocab_embed_ops].agg("sum", axis=1)
311
    if len(mem_ops):
312
        trace_df["mem_ops"] = trace_df[mem_ops].agg("sum", axis=1)
313
    if len(elementwise_ops):
314
        trace_df["elementwise_ops"] = trace_df[elementwise_ops].agg("sum", axis=1)
315
316

    if len(nccl_all_reduce_ops):
317
318
319
        trace_df["nccl_all_reduce_ops"] = trace_df[nccl_all_reduce_ops].agg(
            "sum", axis=1
        )
320
    if len(nccl_gather_ops):
321
        trace_df["nccl_gather_ops"] = trace_df[nccl_gather_ops].agg("sum", axis=1)
322
    if len(nccl_broadcast_ops):
323
        trace_df["nccl_broadcast_ops"] = trace_df[nccl_broadcast_ops].agg("sum", axis=1)
324
    if len(nccl_other_ops):
325
        trace_df["nccl_other_ops"] = trace_df[nccl_other_ops].agg("sum", axis=1)
326
327

    if len(cross_device_reduce_1stage_ops):
328
329
330
        trace_df["cross_device_reduce_1stage_ops"] = trace_df[
            cross_device_reduce_1stage_ops
        ].agg("sum", axis=1)
331
    if len(cross_device_reduce_2stage_ops):
332
333
334
        trace_df["cross_device_reduce_2stage_ops"] = trace_df[
            cross_device_reduce_2stage_ops
        ].agg("sum", axis=1)
335
    if len(custom_ar_all_reduce_ops):
336
337
338
        trace_df["custom_ar_all_reduce_ops"] = trace_df[custom_ar_all_reduce_ops].agg(
            "sum", axis=1
        )
339
    if len(reduce_kernel_ops):
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
        trace_df["reduce_kernel_ops"] = trace_df[reduce_kernel_ops].agg("sum", axis=1)

    trace_df.drop(
        attention_ops
        + quant_ops
        + sgmv_shrink_ops
        + sgmv_expand_ops
        + bgmv_shrink_ops
        + bgmv_expand_ops
        + cutlass_gemm_ops
        + gemm_ops
        + rms_norm_ops
        + vocab_embed_ops
        + mem_ops
        + elementwise_ops
        + nccl_all_reduce_ops
        + nccl_gather_ops
        + nccl_broadcast_ops
        + nccl_other_ops
        + cross_device_reduce_1stage_ops
        + cross_device_reduce_2stage_ops
        + custom_ar_all_reduce_ops
        + reduce_kernel_ops,
        axis=1,
        inplace=True,
    )
366
367
368
369
370
371
    return trace_df


## Data plotting utils ####


372
373
374
375
376
377
def plot_trace_df(
    traces_df: pd.DataFrame,
    plot_metric: str,
    plot_title: str,
    output: Optional[Path] = None,
):
378
379
    def get_phase_description(traces_df: pd.DataFrame, phase: str) -> str:
        phase_df = traces_df.query(f'phase == "{phase}"')
380
        descs = phase_df["phase_desc"].to_list()
381
382
383
        assert all([desc == descs[0] for desc in descs])
        return descs[0]

384
    phases = traces_df["phase"].unique()
385
    phase_descs = [get_phase_description(traces_df, p) for p in phases]
386
387
388
    traces_df = traces_df.pivot_table(
        index="phase", columns="name", values=plot_metric, aggfunc="sum"
    )
389
390
391
392

    traces_df = group_trace_by_operations(traces_df)

    # Make the figure
393
394
    fig_size_x = max(5, len(phases))
    fig, ax = plt.subplots(1, figsize=(fig_size_x, 8), sharex=True)
395
396
397
398
399
400
401

    # Draw the stacked bars
    ops = list(traces_df)
    bottom = [0] * len(phases)
    for op in ops:
        values = [traces_df[op][phase] for phase in phases]
        values = list(map(lambda x: 0.0 if math.isnan(x) else x, values))
402
        ax.bar(phase_descs, values, label=op, bottom=bottom)
403
404
405
406
407
        bottom = [bottom[j] + values[j] for j in range(len(phases))]

    # Write the values as text on the bars
    for bar in ax.patches:
        if bar.get_height() != 0:
408
409
410
411
412
413
414
415
416
            ax.text(
                bar.get_x() + bar.get_width() / 2,
                bar.get_height() / 2 + bar.get_y(),
                f"{round(bar.get_height(), 2)}",
                ha="center",
                color="w",
                weight="bold",
                size=5,
            )
417
418
419

    # Setup legend
    handles, labels = plt.gca().get_legend_handles_labels()
420
    legend = fig.legend(handles, labels, loc="center left", bbox_to_anchor=(1, 1))
421
422
423
424
425
426
427
    shorten_plot_legend_strings(legend, 50)

    # Setup labels and title
    plt.setp(ax.get_xticklabels(), rotation=90)
    ax.set_ylabel(plot_metric)
    plt.suptitle(plot_title)

428
    plt.savefig(output, bbox_inches="tight")
429
430
431
432
    print("Created: ", output)


def main(
433
434
435
436
437
438
439
440
    json_trace: Path,
    output_directory: Path,
    depth: int,  # Fetch/Plot operations at this depth of the Json tree
    plot_metric: str,
    make_names_unique: bool,
    top_k: int,
    json_nodes_to_fold: list[str],
):
441
    def prepare_data(profile_json: dict, step_keys: list[str]) -> pd.DataFrame:
442
        def get_entries_and_traces(key: str):
443
            entries_and_traces: list[tuple[Any, Any]] = []
444
445
446
447
448
449
450
            for root in profile_json[key]["summary_stats"]:
                # Fold nodes in the traces as per user request. i.e. simply
                # make the requested nodes leaf-nodes.
                root = fold_nodes(root, json_nodes_to_fold)
                get_entries_at_depth(depth, entries_and_traces, root)
            return entries_and_traces

451
452
453
454
        def keep_only_top_entries(
            df: pd.DataFrame, metric: str, top_k: int = 9
        ) -> pd.DataFrame:
            df.loc[df.nsmallest(len(df) - top_k + 1, metric).index, ["name"]] = "others"
455
456
            return df

457
        def get_phase_description(key: str) -> str:
458
            num_running_seqs = profile_json[key]["metadata"]["num_running_seqs"]
459
460
461
462
463
            if num_running_seqs is not None:
                return f"{key}-seqs-{num_running_seqs}"
            else:
                return key

464
465
466
467
468
469
470
471
472
473
        # Get data for each key
        traces = list(map(lambda x: get_entries_and_traces(x), step_keys))

        # Attempt some cleanup
        if make_names_unique:
            for trace in traces:
                attempt_to_make_names_unique(trace)

        # To pandas dataframe
        trace_dfs = list(
474
475
            map(lambda t: pd.DataFrame([entry for entry, _ in t]).fillna(0), traces)
        )
476
477
478
479
480
481

        # Respect top_k
        if top_k:
            trace_dfs = list(
                map(
                    lambda trace_df: keep_only_top_entries(
482
483
484
485
486
                        trace_df, "cuda_time_us", top_k
                    ),
                    trace_dfs,
                )
            )
487
488
489

        # Fill in information about the step-keys
        for trace_df, step_key in zip(trace_dfs, step_keys):
490
491
            trace_df["phase"] = step_key
            trace_df["phase_desc"] = get_phase_description(step_key)
492
493
494
495
496
497
498
499
500
501
502
503

        # Combine all data frames so they can be put in a single plot
        traces_df = pd.concat(trace_dfs)

        # Add a derived metric `cuda_time_ms`
        traces_df["cuda_time_ms"] = traces_df["cuda_time_us"] / 1000
        traces_df = traces_df.fillna(0)

        return traces_df

    def make_plot_title_suffix(profile_json: dict) -> str:
        context = profile_json["context"]
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
        sparsity = context.get("sparsity", None)
        run_type = (
            f"Run {context['num_steps']} steps"
            if context["num_steps"]
            else (
                f"Complete {context['complete_num_requests_per_step']} per "
                f"step; Run till completion"
            )
        )
        return (
            f"{context['engine_args']['model']}\n"
            f"Batch={context['batch_size']}, "
            f"PromptLen={context['prompt_len']}, "
            f"NumGpus={context['engine_args']['tensor_parallel_size']}"
            f"{', Sparsity ' + sparsity if sparsity else ''}\n"
            f"Run Type: {run_type}"
        )
521
522

    profile_json = None
523
    with open(json_trace) as f:
524
525
526
527
528
        profile_json = json.load(f)
    assert profile_json is not None

    # Get all `llm.generate.step()` profile
    step_traces = list(profile_json.keys())
529
    assert step_traces[0] == "context"
530
531
532
533
534
535
    step_traces = step_traces[1:]  # have only prefill and decodes
    prefills = list(filter(lambda x: "prefill" in x, step_traces))
    all_decodes = list(filter(lambda x: "decode" in x, step_traces))
    assert len(prefills) + len(all_decodes) == len(step_traces)
    assert len(prefills) == 1

536
    decodes = all_decodes[:: args.step_plot_interval]
537
538
539
540
541
542
543
544
545
    if decodes[-1] != all_decodes[-1]:
        # Always have the last decode
        decodes.append(all_decodes[-1])

    prefill_traces = prepare_data(profile_json, prefills)
    decode_traces = prepare_data(profile_json, decodes)

    plot_title_suffix = make_plot_title_suffix(profile_json)

546
547
548
549
550
551
552
553
554
555
556
557
    plot_trace_df(
        prefill_traces,
        plot_metric,
        "prefill " + plot_title_suffix,
        output_directory / Path("prefill.png"),
    )
    plot_trace_df(
        decode_traces,
        plot_metric,
        "decodes " + plot_title_suffix,
        output_directory / Path("decode_steps.png"),
    )
558
559
560
561
562


if __name__ == "__main__":
    parser = argparse.ArgumentParser()

563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
    parser.add_argument(
        "--json-trace",
        type=str,
        required=True,
        help="json trace file output by \
                              examples/offline_inference/profiling.py",
    )
    parser.add_argument(
        "--output-directory", type=str, required=False, help="Directory to output plots"
    )
    parser.add_argument(
        "--level", type=str, default="module", choices=["module", "kernel"]
    )
    parser.add_argument(
        "--top-k",
        type=int,
        default=12,
        help="Only graph the top `top_k` entries by time.",
    )
    parser.add_argument(
        "--fold-json-node",
        nargs="+",
        default=["Sampler", "LogitsProcessor"],
        help="Do not plot the children of these nodes. Let, \
587
                              the node represent the aggregate of all its \
588
589
590
591
592
593
594
595
596
                              children",
    )
    parser.add_argument(
        "--plot-metric",
        type=str,
        default="cuda_time_ms",
        help="Metric to plot. some options are cuda_time_ms, \
                                pct_cuda_time",
    )
597
598
599
600
    parser.add_argument(
        "--step-plot-interval",
        type=int,
        default=4,
601
602
        help="For every `step_plot_interval` steps, plot 1 step",
    )
603
604
605
606
607
608
609
610
611
612
613
614
615

    args = parser.parse_args()

    # Prepare/Extract relevant args
    make_names_unique = False
    if args.level == "module":
        depth = -2
        make_names_unique = True
    elif args.level == "kernel":
        depth = -1
    else:
        raise Exception(f"Unexpected level value ({args.level})")

616
617
618
    output_directory = (
        args.output_directory if args.output_directory else Path(args.json_trace).parent
    )
619
620
621
622

    if not os.path.exists(output_directory):
        os.makedirs(output_directory)

623
624
625
626
627
628
629
630
631
    main(
        Path(args.json_trace),
        output_directory,
        depth,
        args.plot_metric,
        make_names_unique,
        args.top_k,
        args.fold_json_node,
    )