preprocess_submission.py 26.5 KB
Newer Older
yangzhong's avatar
yangzhong committed
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
331
332
333
334
335
336
337
338
339
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
"""
Tool to infer scenario results and cleanup submission tree
"""

import argparse
import logging
import os
import sys
import shutil
import json

import submission_checker as checker


logging.basicConfig(level=logging.INFO)
log = logging.getLogger("main")


HELP_TEXT = """
pick an existing submission directory and create a brand new submission tree with
    possible results being inferred from already measured ones. The original submission directory is not modified.

    cd tools/submission
    python3 preprocess_submission.py --input ORIGINAL_SUBMISSION_DIRECTORY --submitter MY_ORG \\
            --output NEW_SUBMISSION_DIRECTORY

"""


def get_args():
    """Parse commandline."""
    parser = argparse.ArgumentParser(description="Infer scenario results",
                                     formatter_class=argparse.RawDescriptionHelpFormatter, epilog=HELP_TEXT)
    parser.add_argument(
        "--input",
        required=True,
        help="orignal submission directory")
    parser.add_argument("--output", help="new submission directory")
    parser.add_argument("--noinfer-low-accuracy-results",
                        help="do not infer low accuracy results if a high accuracy result is present",
                        default=False, action="store_true")
    parser.add_argument("--nodelete-empty-dirs",
                        help="do not delete empty dirs in submission tree",
                        default=False, action="store_true")
    parser.add_argument("--nomove-failed-to-open",
                        help="do not move failed results to open division",
                        default=False, action="store_true")
    parser.add_argument("--nodelete-failed",
                        help="do not delete failed results (submission checker will fail)",
                        default=False, action="store_true")

    parser.add_argument(
        "--version",
        default="v5.0",
        choices=list(checker.MODEL_CONFIG.keys()),
        help="mlperf version",
    )
    parser.add_argument("--submitter", help="filter to submitter")
    parser.add_argument(
        "--extra-model-benchmark-map",
        help="File containing extra custom model mapping.\
              It is assumed to be inside the folder open/<submitter>",
        default="model_mapping.json")

    args = parser.parse_args()
    if not args.output:
        parser.print_help()
        sys.exit(1)

    return args


def list_dir(*path):
    """
    Filters only directories from a given path
    """
    path = os.path.join(*path)
    return next(os.walk(path))[1]


def delete_empty_dirs(src):
    """
    Deletes any empty directory in the src tree
    """
    if not os.path.isdir(src):
        return False
    if all([delete_empty_dirs(os.path.join(src, file))
           for file in os.listdir(src)]):
        log.info("Removing empty dir: (%s)", src)
        os.rmdir(src)
        return True

    return False


def copy_submission_dir(src, dst, filter_submitter):
    """
    Copies the submission tree to output directory for processing
    """
    for division in next(os.walk(src))[1]:
        if division not in ["closed", "open", "network"]:
            continue
        for submitter in next(os.walk(os.path.join(src, division)))[1]:
            if filter_submitter and submitter != filter_submitter:
                continue
            shutil.copytree(
                os.path.join(src, division, submitter),
                os.path.join(dst, division, submitter),
            )


def change_first_directory_to_open(path):
    # Split the path into components
    parts = path.split(os.path.sep)

    # Modify the first directory in the path
    for i, part in enumerate(parts):
        if part:  # Skip empty parts to handle initial slashes in absolute paths
            parts[i] = "open"
            break

    # Join the parts back into a modified path
    modified_path = os.path.join(*parts)
    return modified_path


def change_folder_name_in_path(path, old_folder_name, new_folder_name):
    # Split the path into components
    path_parts = path.split(os.path.sep)

    # Replace the old folder name with the new one
    path_parts = [new_folder_name if part ==
                  old_folder_name else part for part in path_parts]

    # Reassemble the path
    new_path = os.path.join(*path_parts)
    return new_path


