Skip to content

Commit 1cc5ad6

Browse files
committed
Format perf-helper
1 parent 13132f9 commit 1cc5ad6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

clang/utils/perf-training/perf-helper.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,14 @@ def perf2prof(args):
153153
profgen_args = [opts.profgen, f"--binary={opts.binary}"]
154154
for path in opts.paths:
155155
for filename in findFilesWithExtension(path, "perf.data"):
156-
subprocess.run([*profgen_args, f"--perfdata={filename}", f"--output={filename}.profraw"], check=True)
156+
subprocess.run(
157+
[
158+
*profgen_args,
159+
f"--perfdata={filename}",
160+
f"--output={filename}.profraw",
161+
],
162+
check=True,
163+
)
157164
return 0
158165

159166

0 commit comments

Comments
 (0)