Skip to content

Commit 3db8327

Browse files
committed
Results from R50 GH action on macos-latest
1 parent d9a1ceb commit 3db8327

File tree

21 files changed

+2019
-0
lines changed

21 files changed

+2019
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
| Model | Scenario | Accuracy | Throughput | Latency (in ms) |
2+
|----------|------------|------------|--------------|-------------------|
3+
| resnet50 | offline | 76 | 14.857 | - |
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
*Check [MLC MLPerf docs](https://docs.mlcommons.org/inference) for more details.*
2+
3+
## Host platform
4+
5+
* OS version: macOS-15.6.1-arm64-arm-64bit
6+
* CPU version: arm
7+
* Python version: 3.12.10 (v3.12.10:0cc81280367, Apr 8 2025, 08:46:59) [Clang 13.0.0 (clang-1300.0.29.30)]
8+
* MLC version: unknown
9+
10+
## MLC Run Command
11+
12+
See [MLC installation guide](https://docs.mlcommons.org/inference/install/).
13+
14+
```bash
15+
pip install -U mlcflow
16+
17+
mlc rm cache -f
18+
19+
mlc pull repo amd@mlperf-automations --checkout=b8d0a537cd855702be1b6f86b9b16859ccf71e86
20+
21+
22+
```
23+
*Note that if you want to use the [latest automation recipes](https://docs.mlcommons.org/inference) for MLPerf,
24+
you should simply reload amd@mlperf-automations without checkout and clean MLC cache as follows:*
25+
26+
```bash
27+
mlc rm repo amd@mlperf-automations
28+
mlc pull repo amd@mlperf-automations
29+
mlc rm cache -f
30+
31+
```
32+
33+
## Results
34+
35+
Platform: gh_macos-latest_x86-reference-cpu-onnxruntime_v1.23.2-default_config
36+
37+
Model Precision: fp32
38+
39+
### Accuracy Results
40+
`acc`: `76.0`, Required accuracy for closed division `>= 75.6954`
41+
42+
### Performance Results
43+
`Samples per second`: `14.8567`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
python3 python/main.py --profile resnet50-onnxruntime --model "/Users/runner/MLC/repos/local/cache/download-file_ml-model-resnet_6437a8e0/resnet50_v1.onnx" --dataset-path /Users/runner/MLC/repos/local/cache/get-preprocessed-dataset-imagenet_6ae61b82 --output "/Users/runner/MLC/repos/local/cache/get-mlperf-inference-results-dir_08ba1fe7/test_results/gh_macos-latest x86-reference-cpu-onnxruntime-v1.23.2-default_config/resnet50/offline/accuracy" --scenario Offline --count 500 --threads 3 --user_conf /Users/runner/MLC/repos/amd@mlperf-automations/script/generate-mlperf-inference-user-conf/tmp/d8df9ad61414416d9d4a9897555296eb.conf --accuracy --use_preprocessed_dataset --cache_dir /Users/runner/MLC/repos/local/cache/get-preprocessed-dataset-imagenet_6ae61b82 --dataset-list /Users/runner/MLC/repos/local/cache/extract-file_imagenet-aux-da_60e68ed1/val.txt
2+
INFO:main:Namespace(dataset='imagenet', dataset_path='/Users/runner/MLC/repos/local/cache/get-preprocessed-dataset-imagenet_6ae61b82', dataset_list='/Users/runner/MLC/repos/local/cache/extract-file_imagenet-aux-da_60e68ed1/val.txt', data_format=None, profile='resnet50-onnxruntime', scenario='Offline', max_batchsize=32, model='/Users/runner/MLC/repos/local/cache/download-file_ml-model-resnet_6437a8e0/resnet50_v1.onnx', output='/Users/runner/MLC/repos/local/cache/get-mlperf-inference-results-dir_08ba1fe7/test_results/gh_macos-latest x86-reference-cpu-onnxruntime-v1.23.2-default_config/resnet50/offline/accuracy', inputs=None, outputs=['ArgMax:0'], backend='onnxruntime', device=None, model_name='resnet50', threads=3, qps=None, cache=0, cache_dir='/Users/runner/MLC/repos/local/cache/get-preprocessed-dataset-imagenet_6ae61b82', preprocessed_dir=None, use_preprocessed_dataset=True, accuracy=True, find_peak_performance=False, debug=False, user_conf='/Users/runner/MLC/repos/amd@mlperf-automations/script/generate-mlperf-inference-user-conf/tmp/d8df9ad61414416d9d4a9897555296eb.conf', audit_conf='audit.config', time=None, count=500, performance_sample_count=None, max_latency=None, samples_per_query=8)
3+
INFO:imagenet:Loading 500 preprocessed images using 3 threads
4+
INFO:imagenet:loaded 500 images, cache=0, already_preprocessed=True, took=0.0sec
5+
INFO:main:starting TestScenario.Offline
6+
TestScenario.Offline qps=0.54, mean=17.8974, time=29.747, acc=76.000%, queries=16, tiles=50.0:17.3977,80.0:26.7779,90.0:27.3380,95.0:27.9164,99.0:29.1626,99.9:29.4430
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"MLC_HOST_CPU_MEMSIZE": "7516192768",
3+
"MLC_HOST_CPU_TOTAL_PHYSICAL_CORES": "3",
4+
"MLC_HOST_CPU_TOTAL_CORES": "3",
5+
"MLC_HOST_CPU_L1I_CACHE_SIZE": "196608",
6+
"MLC_HOST_CPU_L2_CACHE_SIZE": "12582912",
7+
"MLC_HOST_CPU_SOCKETS": "1",
8+
"MLC_HOST_CPU_TOTAL_LOGICAL_CORES": "3",
9+
"MLC_HOST_CPU_THREADS_PER_CORE": "1",
10+
"MLC_HOST_CPU_PHYSICAL_CORES_PER_SOCKET": "3",
11+
"MLC_HOST_CPU_PHYSICAL_CORES_LIST": "0-2"
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"starting_weights_filename": "https://armi.in/files/resnet50_v1_op11/resnet50_v1.onnx",
3+
"retraining": "no",
4+
"input_data_types": "fp32",
5+
"weight_data_types": "fp32",
6+
"weight_transformations": "no"
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
graph TD
2+
app-mlperf-inference,d775cac873ee4231_(_python,_resnet50,_onnxruntime,_cpu,_test,_r5.1-dev_default,_offline_) --> detect,os
3+
get-sys-utils-mlc,bc90993277e84b8e --> detect,os
4+
app-mlperf-inference,d775cac873ee4231_(_python,_resnet50,_onnxruntime,_cpu,_test,_r5.1-dev_default,_offline_) --> get,python
5+
app-mlperf-inference,d775cac873ee4231_(_python,_resnet50,_onnxruntime,_cpu,_test,_r5.1-dev_default,_offline_) --> get,mlcommons,inference,src
6+
pull-git-repo,c23132ed65c4421d --> detect,os
7+
app-mlperf-inference,d775cac873ee4231_(_python,_resnet50,_onnxruntime,_cpu,_test,_r5.1-dev_default,_offline_) --> pull,git,repo
8+
get-mlperf-inference-utils,e341e5f86d8342e5 --> get,mlperf,inference,src
9+
app-mlperf-inference,d775cac873ee4231_(_python,_resnet50,_onnxruntime,_cpu,_test,_r5.1-dev_default,_offline_) --> get,mlperf,inference,utils
10+
download-file,9cdc8dc41aae437e_(_wget,_url.https://armi.in/files/caffe_ilsvrc12.tar.gz_) --> detect,os
11+
get-generic-sys-util,bb0393afa8404a11_(_md5sha1sum_) --> detect,os
12+
get-generic-sys-util,bb0393afa8404a11_(_md5sha1sum_) --> detect,sudo
13+
get-generic-sys-util,bb0393afa8404a11_(_install,_md5sha1sum_) --> detect,os
14+
get-generic-sys-util,bb0393afa8404a11_(_install,_md5sha1sum_) --> detect,sudo
15+
get-generic-sys-util,bb0393afa8404a11_(_md5sha1sum_) --> get,generic-sys-util,_install,_md5sha1sum
16+
download-file,9cdc8dc41aae437e_(_wget,_url.https://armi.in/files/caffe_ilsvrc12.tar.gz_) --> get,generic-sys-util,_md5sha1sum
17+
download-and-extract,c67e81a4ce2649f5_(_extract,_wget,_url.https://armi.in/files/caffe_ilsvrc12.tar.gz_) --> download,file,_wget,_url.https://armi.in/files/caffe_ilsvrc12.tar.gz
18+
extract-file,3f0b76219d004817_(_keep,_path./Users/runner/MLC/repos/local/cache/download-file_imagenet-aux-da_7f8f5f09/caffe_ilsvrc12.tar.gz_) --> detect,os
19+
extract-file,3f0b76219d004817_(_keep,_path./Users/runner/MLC/repos/local/cache/download-file_imagenet-aux-da_7f8f5f09/caffe_ilsvrc12.tar.gz_) --> get,generic-sys-util,_md5sha1sum
20+
download-and-extract,c67e81a4ce2649f5_(_extract,_wget,_url.https://armi.in/files/caffe_ilsvrc12.tar.gz_) --> extract,file,_keep,_path./Users/runner/MLC/repos/local/cache/download-file_imagenet-aux-da_7f8f5f09/caffe_ilsvrc12.tar.gz
21+
get-dataset-imagenet-aux,bb2c6dd8c8c64217 --> download-and-extract,_extract,_wget,_url.https://armi.in/files/caffe_ilsvrc12.tar.gz
22+
app-mlperf-inference,d775cac873ee4231_(_python,_resnet50,_onnxruntime,_cpu,_test,_r5.1-dev_default,_offline_) --> get,dataset-aux,imagenet-aux
23+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> detect,os
24+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> detect,cpu
25+
get-sys-utils-mlc,bc90993277e84b8e --> detect,os
26+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,python
27+
get-generic-python-lib,94b62a682bc44791_(_onnxruntime_) --> detect,os
28+
get-generic-python-lib,94b62a682bc44791_(_onnxruntime_) --> detect,cpu
29+
get-generic-python-lib,94b62a682bc44791_(_onnxruntime_) --> get,python3
30+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> detect,os
31+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> detect,cpu
32+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
33+
get-generic-python-lib,94b62a682bc44791_(_onnxruntime_) --> get,generic-python-lib,_pip
34+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,generic-python-lib,_onnxruntime
35+
download-file,9cdc8dc41aae437e_(_mlcutil,_url.https://armi.in/files/resnet50_v1_op11/resnet50_v1.onnx_) --> detect,os
36+
download-file,9cdc8dc41aae437e_(_mlcutil,_url.https://armi.in/files/resnet50_v1_op11/resnet50_v1.onnx_) --> get,generic-sys-util,_md5sha1sum
37+
download-and-extract,c67e81a4ce2649f5_(_url.https://armi.in/files/resnet50_v1_op11/resnet50_v1.onnx_) --> download,file,_mlcutil,_url.https://armi.in/files/resnet50_v1_op11/resnet50_v1.onnx
38+
get-ml-model-resnet50,56203e4e998b4bc0_(_fp32,_onnx_) --> download-and-extract,_url.https://armi.in/files/resnet50_v1_op11/resnet50_v1.onnx
39+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,ml-model,image-classification,resnet50,raw,_fp32,_onnx
40+
get-preprocessed-dataset-imagenet,f259d490bbaf45f5_(_-for.mobilenet,_NCHW_) --> get,python3
41+
get-dataset-imagenet-val,7afd58d287fe4f11_(_2012,_size.500_) --> detect,os
42+
download-file,9cdc8dc41aae437e_(_mlcutil,_url.http://cKnowledge.org/ai/data/ILSVRC2012_img_val_500.tar_) --> detect,os
43+
download-file,9cdc8dc41aae437e_(_mlcutil,_url.http://cKnowledge.org/ai/data/ILSVRC2012_img_val_500.tar_) --> get,generic-sys-util,_md5sha1sum
44+
download-and-extract,c67e81a4ce2649f5_(_extract,_url.http://cKnowledge.org/ai/data/ILSVRC2012_img_val_500.tar_) --> download,file,_mlcutil,_url.http://cKnowledge.org/ai/data/ILSVRC2012_img_val_500.tar
45+
extract-file,3f0b76219d004817_(_keep,_path./Users/runner/MLC/repos/local/cache/get-dataset-imagenet-val_36aa09f3/ILSVRC2012_img_val_500.tar_) --> detect,os
46+
extract-file,3f0b76219d004817_(_keep,_path./Users/runner/MLC/repos/local/cache/get-dataset-imagenet-val_36aa09f3/ILSVRC2012_img_val_500.tar_) --> get,generic-sys-util,_md5sha1sum
47+
download-and-extract,c67e81a4ce2649f5_(_extract,_url.http://cKnowledge.org/ai/data/ILSVRC2012_img_val_500.tar_) --> extract,file,_keep,_path./Users/runner/MLC/repos/local/cache/get-dataset-imagenet-val_36aa09f3/ILSVRC2012_img_val_500.tar
48+
get-dataset-imagenet-val,7afd58d287fe4f11_(_2012,_size.500_) --> download-and-extract,file,_extract,_url.http://cKnowledge.org/ai/data/ILSVRC2012_img_val_500.tar
49+
get-preprocessed-dataset-imagenet,f259d490bbaf45f5_(_-for.mobilenet,_NCHW_) --> get,dataset,image-classification,original,_2012,_size.500
50+
get-preprocessed-dataset-imagenet,f259d490bbaf45f5_(_-for.mobilenet,_NCHW_) --> get,dataset-aux,image-classification,imagenet-aux
51+
get-generic-python-lib,94b62a682bc44791_(_package.opencv-python-headless_) --> detect,os
52+
get-generic-python-lib,94b62a682bc44791_(_package.opencv-python-headless_) --> detect,cpu
53+
get-generic-python-lib,94b62a682bc44791_(_package.opencv-python-headless_) --> get,python3
54+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
55+
get-generic-python-lib,94b62a682bc44791_(_package.opencv-python-headless_) --> get,generic-python-lib,_pip
56+
get-preprocessed-dataset-imagenet,f259d490bbaf45f5_(_-for.mobilenet,_NCHW_) --> get,generic-python-lib,_package.opencv-python-headless
57+
get-generic-python-lib,94b62a682bc44791_(_pillow_) --> detect,os
58+
get-generic-python-lib,94b62a682bc44791_(_pillow_) --> detect,cpu
59+
get-generic-python-lib,94b62a682bc44791_(_pillow_) --> get,python3
60+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
61+
get-generic-python-lib,94b62a682bc44791_(_pillow_) --> get,generic-python-lib,_pip
62+
get-preprocessed-dataset-imagenet,f259d490bbaf45f5_(_-for.mobilenet,_NCHW_) --> get,generic-python-lib,_pillow
63+
get-preprocessed-dataset-imagenet,f259d490bbaf45f5_(_-for.mobilenet,_NCHW_) --> mlperf,mlcommons,inference,source,src
64+
get-generic-sys-util,bb0393afa8404a11_(_libgl_) --> detect,os
65+
get-generic-sys-util,bb0393afa8404a11_(_libgl_) --> detect,sudo
66+
get-generic-sys-util,bb0393afa8404a11_(_install,_libgl_) --> detect,os
67+
get-generic-sys-util,bb0393afa8404a11_(_install,_libgl_) --> detect,sudo
68+
get-generic-sys-util,bb0393afa8404a11_(_libgl_) --> get,generic-sys-util,_install,_libgl
69+
get-preprocessed-dataset-imagenet,f259d490bbaf45f5_(_-for.mobilenet,_NCHW_) --> get,generic-sys-util,_libgl
70+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,dataset,image-classification,imagenet,preprocessed,_-for.mobilenet,_NCHW
71+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,dataset-aux,image-classification,imagenet-aux
72+
generate-mlperf-inference-user-conf,3af4475745964b93_(_wg-inference_) --> detect,os
73+
generate-mlperf-inference-user-conf,3af4475745964b93_(_wg-inference_) --> detect,cpu
74+
generate-mlperf-inference-user-conf,3af4475745964b93_(_wg-inference_) --> get,python
75+
get-mlperf-inference-sut-configs,c2fbf72009e2445b --> get,cache,dir,_name.mlperf-inference-sut-configs
76+
generate-mlperf-inference-user-conf,3af4475745964b93_(_wg-inference_) --> get,sut,configs
77+
generate-mlperf-inference-user-conf,3af4475745964b93_(_wg-inference_) --> get,mlcommons,inference,src
78+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> generate,user-conf,mlperf,inference,_wg-inference
79+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> detect,os
80+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,python3
81+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,mlcommons,inference,src
82+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,compiler
83+
get-cmake,52bf974d791b4fc8 --> detect,cpu
84+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,cmake
85+
get-generic-python-lib,94b62a682bc44791_(_package.wheel_) --> detect,os
86+
get-generic-python-lib,94b62a682bc44791_(_package.wheel_) --> detect,cpu
87+
get-generic-python-lib,94b62a682bc44791_(_package.wheel_) --> get,python3
88+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
89+
get-generic-python-lib,94b62a682bc44791_(_package.wheel_) --> get,generic-python-lib,_pip
90+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,generic-python-lib,_package.wheel
91+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
92+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,generic-python-lib,_pip
93+
get-generic-python-lib,94b62a682bc44791_(_package.pybind11_) --> detect,os
94+
get-generic-python-lib,94b62a682bc44791_(_package.pybind11_) --> detect,cpu
95+
get-generic-python-lib,94b62a682bc44791_(_package.pybind11_) --> get,python3
96+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
97+
get-generic-python-lib,94b62a682bc44791_(_package.pybind11_) --> get,generic-python-lib,_pip
98+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,generic-python-lib,_package.pybind11
99+
get-generic-python-lib,94b62a682bc44791_(_package.setuptools_) --> detect,os
100+
get-generic-python-lib,94b62a682bc44791_(_package.setuptools_) --> detect,cpu
101+
get-generic-python-lib,94b62a682bc44791_(_package.setuptools_) --> get,python3
102+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
103+
get-generic-python-lib,94b62a682bc44791_(_package.setuptools_) --> get,generic-python-lib,_pip
104+
get-mlperf-inference-loadgen,64c3d98d0ba04950_(_wg-inference_) --> get,generic-python-lib,_package.setuptools
105+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,loadgen,_wg-inference
106+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,mlcommons,inference,src
107+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,mlcommons,inference,src
108+
get-generic-python-lib,94b62a682bc44791_(_package.psutil_) --> detect,os
109+
get-generic-python-lib,94b62a682bc44791_(_package.psutil_) --> detect,cpu
110+
get-generic-python-lib,94b62a682bc44791_(_package.psutil_) --> get,python3
111+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
112+
get-generic-python-lib,94b62a682bc44791_(_package.psutil_) --> get,generic-python-lib,_pip
113+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,generic-python-lib,_package.psutil
114+
get-generic-python-lib,94b62a682bc44791_(_opencv-python_) --> detect,os
115+
get-generic-python-lib,94b62a682bc44791_(_opencv-python_) --> detect,cpu
116+
get-generic-python-lib,94b62a682bc44791_(_opencv-python_) --> get,python3
117+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
118+
get-generic-python-lib,94b62a682bc44791_(_opencv-python_) --> get,generic-python-lib,_pip
119+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,generic-python-lib,_opencv-python
120+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,generic-sys-util,_libgl
121+
get-generic-python-lib,94b62a682bc44791_(_numpy_) --> detect,os
122+
get-generic-python-lib,94b62a682bc44791_(_numpy_) --> detect,cpu
123+
get-generic-python-lib,94b62a682bc44791_(_numpy_) --> get,python3
124+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
125+
get-generic-python-lib,94b62a682bc44791_(_numpy_) --> get,generic-python-lib,_pip
126+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,generic-python-lib,_numpy
127+
get-generic-python-lib,94b62a682bc44791_(_pycocotools_) --> detect,os
128+
get-generic-python-lib,94b62a682bc44791_(_pycocotools_) --> detect,cpu
129+
get-generic-python-lib,94b62a682bc44791_(_pycocotools_) --> get,python3
130+
get-generic-python-lib,94b62a682bc44791_(_pip_) --> get,python3
131+
get-generic-python-lib,94b62a682bc44791_(_pycocotools_) --> get,generic-python-lib,_pip
132+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> get,generic-python-lib,_pycocotools
133+
benchmark-program,19f369ef47084895 --> detect,cpu
134+
benchmark-program-mlperf,cfff0132a8aa4018 --> benchmark-program,program
135+
app-mlperf-inference-mlcommons-python,ff149e9781fc4b65_(_onnxruntime,_cpu,_offline,_resnet50,_fp32_) --> benchmark-mlperf
6.61 MB
Loading

0 commit comments

Comments
 (0)