def clean_model_dir(model_results_dir):
    model_measurements_dir = change_folder_name_in_path(
        model_results_dir, "results", "measurements")
    model_compliance_dir = change_folder_name_in_path(
        model_results_dir, "results", "compliance")

    print(f"rmtree {model_results_dir}")
    if os.path.exists(model_results_dir):
        shutil.rmtree(model_results_dir)
    if os.path.exists(model_measurements_dir):
        shutil.rmtree(model_measurements_dir)
    if os.path.exists(model_compliance_dir):
        shutil.rmtree(model_compliance_dir)

    sut_results_dir = os.path.dirname(model_results_dir)
    if os.path.exists(sut_results_dir) and not os.listdir(sut_results_dir):
        # clean sut dir
        sut = os.path.basename(sut_results_dir)
        log.info(
            f"No benchmark results remaining for {sut}. rmtree {sut_results_dir}")
        if os.path.exists(sut_results_dir):
            shutil.rmtree(sut_results_dir)
        if os.path.exists(os.path.dirname(model_measurements_dir)):
            shutil.rmtree(os.path.dirname(model_measurements_dir))
        if os.path.exists(os.path.dirname(model_compliance_dir)):
            shutil.rmtree(os.path.dirname(model_compliance_dir))


def clean_invalid_results(args, log_path, config, system_desc, system_json,
                          model, mlperf_model, division, system_id_json, is_closed_or_network):
    # cleanup invalid results
    for scenario in list_dir(log_path, system_desc, model):
        scenario_fixed = checker.SCENARIO_MAPPING.get(
            scenario, scenario)
        scenario_path = os.path.join(log_path, system_desc, model, scenario)
        if not os.path.exists(
                scenario_path):  # can happen since scenario results may be moved to open division on failure
            continue
        acc_path = os.path.join(scenario_path, "accuracy")
        try:
            accuracy_is_valid, acc = checker.check_accuracy_dir(
                config,
                mlperf_model,
                acc_path,
                is_closed_or_network,
            )
        except Exception as e:
            log.warning(e)
            accuracy_is_valid = False
        perf_path = os.path.join(scenario_path, "performance", "run_1")
        try:
            perf_is_valid, r, is_inferred = checker.check_performance_dir(
                config,
                mlperf_model,
                perf_path,
                scenario_fixed,
                division,
                system_json,
            )
        except Exception as e:
            log.warning(e)
            perf_is_valid = False
        compliance_is_valid = False
        if perf_is_valid:
            power_path = os.path.join(scenario_path, "performance", "power")
            has_power = os.path.exists(power_path)
            if has_power:
                ranging_path = os.path.join(
                    scenario_path, "performance", "ranging")
                try:
                    ranging_r = checker.get_performance_metric(
                        config,
                        mlperf_model,
                        ranging_path,
                        scenario_fixed,
                    )
                    (
                        power_is_valid,
                        power_metric,
                        power_efficiency,
                    ) = check_power_dir(
                        power_path,
                        ranging_path,
                        perf_path,
                        scenario_fixed,
                        ranging_r,
                        r,
                        config,
                    )
                except Exception as e:
                    power_is_valid = False
                if not power_is_valid:
                    log.warning(
                        f"Power result is invalid for {system_desc}: {model} {scenario} scenario in {division} division. Removing...")
                    if os.path.exists(power_path):
                        shutil.rmtree(power_path)
                    if os.path.exists(ranging_path):
                        shutil.rmtree(ranging_path)
                    spl_path = os.path.join(perf_path, "spl.txt")
                    if os.path.exists(spl_path):
                        os.remove(spl_path)

            compliance_is_valid = True
            if is_closed_or_network:
                compliance_dir = change_folder_name_in_path(
                    scenario_path, "results", "compliance")
                if not checker.check_compliance_dir(
                    compliance_dir,
                    mlperf_model,
                    scenario_fixed,
                    config,
                    division,
                    system_json,
                    os.path.dirname(scenario_path)
                ):
                    compliance_is_valid = False

        is_valid = accuracy_is_valid and perf_is_valid and compliance_is_valid
        if not is_valid:  # Remove the scenario result
            scenario_measurements_path = change_folder_name_in_path(
                scenario_path, "results", "measurements")
            if scenario in [
                    "Offline", "MultiStream"] and (not accuracy_is_valid or not perf_is_valid) or division == "open":  # they can be inferred
                scenario_compliance_path = change_folder_name_in_path(
                    scenario_path, "results", "compliance")
                log.warning(
                    f"{scenario} scenario result is invalid for {system_desc}: {model} in {division} division. Accuracy: {accuracy_is_valid}, Performance: {perf_is_valid}. Removing...")
                if os.path.exists(scenario_path):
                    shutil.rmtree(scenario_path)
                if os.path.exists(scenario_measurements_path):
                    shutil.rmtree(scenario_measurements_path)
                if os.path.exists(scenario_compliance_path):
                    shutil.rmtree(scenario_compliance_path)
            elif division in ["closed", "network"]:
                model_results_path = os.path.dirname(scenario_path)
                model_measurements_path = change_folder_name_in_path(
                    model_results_path, "results", "measurements")
                model_compliance_path = change_folder_name_in_path(
                    model_results_path, "results", "compliance")
                model_code_path = os.path.join(
                    change_folder_name_in_path(
                        log_path, "results", "code"), model)
                if not args.nomove_failed_to_open:
                    target_code_path = change_first_directory_to_open(
                        model_code_path)
                    target_results_path = change_first_directory_to_open(
                        model_results_path)
                    target_measurements_path = change_first_directory_to_open(
                        model_measurements_path)
                    target_system_json = change_first_directory_to_open(
                        system_id_json)
                    # if only accuracy or compliance failed, result is valid
                    # for open
                    if not perf_is_valid:
                        log.warning(
                            f"{scenario} scenario result is invalid for {system_desc}: {model} in {division} and open divisions. Accuracy: {accuracy_is_valid}, Performance: {perf_is_valid}. Removing it...")
                        if os.path.exists(scenario_path):
                            shutil.rmtree(scenario_path)
                        scenario_measurements_path = change_folder_name_in_path(
                            scenario_path, "results", "measurements")
                        if os.path.exists(scenario_measurements_path):
                            shutil.rmtree(scenario_measurements_path)
                    if not os.path.exists(target_results_path):
                        shutil.copytree(
                            model_results_path, target_results_path)
                    if not os.path.exists(target_measurements_path):
                        shutil.copytree(
                            model_measurements_path,
                            target_measurements_path)
                    if not os.path.exists(target_code_path):
                        shutil.copytree(model_code_path, target_code_path)
                    if not os.path.exists(target_system_json):
                        dst_dir = os.path.dirname(target_system_json)
                        if not os.path.exists(dst_dir):
                            os.makedirs(dst_dir, exist_ok=True)
                        import copy
                        target_system_json_contents = copy.deepcopy(
                            system_json)
                        target_system_json_contents['division'] = 'open'
                        with open(target_system_json, 'w') as f:
                            json.dump(target_system_json_contents, f, indent=2)
                    if perf_is_valid:
                        log.warning(f"{scenario} scenario result is invalid for {system_desc}: {model} in {division} division. Accuracy: {accuracy_is_valid}, Performance: {perf_is_valid}. Compliance: {compliance_is_valid}. Moving {model} results to open...")
                    else:
                        log.warning(f"{scenario} scenario result is invalid for {system_desc}: {model} in {division} division. Accuracy: {accuracy_is_valid}, Performance: {perf_is_valid}. Compliance: {compliance_is_valid}. Moving other scenario results of {model} to open...")
                else:
                    log.warning(f"{scenario} scenario result is invalid for {system_desc}: {model} in {division} division. Accuracy: {accuracy_is_valid}, Performance: {perf_is_valid}. Removing all dependent scenario results...")
                clean_model_dir(model_results_path)
            else:  # delete this result
                # delete other scenario results too
                if os.path.exists(scenario_path):
                    shutil.rmtree(scenario_path)
                # delete other scenario results too
                if os.path.exists(scenario_measurements_path):
                    shutil.rmtree(scenario_measurements_path)
                log.warning(
                    f"{scenario} scenario result is invalid for {system_desc}: {model} in {division} division. Accuracy: {accuracy_is_valid}, Performance: {perf_is_valid}. Removing it...")


