forked from NVIDIA/TensorRT-LLM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_benchmark.py
141 lines (119 loc) · 5.58 KB
/
base_benchmark.py
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
# SPDX-FileCopyrightText: Copyright (c) 2022-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import os
import subprocess
from collections import OrderedDict
import torch
import tensorrt_llm
from tensorrt_llm.quantization import QuantMode
def get_compute_cap():
output = subprocess.check_output(
['nvidia-smi', "--query-gpu=compute_cap", "--format=csv"])
_, csv_value, *_ = output.splitlines()
return str(int(float(csv_value) * 10))
def get_csv_filename(model, dtype, tp_size, mode, **kwargs):
sm = get_compute_cap()
if len(kwargs) == 0:
kw_pairs = ""
else:
kw_pairs = "_" + "_".join([str(k) + str(v) for k, v in kwargs.items()])
return f'{model}_{dtype}_tp{tp_size}_{mode}{kw_pairs}_sm{sm}.csv'
def get_engine_name(model, dtype, tp_size, rank):
return '{}_{}_tp{}_rank{}.engine'.format(model, dtype, tp_size, rank)
def serialize_engine(engine, path):
with open(path, 'wb') as f:
f.write(bytearray(engine))
class BaseBenchmark(object):
def __init__(self, engine_dir, model_name, dtype, output_dir):
self.engine_dir = engine_dir
self.model_name = model_name
self.dtype = dtype
self.output_dir = output_dir
self.runtime_rank = tensorrt_llm.mpi_rank()
self.world_size = tensorrt_llm.mpi_world_size()
self.engine_model_name = model_name
self.quant_mode = QuantMode(0)
if engine_dir is not None:
# Read config from engine directory
config_path = os.path.join(engine_dir, 'config.json')
with open(config_path, 'r') as f:
self.config = json.load(f)
# Sanity checks
config_dtype = self.config['builder_config']['precision']
assert dtype == config_dtype, f"Engine dtype ({config_dtype}) != Runtime dtype ({dtype})"
world_size = self.config['builder_config']['tensor_parallel']
assert world_size == self.world_size, \
(f'Engine world size ({world_size}) != Runtime world size ({self.world_size})')
# Load config into self
for key, value in self.config['builder_config'].items():
if key == "quant_mode":
self.quant_mode = QuantMode(value)
elif key in "name":
self.engine_model_name = value
else:
setattr(self, key, value)
self.enable_fp8 = self.quant_mode.has_fp8_qdq()
self.fp8_kv_cache = self.quant_mode.has_fp8_kv_cache()
for key, value in self.config['plugin_config'].items():
# Same effect as self.use_foo_plugin = config.json["foo_plugin"]
if "plugin" in key:
key = "use_" + key
setattr(self, key, value)
self.engine_name = get_engine_name(self.engine_model_name, self.dtype,
self.world_size, self.runtime_rank)
self.runtime_mapping = tensorrt_llm.Mapping(world_size=self.world_size,
rank=self.runtime_rank,
tp_size=self.world_size)
torch.cuda.set_device(self.runtime_rank %
self.runtime_mapping.gpus_per_node)
self.csv_filename = "" # lazy init
def get_report_dict(self):
report_fields = [
"model_name", "world_size", "num_heads", "num_kv_heads",
"num_layers", "hidden_size", "vocab_size", "precision",
"batch_size", "input_length", "output_length", "gpu_peak_mem(gb)",
"build_time(s)", "tokens_per_sec", "percentile95(ms)",
"percentile99(ms)", "latency(ms)", "compute_cap"
]
report_dict = OrderedDict.fromkeys(report_fields)
report_dict["model_name"] = self.model_name
report_dict["world_size"] = self.world_size
report_dict["precision"] = self.dtype
report_dict["compute_cap"] = "sm" + get_compute_cap()
return report_dict
def get_csv_filename(self):
if len(self.csv_filename) == 0:
self.csv_filename = get_csv_filename(self.model_name,
self.dtype,
self.world_size,
self.mode,
fp8linear=int(self.enable_fp8))
return self.csv_filename
def print_report_header(self, csv=False):
if csv and self.runtime_rank == 0:
report_dict = self.get_report_dict()
line = ",".join(report_dict.keys())
print(line)
with open(self.get_csv_filename(), "a") as file:
file.write(line + "\n")
def get_config(self):
raise NotImplementedError
def prepare_inputs(self, config):
raise NotImplementedError
def run(self, inputs, config):
raise NotImplementedError
def report(self, config, latency):
raise NotImplementedError