-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathtest-kernel-bench.py
More file actions
executable file
·322 lines (278 loc) · 10.2 KB
/
Copy pathtest-kernel-bench.py
File metadata and controls
executable file
·322 lines (278 loc) · 10.2 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
# RUN: python %s --ci | FileCheck %s
# RUN: python %s --ci --torch-compile | FileCheck %s
# REQUIRES: torch
# REQUIRES: kernel_bench
import argparse
import re
import subprocess
import platform
from pathlib import Path
import yaml
script_path = Path(__file__).parent
project_root = script_path.parent.parent
kb_program = project_root / "tools" / "kernel-bench"
kb_default_pipeline = kb_program.parent / "kernel-bench.yaml"
kb_path = project_root / "third_party" / "KernelBench" / "KernelBench"
yaml_files = [
script_path / "level1.yaml",
script_path / "level2.yaml",
script_path / "level3.yaml",
]
ci_files = [
script_path / "ci.yaml",
]
class TargetInfo:
"""
Struct to hold target architecture and feature information.
Since this is used in a JIT context, we can safely assume the host
architecture is the target architecture if not specified.
"""
def __init__(self, arch: str = None, feature: str = None):
if arch is not None:
self.arch = arch
else:
self.arch = platform.machine()
self.feature = []
if feature is not None:
self.feature = feature.split(",")
else:
self._get_extension_list()
def _get_extension_list(self) -> list[str]:
flags = subprocess.run(
"lscpu | grep Flags",
capture_output=True,
text=True,
shell=True,
).stdout
schedule_path = script_path / "schedules" / self.arch
if not schedule_path.exists():
return []
extensions = []
for item in schedule_path.iterdir():
if item.is_dir():
extensions.append(item.name)
for ext in extensions:
if ext in flags:
self.feature.append(ext)
def get_pipeline_file(name: str, dtype: str, target: TargetInfo) -> Path:
"""
Returns the appropriate pipeline file for a given kernel.
"""
# If no name is provided, return the default pipeline.
if not name:
return kb_default_pipeline
# First check if there's a pipeline file specific to the target features.
for feature in target.feature:
pipeline = (
script_path / f"schedules/{target.arch}/{feature}/{name}/{dtype}.yaml"
)
if pipeline.exists():
return pipeline
# Second, check if there's a pipeline file specific to the target architecture.
if target.arch:
pipeline = script_path / f"schedules/{target.arch}/{name}/{dtype}.yaml"
if pipeline.exists():
return pipeline
# Otherwise, just return the safe option
return kb_default_pipeline
def get_tests(args: argparse.Namespace) -> list[dict]:
"""
Returns the list of tests to be executed.
"""
tests = []
test_files = ci_files if args.ci else yaml_files
for yaml_file in test_files:
with open(yaml_file) as f:
tests += yaml.safe_load(f)
test_list = []
for test in tests:
# If a specific kernel is specified, only include that kernel
if args.kernel and not test["kernel"].startswith(args.kernel):
continue
# Smoke tests run on the simplest lowering
if args.smoke_test:
pipeline = str(kb_default_pipeline)
elif args.pipeline:
pipeline = args.pipeline
else:
pipeline = str(
get_pipeline_file(
test.get("pipeline", ""),
args.dtype,
TargetInfo(args.target, args.feature),
)
)
test_list.append(
{
"kernel": test["kernel"],
"input_shapes": ",".join(
f"{shape}x{args.dtype}x{init}"
for shape, init in zip(
test["input_shapes"], test["initializations"]
)
),
"output_shape": f"{test['output_shape']}x{args.dtype}x0",
"init_args": test.get("init_args", "None"),
"gflops": eval(test["gflops"])
if "gflops" in test and args.benchmark
else None,
"pipeline": pipeline,
"warning": test.get("warning", None),
}
)
return test_list
def get_flops_per_second(stdout: str, gflops: float) -> float:
for line in stdout.splitlines():
match = re.search(r"([0-9.e-]+) seconds", line)
if match:
seconds = float(match.group(1))
return gflops / seconds
return 0.0
if __name__ == "__main__":
Parser = argparse.ArgumentParser(
description="""Kernel Bench testing & benchmarking."""
)
Parser.add_argument(
"--dtype",
type=str,
default="f32",
help="Data type. Default f32.",
)
Parser.add_argument(
"--pipeline",
type=str,
help="A descriptor file (YAML) with the pipeline stages to apply.",
)
Parser.add_argument(
"--benchmark",
action=argparse.BooleanOptionalAction,
help="Whether to run the benchmark.",
)
Parser.add_argument(
"--ci",
action=argparse.BooleanOptionalAction,
help="Enable CI mode (faster run, fewer kernels). Incompatible with --smoke-test.",
)
Parser.add_argument(
"--infer-shapes",
action=argparse.BooleanOptionalAction,
help="Enable shape inference mode. Default is to use values in YAML file.",
)
Parser.add_argument(
"--kernel",
type=str,
help="Specify a particular kernel to run.",
)
Parser.add_argument(
"--print-mlir-after-all",
action=argparse.BooleanOptionalAction,
help="Whether to print the MLIR module after all stages. Default is False.",
)
Parser.add_argument(
"--smoke-test",
action=argparse.BooleanOptionalAction,
help="Runs every kernel with loops lowering to pipe clean.",
)
Parser.add_argument(
"--target",
type=str,
help="Specify a particular target architecture (x86_64, arm64, etc.). Default is to auto-detect.",
)
Parser.add_argument(
"--feature",
type=str,
help="Specify a particular target feature (amx, avx512, etc.).",
)
args, unknown_args = Parser.parse_known_args()
if args.smoke_test and args.ci:
print("\nERROR: Smoke test and CI mode are incompatible.\n")
Parser.print_help()
exit(1)
tests = get_tests(args)
if len(tests) == 0:
if args.kernel:
print(
f"No tests found matching '{args.kernel}'. Please check your arguments."
)
else:
print("No tests to run. Please check your arguments.")
exit(0)
target_info = TargetInfo(args.target, args.feature)
for test in tests:
kb_kernel = kb_path / test["kernel"]
command_line = []
command_line += [
str(kb_program),
str(kb_kernel),
"--pipeline",
test["pipeline"],
"--dtype",
args.dtype,
]
if target_info.arch:
command_line += ["--target", target_info.arch]
if target_info.feature:
command_line += ["--feature", ",".join(target_info.feature)]
# Benchmark mode.
if args.benchmark:
command_line += ["--benchmark"]
# FIXME: This is here just for quick testing
# Remove when merging back to main
command_line += ["--nwarmup", "5", "--nruns", "10", "--no-validate"]
# Shape inference or from args.
if not args.infer_shapes:
command_line += [
"--input-shapes",
test["input_shapes"],
"--output-shape",
test["output_shape"],
"--init-args",
test["init_args"],
]
# For debugging, prefer not to capture output.
if args.print_mlir_after_all:
command_line += ["--print-mlir-after-all"]
# If any extra args are provided, add them to the command line.
if unknown_args:
command_line += unknown_args
# Print out before we run the test.
if test.get("warning"):
print(f"WARNING: {test['warning']}")
print(f"Running command: {' '.join(command_line)}", flush=True)
# While debugging kernels, it's useful to see the output as it comes.
# Note: GFLOPS can't be shown if the output is not captured.
capture_output = True
if args.print_mlir_after_all and not args.ci:
capture_output = False
result = subprocess.run(
command_line,
capture_output=capture_output,
text=True,
)
# If output is captured, print it out, including benchmark results if applicable.
if capture_output:
print("STDOUT:")
print(result.stdout)
# Only show "performance" if gflops count is available.
if args.benchmark and test["gflops"] is not None:
flops_per_second = get_flops_per_second(result.stdout, test["gflops"])
if flops_per_second > 0:
print(f"Performance: {flops_per_second:.2f} GFLOPS")
# Otherwise just keep the timer and let the user calculate GFLOPS themselves.
elif args.benchmark:
print("Performance: GFLOPS data not available for this test.")
print("STDERR:")
print(result.stderr)
print(f"Return code: {result.returncode}", flush=True)
# Only stop on failure on normal runs.
# Smoke tests try to run as much as possible.
if not args.smoke_test:
assert result.returncode == 0, "Execution failed"
# CHECK: 2_Standard_matrix_multiplication_.py
# CHECK: Success: The output of the compiled model matches the reference output.
# CHECK: 3_Batched_matrix_multiplication.py
# CHECK: Success: The output of the compiled model matches the reference output.
# CHECK: 4_Matrix_vector_multiplication_.py
# CHECK: Success: The output of the compiled model matches the reference output.
# CHECK: 5_Matrix_scalar_multiplication.py
# CHECK: Success: The output of the compiled model matches the reference output.