forked from GATEOverflow/cm4mlops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_cm.yaml
1379 lines (1255 loc) · 30.8 KB
/
_cm.yaml
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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Identification of this CM script
alias: app-mlperf-inference
uid: d775cac873ee4231
automation_alias: script
automation_uid: 5b4e0237da074764
category: "Modular MLPerf inference benchmark pipeline"
developers: "[Arjun Suresh](https://www.linkedin.com/in/arjunsuresh), [Thomas Zhu](https://www.linkedin.com/in/hanwen-zhu-483614189), [Grigori Fursin](https://cKnowledge.org/gfursin)"
# User-friendly tags to find this CM script
tags:
- app
- vision
- language
- mlcommons
- mlperf
- inference
- generic
# Default environment
default_env:
CM_MLPERF_LOADGEN_MODE: accuracy
CM_MLPERF_LOADGEN_SCENARIO: Offline
CM_OUTPUT_FOLDER_NAME: test_results
CM_MLPERF_RUN_STYLE: test
CM_TEST_QUERY_COUNT: '10'
CM_MLPERF_QUANTIZATION: off
env:
CM_MLPERF_PRINT_SUMMARY: "no"
CM_MLPERF_MODEL_EQUAL_ISSUE_MODE: 'no'
# Map script inputs to environment variables
input_mapping:
count: CM_MLPERF_LOADGEN_QUERY_COUNT
docker: CM_RUN_DOCKER_CONTAINER
hw_name: CM_HW_NAME
imagenet_path: IMAGENET_PATH
max_batchsize: CM_MLPERF_LOADGEN_MAX_BATCHSIZE
mode: CM_MLPERF_LOADGEN_MODE
num_threads: CM_NUM_THREADS
output_dir: OUTPUT_BASE_DIR
power: CM_MLPERF_POWER
power_server: CM_MLPERF_POWER_SERVER_ADDRESS
ntp_server: CM_MLPERF_POWER_NTP_SERVER
max_amps: CM_MLPERF_POWER_MAX_AMPS
max_volts: CM_MLPERF_POWER_MAX_VOLTS
regenerate_files: CM_REGENERATE_MEASURE_FILES
rerun: CM_RERUN
scenario: CM_MLPERF_LOADGEN_SCENARIO
test_query_count: CM_TEST_QUERY_COUNT
clean: CM_MLPERF_CLEAN_SUBMISSION_DIR
target_qps: CM_MLPERF_LOADGEN_TARGET_QPS
target_latency: CM_MLPERF_LOADGEN_TARGET_LATENCY
offline_target_qps: CM_MLPERF_LOADGEN_OFFLINE_TARGET_QPS
server_target_qps: CM_MLPERF_LOADGEN_SERVER_TARGET_QPS
singlestream_target_latency: CM_MLPERF_LOADGEN_SINGLESTREAM_TARGET_LATENCY
multistream_target_latency: CM_MLPERF_LOADGEN_MULTISTREAM_TARGET_LATENCY
readme: CM_MLPERF_README
debug: CM_DEBUG_SCRIPT_BENCHMARK_PROGRAM
gpu_name: CM_NVIDIA_GPU_NAME
# Duplicate CM environment variables to the ones used in native apps
env_key_mappings:
CM_HOST_: HOST_
CM_ML_: ML_
CM_MLPERF_TVM: MLPERF_TVM
# Env keys which are exposed to higher level scripts
new_env_keys:
- CM_MLPERF_*
new_state_keys:
- app_mlperf_inference_*
- cm-mlperf-inference-results*
# Dependencies on other CM scripts
deps:
# Detect host OS features
- tags: detect,os
# Install system dependencies on a given host
- tags: get,sys-utils-cm
# Detect/install python
- tags: get,python
names:
- python
- python3
########################################################################
# Install MLPerf inference dependencies
# Download MLPerf inference source
- tags: get,mlcommons,inference,src
names:
- inference-src
- tags: get,mlperf,inference,utils
posthook_deps:
- tags: get,mlperf,sut,description #populate system meta information like framework
# Order of variations for documentation
variation_groups_order:
- implementation
- backend
- device
- model
- precision
- execution-mode
- reproducibility
# Variations to customize dependencies
variations:
# Implementation (cpp, reference/python, nvidia, tflite-cpp)
cpp:
group:
implementation
add_deps_recursive:
imagenet-accuracy-script:
tags: _int64
env:
CM_MLPERF_CPP: 'yes'
CM_MLPERF_IMPLEMENTATION: mlcommons_cpp
CM_IMAGENET_ACCURACY_DTYPE: float32
CM_OPENIMAGES_ACCURACY_DTYPE: float32
prehook_deps:
- names:
- cpp-mlperf-inference
- mlperf-inference-implementation
tags: app,mlperf,cpp,inference
skip_if_env:
CM_SKIP_RUN:
- yes
mil:
alias: cpp
mlcommons-cpp:
alias: cpp
ctuning-cpp-tflite:
alias: tflite-cpp
tflite-cpp:
default_variations:
backend: tflite
device: cpu
group:
implementation
add_deps_recursive:
imagenet-accuracy-script:
tags: _float32
env:
CM_MLPERF_TFLITE_CPP: 'yes'
CM_MLPERF_CPP: 'yes'
CM_MLPERF_IMPLEMENTATION: ctuning_cpp_tflite
CM_IMAGENET_ACCURACY_DTYPE: float32
prehook_deps:
- names:
- tflite-cpp-mlperf-inference
- mlperf-inference-implementation
tags: app,mlperf,tflite-cpp,inference
skip_if_env:
CM_SKIP_RUN:
- yes
reference:
group:
implementation
default:
true
default_variations:
reproducibility: r4.1_default
add_deps_recursive:
imagenet-accuracy-script:
tags: _float32
squad-accuracy-script:
tags: _float32
librispeech-accuracy-script:
tags: _int32
cnndm-accuracy-script:
tags: _int32
env:
CM_MLPERF_PYTHON: 'yes'
CM_MLPERF_IMPLEMENTATION: mlcommons_python
CM_SQUAD_ACCURACY_DTYPE: float32
CM_IMAGENET_ACCURACY_DTYPE: float32
CM_OPENIMAGES_ACCURACY_DTYPE: float32
CM_LIBRISPEECH_ACCURACY_DTYPE: float32
CM_CNNDM_ACCURACY_DTYPE: int32
prehook_deps:
- names:
- python-reference-mlperf-inference
- mlperf-inference-implementation
tags: app,mlperf,reference,inference
skip_if_env:
CM_SKIP_RUN:
- yes
python:
alias: reference
nvidia:
alias: nvidia-original
mlcommons-python:
alias: reference
reference,gptj_:
default_variations:
backend: pytorch
reference,sdxl_:
default_variations:
backend: pytorch
reference,dlrm-v2_:
default_variations:
backend: pytorch
reference,llama2-70b_:
default_variations:
backend: pytorch
reference,mixtral-8x7b:
default_variations:
backend: pytorch
reference,resnet50:
default_variations:
backend: onnxruntime
reference,retinanet:
default_variations:
backend: onnxruntime
reference,bert_:
default_variations:
backend: onnxruntime
nvidia-original,r4.1_default:
docker:
base_image: nvcr.io/nvidia/mlperf/mlperf-inference:mlpinf-v4.0-cuda12.2-cudnn8.9-x86_64-ubuntu20.04-public
nvidia-original,r4.1_default,gptj_:
docker:
deps:
- tags: get,ml-model,gptj,_nvidia,_fp8
env:
BUILD_TRTLLM: 1
nvidia-original:
docker:
interactive: True
extra_run_args: ' --runtime=nvidia --ulimit memlock=-1 --cap-add SYS_ADMIN --cap-add SYS_TIME --security-opt apparmor=unconfined --security-opt seccomp=unconfined'
base_image: nvcr.io/nvidia/mlperf/mlperf-inference:mlpinf-v3.1-cuda12.2-cudnn8.9-x86_64-ubuntu20.04-l4-public
os: "ubuntu"
os_version: "20.04"
deps:
- tags: get,mlperf,inference,nvidia,scratch,space
- tags: get,nvidia-docker
skip_if_env:
CM_SKIP_GET_NVIDIA_DOCKER:
- yes
mounts:
- "${{ CM_CUDNN_TAR_FILE_PATH }}:${{ CM_CUDNN_TAR_FILE_PATH }}"
- "${{ CM_TENSORRT_TAR_FILE_PATH }}:${{ CM_TENSORRT_TAR_FILE_PATH }}"
- "${{ CUDA_RUN_FILE_LOCAL_PATH }}:${{ CUDA_RUN_FILE_LOCAL_PATH }}"
- "${{ MLPERF_SCRATCH_PATH }}:${{ MLPERF_SCRATCH_PATH }}"
default_variations:
backend: tensorrt
device: cuda
reproducibility: r4.1_default
group:
implementation
add_deps_recursive:
imagenet-accuracy-script:
tags: _int32
squad-accuracy-script:
tags: _float16
librispeech-accuracy-script:
tags: _int8
cnndm-accuracy-script:
tags: _int32
env:
BUILD_TRTLLM: 0
CM_MLPERF_IMPLEMENTATION: nvidia
CM_SQUAD_ACCURACY_DTYPE: float16
CM_IMAGENET_ACCURACY_DTYPE: int32
CM_CNNDM_ACCURACY_DTYPE: int32
CM_LIBRISPEECH_ACCURACY_DTYPE: int8
prehook_deps:
- names:
- nvidia-original-mlperf-inference
- nvidia-harness
- mlperf-inference-implementation
tags: reproduce,mlperf,nvidia,inference,_run_harness
skip_if_env:
CM_SKIP_RUN:
- yes
update_tags_from_env_with_prefix:
"_gpu_memory." :
- CM_NVIDIA_GPU_MEMORY
update_tags_from_env:
- CM_NVIDIA_HARNESS_GPU_VARIATION
intel:
alias: intel-original
intel-original:
group:
implementation
docker:
interactive: True
extra_run_args: ' --privileged'
mounts:
- "${{ CM_MLPERF_INFERENCE_INTEL_GPTJ_INT8_MODEL_PATH }}:${{ CM_MLPERF_INFERENCE_INTEL_GPTJ_INT8_MODEL_PATH }}"
- "${{ GPTJ_CHECKPOINT_PATH }}:${{ GPTJ_CHECKPOINT_PATH }}"
skip_run_cmd: 'no'
shm_size: '32gb'
os: ubuntu
real_run: false
run: true
docker_input_mapping:
criteo_preprocessed_path: CRITEO_PREPROCESSED_PATH
dlrm_data_path: DLRM_DATA_PATH
intel_gptj_int8_model_path: CM_MLPERF_INFERENCE_INTEL_GPTJ_INT8_MODEL_PATH
default_variations:
device: cpu
backend: pytorch
reproducibility: r4.1_default
prehook_deps:
- names:
- intel
- intel-harness
- mlperf-inference-implementation
tags: reproduce,mlperf,inference,intel
skip_if_env:
CM_SKIP_RUN:
- yes
env:
CM_MLPERF_IMPLEMENTATION: intel
intel-original,gptj_:
adr:
cnndm-accuracy-script:
tags: _int32
redhat:
group:
implementation
default_variations:
device: cuda
backend: openshift
reproducibility: r4.0_default
prehook_deps:
- names:
- redhat
- redhat-harness
- mlperf-inference-implementation
tags: reproduce,mlperf,inference,redhat
skip_if_env:
CM_SKIP_RUN:
- yes
env:
CM_MLPERF_IMPLEMENTATION: redhat
docker:
interactive: True
qualcomm:
alias: kilt
kilt:
group:
implementation
default_variations:
device: qaic
backend: glow
reproducibility: r4.0_default
prehook_deps:
- names:
- kilt
- kilt-harness
- mlperf-inference-implementation
tags: reproduce,mlperf,inference,kilt
skip_if_env:
CM_SKIP_RUN:
- yes
env:
CM_MLPERF_IMPLEMENTATION: qualcomm
docker:
interactive: True
kilt,qaic,resnet50:
default_variations:
precision: uint8
kilt,qaic,retinanet:
default_variations:
precision: uint8
kilt,qaic,bert-99:
default_variations:
precision: uint8
kilt,qaic,bert-99.9:
default_variations:
precision: float16
intel-original,resnet50:
default_variations:
precision: int8
add_deps_recursive:
imagenet-accuracy-script:
tags: _int32
intel-original,retinanet:
default_variations:
precision: int8
intel-original,bert-99:
default_variations:
precision: int8
intel-original,bert-99.9:
default_variations:
precision: int8
intel-original,gptj-99:
default_variations:
precision: int4
intel-original,gptj-99.9:
default_variations:
precision: bfloat16
resnet50:
group:
model
default:
true
env:
CM_MODEL:
resnet50
deps:
- tags: get,dataset-aux,imagenet-aux
add_deps_recursive:
mlperf-inference-implementation:
tags: _resnet50
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
names:
- mlperf-accuracy-script
- imagenet-accuracy-script
tags: run,accuracy,mlperf,_imagenet
docker:
deps:
- tags: get,dataset,imagenet,validation,original,_full
names:
- imagenet-original
- dataset-original
retinanet:
group:
model
env:
CM_MODEL:
retinanet
add_deps_recursive:
mlperf-inference-implementation:
tags: _retinanet
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
names:
- mlperf-accuracy-script
- openimages-accuracy-script
tags: run,accuracy,mlperf,_openimages
3d-unet-99:
group:
model
base:
- 3d-unet_
env:
CM_MODEL:
3d-unet-99
add_deps_recursive:
mlperf-inference-implementation:
tags: _3d-unet-99
3d-unet-99.9:
group:
model
base:
- 3d-unet_
env:
CM_MODEL:
3d-unet-99.9
add_deps_recursive:
mlperf-inference-implementation:
tags: _3d-unet-99.9
3d-unet_:
env:
CM_MLPERF_MODEL_EQUAL_ISSUE_MODE: 'yes'
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
skip_if_env:
CM_MLPERF_IMPLEMENTATION:
- nvidia
names:
- mlperf-accuracy-script
- 3d-unet-accuracy-script
tags: run,accuracy,mlperf,_kits19,_int8
sdxl:
group:
model
env:
CM_MODEL:
stable-diffusion-xl
default_variations:
precision: float16
backend: pytorch
device: cuda
add_deps_recursive:
mlperf-inference-implementation:
tags: _sdxl
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
skip_if_env:
CM_MLPERF_IMPLEMENTATION:
- nvidia
names:
- mlperf-accuracy-script
- coco2014-accuracy-script
tags: run,accuracy,mlperf,_coco2014
llama2-70b_:
env:
CM_MLPERF_MODEL_EQUAL_ISSUE_MODE: 'yes'
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
skip_if_env:
CM_MLPERF_IMPLEMENTATION:
- nvidia
names:
- mlperf-accuracy-script
- open-orca-accuracy-script
tags: run,accuracy,mlperf,_open-orca,_int32
llama2-70b-99:
group:
model
base:
- llama2-70b_
env:
CM_MODEL:
llama2-70b-99
add_deps_recursive:
mlperf-inference-implementation:
tags: _llama2-70b-99
llama2-70b-99.9:
group:
model
base:
- llama2-70b_
env:
CM_MODEL:
llama2-70b-99.9
add_deps_recursive:
mlperf-inference-implementation:
tags: _llama2-70b-99.9
mixtral-8x7b:
group:
model
base:
- mixtral-8x7b
env:
CM_MODEL:
mixtral-8x7b
add_deps_recursive:
mlperf-inference-implementation:
tags: _mixtral-8x7b
env:
CM_MLPERF_MODEL_EQUAL_ISSUE_MODE: 'yes'
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
skip_if_env:
CM_MLPERF_IMPLEMENTATION:
- nvidia
names:
- mlperf-accuracy-script
- openorca-gsm8k-mbxp-combined-accuracy-script
tags: run,accuracy,mlperf,_openorca-gsm8k-mbxp,_int32
rnnt:
group:
model
env:
CM_MODEL:
rnnt
add_deps_recursive:
mlperf-inference-implementation:
tags: _rnnt
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
skip_if_env:
CM_MLPERF_IMPLEMENTATION:
- nvidia
names:
- mlperf-accuracy-script
- librispeech-accuracy-script
tags: run,accuracy,mlperf,_librispeech
rnnt,reference:
env:
CM_MLPERF_PRINT_SUMMARY: "no"
gptj-99:
group:
model
base:
- gptj_
env:
CM_MODEL:
gptj-99
add_deps_recursive:
mlperf-inference-implementation:
tags: _gptj-99
gptj-99.9:
group:
model
base:
- gptj_
env:
CM_MODEL:
gptj-99.9
add_deps_recursive:
mlperf-inference-implementation:
tags: _gptj-99.9
gptj:
alias: gptj_
gptj_:
docker:
deps:
- tags: get,ml-model,gptj,raw
env:
CM_MLPERF_MODEL_EQUAL_ISSUE_MODE: 'yes'
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
names:
- cnndm-accuracy-script
- mlperf-accuracy-script
tags: run,accuracy,mlperf,_cnndm
bert_:
deps:
- skip_if_env:
CM_DATASET_SQUAD_VAL_PATH: "on"
tags: get,dataset,squad,language-processing
- skip_if_env:
CM_ML_MODEL_BERT_VOCAB_FILE_WITH_PATH: "on"
tags: get,dataset-aux,squad-vocab
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
names:
- squad-accuracy-script
- mlperf-accuracy-script
tags: run,accuracy,mlperf,_squad
add_deps_recursive:
inference-src:
tags: _deeplearningexamples
bert-99:
group:
model
base:
- bert_
env:
CM_MODEL:
bert-99
add_deps_recursive:
mlperf-inference-implementation:
tags: _bert-99
bert-99.9:
group:
model
base:
- bert_
env:
CM_MODEL:
bert-99.9
add_deps_recursive:
mlperf-inference-implementation:
tags: _bert-99.9
dlrm_:
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
names:
- terabyte-accuracy-script
- mlperf-accuracy-script
tags: run,accuracy,mlperf,_terabyte,_float32
dlrm-v2-99:
group:
model
base:
- dlrm_
env:
CM_MODEL:
dlrm-v2-99
add_deps_recursive:
mlperf-inference-implementation:
tags: _dlrm-v2-99
dlrm-v2-99.9:
group:
model
base:
- dlrm_
env:
CM_MODEL:
dlrm-v2-99.9
add_deps_recursive:
mlperf-inference-implementation:
tags: _dlrm-v2-99.9
mobilenet:
group:
model
env:
CM_MODEL:
mobilenet
add_deps_recursive:
mlperf-inference-implementation:
tags: _mobilenet
deps:
- tags: get,dataset-aux,imagenet-aux
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
names:
- mlperf-accuracy-script
- imagenet-accuracy-script
tags: run,accuracy,mlperf,_imagenet
efficientnet:
group:
model
env:
CM_MODEL:
efficientnet
add_deps_recursive:
mlperf-inference-implementation:
tags: _efficientnet
deps:
- tags: get,dataset-aux,imagenet-aux
posthook_deps:
- enable_if_env:
CM_MLPERF_LOADGEN_MODE:
- accuracy
- all
CM_MLPERF_ACCURACY_RESULTS_DIR:
- 'on'
names:
- mlperf-accuracy-script
- imagenet-accuracy-script
tags: run,accuracy,mlperf,_imagenet
onnxruntime:
group: backend
env:
CM_MLPERF_BACKEND:
onnxruntime
add_deps_recursive:
mlperf-inference-implementation:
tags: _onnxruntime
tensorrt:
group: backend
env:
CM_MLPERF_BACKEND:
tensorrt
add_deps_recursive:
mlperf-inference-implementation:
tags: _tensorrt
tf:
group: backend
env:
CM_MLPERF_BACKEND:
tf
add_deps_recursive:
mlperf-inference-implementation:
tags: _tf
pytorch:
group: backend
env:
CM_MLPERF_BACKEND:
pytorch
add_deps_recursive:
mlperf-inference-implementation:
tags: _pytorch
openshift:
group: backend
env:
CM_MLPERF_BACKEND:
openshift
add_deps_recursive:
mlperf-inference-implementation:
tags: _openshift
ncnn:
group: backend
env:
CM_MLPERF_BACKEND:
ncnn
add_deps_recursive:
mlperf-inference-implementation:
tags: _ncnn
deepsparse:
group: backend
default_variations:
precision: int8
env:
CM_MLPERF_BACKEND:
deepsparse
add_deps_recursive:
mlperf-inference-implementation:
tags: _deepsparse
tflite:
group: backend
env:
CM_MLPERF_BACKEND: tflite
add_deps_recursive:
mlperf-inference-implementation:
tags: _tflite
glow:
group: backend
env:
CM_MLPERF_BACKEND: glow
add_deps_recursive:
mlperf-inference-implementation:
tags: _glow
tvm-onnx:
group: backend
base:
- batch_size.1
env:
CM_MLPERF_BACKEND: tvm-onnx
add_deps_recursive:
mlperf-inference-implementation:
tags: _tvm-onnx
tvm-pytorch:
group: backend
base:
- batch_size.1
env:
CM_MLPERF_BACKEND: tvm-pytorch
add_deps_recursive:
mlperf-inference-implementation:
tags: _tvm-pytorch
tvm-tflite:
group: backend
base:
- batch_size.1
env:
CM_MLPERF_BACKEND: tvm-tflite
add_deps_recursive:
mlperf-inference-implementation:
tags: _tvm-tflite
ray:
group: backend
env:
CM_MLPERF_BACKEND:
ray
add_deps_recursive:
mlperf-inference-implementation:
tags: _ray
cpu:
group:
device
default:
True
env:
CM_MLPERF_DEVICE:
cpu
add_deps_recursive:
mlperf-inference-implementation:
tags: _cpu
cuda,reference:
docker:
base_image: nvcr.io/nvidia/pytorch:24.03-py3
cuda:
docker:
all_gpus: 'yes'
deps:
- tags: get,nvidia-docker
group:
device
env:
CM_MLPERF_DEVICE:
gpu
add_deps_recursive:
mlperf-inference-implementation:
tags: _cuda
deps:
- tags: get,cuda-devices
skip_if_env:
CM_CUDA_DEVICE_PROP_GLOBAL_MEMORY:
- "yes"
- "on"
rocm:
docker:
all_gpus: 'yes'
group:
device