forked from dotnet/performance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmarks_ci.py
executable file
·330 lines (286 loc) · 10.1 KB
/
benchmarks_ci.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
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
#!/usr/bin/env python3
'''
Additional information:
This script wraps all the logic of how to build/run the .NET micro benchmarks,
acquire tools, gather data into perflab format and upload it, archive
results, etc.
This is meant to be used on CI runs and available for local runs,
so developers can easily reproduce what runs in the lab.
Note:
The micro benchmarks themselves can be built and run using the DotNet Cli tool.
For more information refer to: benchmarking-workflow.md
../docs/benchmarking-workflow.md
- or -
https://github.com/dotnet/performance/blob/main/docs/benchmarking-workflow.md
'''
from argparse import ArgumentParser, ArgumentTypeError
from datetime import datetime
from logging import getLogger
import os
import sys
from performance.common import extension, helixpayload, runninginlab, validate_supported_runtime, get_artifacts_directory, RunCommand
from performance.logger import setup_loggers
from performance.constants import UPLOAD_CONTAINER, UPLOAD_STORAGE_URI, UPLOAD_TOKEN_VAR, UPLOAD_QUEUE
from channel_map import ChannelMap
from subprocess import Popen, CalledProcessError
import dotnet
import micro_benchmarks
def init_tools(
architecture: str,
dotnet_versions: str,
target_framework_monikers: list,
verbose: bool,
azure_feed_url: str = None,
internal_build_key: str = None) -> None:
'''
Install tools used by this repository into the tools folder.
This function writes a semaphore file when tools have been successfully
installed in order to avoid reinstalling them on every rerun.
'''
getLogger().info('Installing tools.')
channels = [
ChannelMap.get_channel_from_target_framework_moniker(target_framework_moniker)
for target_framework_moniker in target_framework_monikers
]
dotnet.install(
architecture=architecture,
channels=channels,
versions=dotnet_versions,
verbose=verbose,
azure_feed_url=azure_feed_url,
internal_build_key=internal_build_key
)
def add_arguments(parser: ArgumentParser) -> ArgumentParser:
'''Adds new arguments to the specified ArgumentParser object.'''
if not isinstance(parser, ArgumentParser):
raise TypeError('Invalid parser.')
# Download DotNet Cli
dotnet.add_arguments(parser)
# Restore/Build/Run functionality for MicroBenchmarks.csproj
micro_benchmarks.add_arguments(parser)
PRODUCT_INFO = [
'init-tools', # Default
'repo',
'cli',
'args',
]
parser.add_argument(
'--cli-source-info',
dest='cli_source_info',
required=False,
default=PRODUCT_INFO[0],
choices=PRODUCT_INFO,
help='Specifies where the product information comes from.',
)
parser.add_argument(
'--cli-branch',
dest='cli_branch',
required=False,
type=str,
help='Product branch.'
)
parser.add_argument(
'--cli-commit-sha',
dest='cli_commit_sha',
required=False,
type=str,
help='Product commit sha.'
)
parser.add_argument(
'--cli-repository',
dest='cli_repository',
required=False,
type=str,
help='Product repository.'
)
def __is_valid_dotnet_path(dp: str) -> str:
if not os.path.isdir(dp):
raise ArgumentTypeError('Path {} does not exist'.format(dp))
if sys.platform == 'win32':
if not os.path.isfile(os.path.join(dp, 'dotnet.exe')):
raise ArgumentTypeError('Could not find dotnet.exe in {}'.format(dp))
else:
if not os.path.isfile(os.path.join(dp, 'dotnet')):
raise ArgumentTypeError('Could not find dotnet in {}'.format(dp))
return dp
parser.add_argument(
'--dotnet-path',
dest='dotnet_path',
required=False,
type=__is_valid_dotnet_path,
help='Path to a custom dotnet'
)
def __is_valid_datetime(dt: str) -> str:
try:
datetime.strptime(dt, '%Y-%m-%dT%H:%M:%SZ')
return dt
except ValueError:
raise ArgumentTypeError(
'Datetime "{}" is in the wrong format.'.format(dt))
parser.add_argument(
'--cli-source-timestamp',
dest='cli_source_timestamp',
required=False,
type=__is_valid_datetime,
help='''Product timestamp of the soruces used to generate this build
(date-time from RFC 3339, Section 5.6.
"%%Y-%%m-%%dT%%H:%%M:%%SZ").'''
)
parser.add_argument('--upload-to-perflab-container',
dest="upload_to_perflab_container",
required=False,
help="Causes results files to be uploaded to perf container",
action='store_true'
)
# Generic arguments.
parser.add_argument(
'-q', '--quiet',
required=False,
default=False,
action='store_true',
help='Turns off verbosity.',
)
parser.add_argument(
'--build-only',
dest='build_only',
required=False,
default=False,
action='store_true',
help='Builds the benchmarks but does not run them.',
)
parser.add_argument(
'--run-only',
dest='run_only',
required=False,
default=False,
action='store_true',
help='Attempts to run the benchmarks without building.',
)
parser.add_argument(
'--resume',
dest='resume',
required=False,
default=False,
action='store_true',
help='Resume a previous run from existing benchmark results',
)
parser.add_argument(
'--skip-logger-setup',
dest='skip_logger_setup',
required=False,
default=False,
action='store_true',
help='Skips the logger setup, for cases when invoked by another script that already sets logging up',
)
parser.add_argument(
'--azure-feed-url',
dest='azure_feed_url',
required=False,
default=None,
help='Internal azure feed to fetch the build from',
)
parser.add_argument(
'--internal-build-key',
dest='internal_build_key',
required=False,
default=None,
help='Key used to fetch the build from an internal azure feed',
)
return parser
def __process_arguments(args: list):
parser = ArgumentParser(
description='Tool to run .NET micro benchmarks',
allow_abbrev=False,
# epilog=os.linesep.join(__doc__.splitlines())
epilog=__doc__,
)
add_arguments(parser)
return parser.parse_args(args)
def __main(args: list) -> int:
validate_supported_runtime()
args = __process_arguments(args)
verbose = not args.quiet
if not args.skip_logger_setup:
setup_loggers(verbose=verbose)
if not args.frameworks:
raise Exception("Framework version (-f) must be specified.")
target_framework_monikers = dotnet \
.FrameworkAction \
.get_target_framework_monikers(args.frameworks)
# Acquire necessary tools (dotnet)
if not args.dotnet_path:
init_tools(
architecture=args.architecture,
dotnet_versions=args.dotnet_versions,
target_framework_monikers=target_framework_monikers,
verbose=verbose,
azure_feed_url=args.azure_feed_url,
internal_build_key=args.internal_build_key
)
else:
dotnet.setup_dotnet(args.dotnet_path)
# WORKAROUND
# The MicroBenchmarks.csproj targets .NET Core 2.1, 3.0, 3.1 and 5.0
# to avoid a build failure when using older frameworks (error NETSDK1045:
# The current .NET SDK does not support targeting .NET Core $XYZ)
# we set the TFM to what the user has provided.
os.environ['PERFLAB_TARGET_FRAMEWORKS'] = ';'.join(
target_framework_monikers
)
# dotnet --info
dotnet.info(verbose=verbose)
bin_dir_to_use=micro_benchmarks.get_bin_dir_to_use(args.csprojfile, args.bin_directory, args.run_isolated)
BENCHMARKS_CSPROJ = dotnet.CSharpProject(
project=args.csprojfile,
bin_directory=bin_dir_to_use
)
if not args.run_only:
# .NET micro-benchmarks
# Restore and build micro-benchmarks
micro_benchmarks.build(
BENCHMARKS_CSPROJ,
args.configuration,
target_framework_monikers,
args.incremental,
args.run_isolated,
args.wasm,
verbose
)
# Run micro-benchmarks
if not args.build_only:
run_contains_errors = False
upload_container = UPLOAD_CONTAINER
try:
for framework in args.frameworks:
is_success = micro_benchmarks.run(
BENCHMARKS_CSPROJ,
args.configuration,
framework,
args.run_isolated,
verbose,
args
)
if not is_success:
getLogger().warning(f"Benchmark run for framework '{framework}' contains errors")
run_contains_errors = True
globpath = os.path.join(
get_artifacts_directory() if not args.bdn_artifacts else args.bdn_artifacts,
'**',
'*perf-lab-report.json')
except CalledProcessError:
getLogger().info("Run failure registered")
# rethrow the caught CalledProcessError exception so that the exception being bubbled up correctly.
raise
dotnet.shutdown_server(verbose)
if args.upload_to_perflab_container:
import upload
upload_code = upload.upload(globpath, upload_container, UPLOAD_QUEUE, UPLOAD_TOKEN_VAR, UPLOAD_STORAGE_URI)
getLogger().info("Benchmarks Upload Code: " + str(upload_code))
if upload_code != 0:
sys.exit(upload_code)
# TODO: Archive artifacts.
# Still return 1 so that the build pipeline shows failures even though there were some successful results
if run_contains_errors:
sys.exit(1)
if __name__ == "__main__":
__main(sys.argv[1:])