def infer_scenario_results(args, config):
    """Walk result dir and check for singlestream (SS) folders and \
            corresponding offline and multistream (MS) ones.
       If SS exists and offline and MS are not existing, \
               SS folder is copied to MS and offline folders.
       If SS and offline exists and MS is not existing, MS is inferred from SS.
       If SS and MS exists and offline is not existing, offline is inferred from MS.
    """
    filter_submitter = args.submitter
    noinfer_low_accuracy_results = args.noinfer_low_accuracy_results

    for division in sorted(
            list_dir(".")):  # process closed and network before open
        # we are looking at ./$division, ie ./closed
        if division not in ["closed", "open", "network"]:
            continue
        is_closed_or_network = division in ["closed", "network"]

        for submitter in list_dir(division):
            # we are looking at ./$division/$submitter, ie ./closed/mlperf_org
            if filter_submitter and submitter != filter_submitter:
                continue

            # process results
            for directory in ["results", "measurements"] + \
                    (["compliance"] if division == "closed" else []):

                log_path = os.path.join(division, submitter, directory)
                if not os.path.exists(log_path):
                    log.error("no submission in %s", log_path)
                    continue

                for system_desc in list_dir(log_path):
                    system_id_json = os.path.join(division, submitter, "systems",
                                                  system_desc + ".json")
                    if not os.path.exists(system_id_json):
                        log.error("no system_desc for %s/%s/%s", division, submitter,
                                  system_desc)
                        continue

                    with open(system_id_json) as system_info:
                        system_json = json.load(system_info)
                    system_type = system_json.get("system_type")
                    valid_system_types = ["datacenter", "edge",
                                          "datacenter,edge", "edge,datacenter"]
                    if system_type not in valid_system_types:
                        log.error("Division %s, submitter %s, "
                                  "system %s has invalid system type (%s)",
                                  division, submitter, system_id_json, system_type)

                    config.set_type(system_type)

                    for model in list_dir(log_path, system_desc):
                        extra_model_mapping = None
                        if division == "open":
                            model_mapping_path = f"{division}/{submitter}/{config.extra_model_benchmark_map}"
                            if os.path.exists(model_mapping_path):
                                with open(model_mapping_path) as fp:
                                    extra_model_mapping = json.load(fp)

                        mlperf_model = config.get_mlperf_model(
                            model, extra_model_mapping)
                        if not mlperf_model:
                            log.error("Division %s, submitter %s, system %s has "
                                      "invalid model (%s)", division, submitter,
                                      system_id_json, model)
                            continue

                        if mlperf_model not in config.required:
                            log.warning(f"""Division {division}, submitter {submitter}, system {system_id_json} has invalid """
                                        f"""MLPerf model ({mlperf_model}) corresponding to given model ({model}). """
                                        f"""Valid ones for MLPerf inference version ({config.version}) in ({system_type}) """
                                        f"""category are [{config.required.keys()}]. Removing...""")
                            clean_model_dir(os.path.join(
                                log_path, system_desc, model))
                            continue

                        required_scenarios = config.get_required(mlperf_model)
                        all_scenarios = set(
                            list(required_scenarios)
                            + list(config.get_optional(mlperf_model))
                        )

                        if directory == "results":
                            clean_invalid_results(
                                args,
                                log_path,
                                config,
                                system_desc,
                                system_json,
                                model,
                                mlperf_model,
                                division,
                                system_id_json,
                                is_closed_or_network)
                            if not os.path.exists(os.path.join(
                                    log_path, system_desc, model)):
                                continue

                        for scenario in list_dir(log_path, system_desc, model):

                            scenario_path = os.path.join(
                                log_path, system_desc, model, scenario)

                            if scenario.lower() == "singlestream":
                                tobeinferredpaths = []
                                offline_scenario_path = os.path.join(log_path, system_desc,
                                                                     model, "offline")
                                multistream_scenario_path = os.path.join(log_path, system_desc,
                                                                         model, "multistream")
                                if not os.path.exists(multistream_scenario_path) and \
                                        not os.path.exists(offline_scenario_path):

                                    # infer both the scenarios from SS
                                    tobeinferredpaths = [offline_scenario_path]
                                    if "MultiStream" in all_scenarios:
                                        tobeinferredpaths.append(
                                            multistream_scenario_path)

                                    for tobeinferredpath in tobeinferredpaths:
                                        inferred_scenario = os.path.basename(
                                            tobeinferredpath)
                                        log.info("Division %s, submitter %s, system %s, "
                                                 "model %s: \
                                                inferring %s results from %s",
                                                 division, submitter, system_desc, model,
                                                 inferred_scenario, "singlestream")
                                        shutil.copytree(
                                            scenario_path, tobeinferredpath)

                                elif not os.path.exists(multistream_scenario_path) and \
                                        "MultiStream" in all_scenarios:
                                    # infer MS from SS
                                    for tobeinferredpath in [
                                            multistream_scenario_path]:
                                        log.info("Division %s, submitter %s, system %s, model %s: \
                                                inferring %s results from %s", division, submitter,
                                                 system_desc, model, "multistream", "singlestream")
                                        shutil.copytree(
                                            scenario_path, multistream_scenario_path)
                                elif not os.path.exists(offline_scenario_path):
                                    '''we have both MS and SS results. Inferring from MS is \
                                            expected to be better \
                                            '''
                                    pass

                            elif scenario.lower() == "multistream":
                                offline_scenario_path = os.path.join(log_path, system_desc,
                                                                     model, "offline")
                                '''Need to check if MS is indeed a measured result and not infeered.\
                                        But if MS is indeed inferred from SS, offline scenario will also be \
                                        inferred already by the inferring code above \
                                        '''
                                for tobeinferredpath in [
                                        offline_scenario_path]:
                                    if not os.path.exists(tobeinferredpath):
                                        log.info("Division %s, submitter %s, system %s, model %s: \
                                                inferring %s results from %s", division, submitter,
                                                 system_desc, model, "offline", "multistream")

                                        shutil.copytree(
                                            scenario_path, tobeinferredpath)

                if not noinfer_low_accuracy_results:
                    for system_desc in list_dir(log_path):
                        for model in list_dir(log_path, system_desc):
                            if model.endswith("-99.9"):
                                low_accuracy_model = model[:-2]
                                if low_accuracy_model not in config.required:
                                    continue
                                high_accuracy_model_path = os.path.join(log_path,
                                                                        system_desc, model)
                                low_accuracy_model_path = os.path.join(log_path, system_desc,
                                                                       low_accuracy_model)
                                if not os.path.exists(low_accuracy_model_path):
                                    log.info("Division %s, submitter %s, system %s: \
                                            copying %s results to %s", division, submitter,
                                             system_desc, model, low_accuracy_model)

                                    shutil.copytree(high_accuracy_model_path,
                                                    low_accuracy_model_path)
                                high_accuracy_model_code_path = os.path.join(log_path, "..",
                                                                             "code", model)
                                low_accuracy_model_code_path = os.path.join(log_path, "..",
                                                                            "code", low_accuracy_model)
                                if not os.path.exists(
                                        low_accuracy_model_code_path):
                                    shutil.copytree(high_accuracy_model_code_path,
                                                    low_accuracy_model_code_path)


def main():
    """
    Tool to infer scenario results and cleanup submission tree
    """
    args = get_args()

    src_dir = args.input

    if os.path.exists(args.output):
        log.error(f"output directory {args.output} already exists")
        sys.exit(1)
    os.makedirs(args.output)
    copy_submission_dir(args.input, args.output, args.submitter)
    src_dir = args.output

    config = checker.Config(
        args.version,
        args.extra_model_benchmark_map)

    if not args.nodelete_empty_dirs:
        delete_empty_dirs(os.path.join(src_dir))

    run_dir = os.getcwd()
    os.chdir(src_dir)

    infer_scenario_results(args, config)
    os.chdir(run_dir)

    if not args.nodelete_empty_dirs:
        delete_empty_dirs(os.path.join(src_dir))

    return 0


if __name__ == "__main__":
    sys.exit(main())