forked from ORNL/HeCBench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmarks.yaml
More file actions
3030 lines (2525 loc) · 64.6 KB
/
benchmarks.yaml
File metadata and controls
3030 lines (2525 loc) · 64.6 KB
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
# HeCBench Benchmark Metadata
#
# Auto-generated from subset.json and CMakeLists.txt files
# Manual edits may be required for accuracy
#
# Format:
# benchmark_name:
# categories: [list of categories]
# description: Brief description
# models: [available implementations]
# test:
# regex: Regular expression to match success output
# args: [list of command-line arguments for testing]
# timeout: Timeout in seconds (default: 300)
#
accuracy:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of accuracy kernel: )([0-9.+-e]+)(?: \(us\))'
args: ["8192", "10000", "10", "100"]
timeout: 300
ace:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Offload time: )([0-9.+-e]+)(?: \(ms\))'
args: ["100"]
timeout: 300
adam:
categories: [ml]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(ms\))'
args: ["10000", "200", "100"]
timeout: 300
adamw:
categories: [ml]
models: [cuda, hip, omp, sycl]
# No test metadata available
addBiasQKV:
categories: [algorithms]
models: [cuda, hip]
# No test metadata available
addBiasResidualLayerNorm:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
adjacent:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
adv:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:elapsed time=)([0-9.+-e]+)(?: )'
args: ["16", "16", "16"]
timeout: 300
aes:
categories: [cryptography]
models: [cuda, hip, omp, sycl]
# No test metadata available
affine:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
aidw:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of AIDW_Kernel_Tiled )([0-9.+-e]+)(?: \(s\))'
args: ["10", "1", "100"]
timeout: 300
aligned-types:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
all-pairs-distance:
categories: [bioinformatics]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time \(w/o? shared memory\): )([0-9.+-e]+)(?: \(us\))'
args: ["1000"]
timeout: 300
allreduce:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
amgmk:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
ans:
categories: [algorithms, compression]
models: [cuda, hip, omp, sycl]
# No test metadata available
aobench:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average render time: )([0-9.+-e]+)(?: sec)'
args: ["1000"]
timeout: 300
aop:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:elapsed time for each run *: )([0-9.+-e]+)(?:ms)'
args: ["-paths", "200"]
timeout: 300
asmooth:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average filtering time )([0-9.+-e]+)(?: \(s\))'
args: ["10000", "1", "5", "1"]
timeout: 300
assert:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Kernel time : )([0-9.+-e]+)'
args: []
timeout: 300
asta:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: []
timeout: 300
atan2:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
atomicAggregate:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Total kernel time \(32 locations\): )([0-9.+-e]+)(?: \(s\))'
args: ["1000"]
timeout: 300
atomicCAS:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Average execution time: )([0-9.+-e]+)(?: \(s\))'
args: ["10000"]
timeout: 300
atomicCost:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of WithoutAtomicOnGlobalMem: )([0-9.+-e]+)(?: \(us\))'
args: ["16", "10"]
timeout: 300
atomicIntrinsics:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
atomicPerf:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of SingleRangeAtomicOnGlobalMem: )([0-9.+-e]+)(?: \(us\))'
args: ["10"]
timeout: 300
atomicReduction:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:The average performance of reduction is )([0-9.+-e]+)(?: GBytes/sec)'
args: []
timeout: 300
atomicSystemWide:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
attention:
categories: [ml]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of kernels )([0-9.+-e]+)(?: \(ms\))'
args: ["8192", "8192", "0", "5"]
timeout: 300
attentionMultiHead:
categories: [ml]
models: [cuda, hip, sycl]
# No test metadata available
axhelm:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:elapsed time=)([0-9.+-e]+)(?: )'
args: ["3", "8000", "100"]
timeout: 300
b+tree:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
babelstream:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
background-subtract:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time: )([0-9.+-e]+)(?: \(us\))'
args: ["4096", "2048", "1", "102"]
timeout: 300
backprop:
categories: [ml]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Device offloading time = )([0-9.+-e]+)(?:\(s\))'
args: ["65536"]
timeout: 300
bezier-surface:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:kernel execution time: )([0-9.+-e]+)(?: ms)'
args: ["-n", "8192"]
timeout: 300
bfs:
categories: [algorithms, graph]
models: [cuda, hip, omp, sycl]
# No test metadata available
bh:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Total kernel execution time: )([0-9.+-e]+)(?: s)'
args: ["300", "30"]
timeout: 300
bicgstab:
categories: [algorithms]
models: [cuda, hip]
# No test metadata available
bilateral:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time \([1-9]x[1-9]\) )([0-9.+-e]+)(?: \(ms\))'
args: ["2960", "1440", "0.5", "0.5", "1000"]
timeout: 300
bincount:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
binomial:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Total binomialOptionsGPU\(\) time: )([0-9.+-e]+)(?: msec)'
args: []
timeout: 300
bitcracker:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
bitonic-sort:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Total kernel execution time: )([0-9.+-e]+)(?: \(ms\))'
args: ["25", "2"]
timeout: 300
bitpacking:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Device offload time = )([0-9.+-e]+)(?: \((?:s|ms|us)\))'
args: []
timeout: 300
bitpermute:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
black-scholes:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Processing time on GPU: )([0-9.+-e]+)(?: \(ms\))'
args: ["100"]
timeout: 300
blas-dot:
categories: [math]
models: [cuda, hip, sycl]
# No test metadata available
blas-fp8gemm:
categories: [math]
models: [cuda, hip]
# No test metadata available
blas-gemm:
categories: [math]
models: [cuda, hip, omp, sycl]
# No test metadata available
blas-gemmBatched:
categories: [math]
models: [cuda, hip, sycl]
# No test metadata available
blas-gemmEx:
categories: [math]
models: [cuda, hip, sycl]
# No test metadata available
blas-gemmEx2:
categories: [math]
models: [cuda, hip, sycl]
# No test metadata available
blas-gemmStridedBatched:
categories: [math]
models: [cuda, hip, sycl]
# No test metadata available
blockAccess:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
blockexchange:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
bm3d:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
bmf:
categories: [algorithms, matrix]
models: [cuda, hip, sycl]
# No test metadata available
bn:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of genScoreKernel: )([0-9.+-e]+)(?: \(s\))'
args: ["result", "10"]
timeout: 300
bonds:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average processing time on GPU: )([0-9.+-e]+)(?: \(ms\))'
args: ["100"]
timeout: 300
boxfilter:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(us\))'
args: ["../boxfilter-sycl/data/lenaRGB.ppm", "10000"]
timeout: 300
bscan:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
bsearch:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time \(bs[1-9]\) )([0-9.+-e]+)(?: \(s\))'
args: ["16384", "1"]
timeout: 300
bspline-vgh:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Total kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: []
timeout: 300
bsw:
categories: [bioinformatics]
models: [cuda, hip, sycl]
# No test metadata available
btree:
categories: [algorithms]
models: [cuda, sycl]
# No test metadata available
burger:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Total kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["8193", "8193", "100"]
timeout: 300
bwt:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Device time: )([0-9.+-e]+)(?: (?:s|ms|us))'
args: ["10000000"]
timeout: 300
car:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
cbsfil:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["10000", "10000", "5"]
timeout: 300
cc:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
ccl:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
ccs:
categories: [bioinformatics]
models: [cuda, hip, omp, sycl]
# No test metadata available
ccsd-trpdrv:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:avg=)([0-9.+-e]+)'
args: ["200", "200"]
timeout: 300
ced:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
cfd:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
chacha20:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
channelShuffle:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average time of channel shuffle \(\w+\): )([0-9.+-e]+)(?: \(ms\))'
args: ["2", "224", "224", "100"]
timeout: 300
channelSum:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average time of channel sum \(\w+\): )([0-9.+-e]+)(?: \(ms\))'
args: ["224", "224", "100"]
timeout: 300
che:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
chemv:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of chemv kernels: )([0-9.+-e]+)(?: \(us\))'
args: []
timeout: 300
chi2:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time = )([0-9.+-e]+)(?: \(s\))'
args: ["4000", "400000", "2000", "2000", "256", "1000"]
timeout: 300
clenergy:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Kernel time: )([0-9.+-e]+)(?: seconds)'
args: []
timeout: 300
clink:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel time: )([0-9.+-e]+)(?: ms)'
args: ["10"]
timeout: 300
clock:
categories: [algorithms]
models: [cuda, hip]
# No test metadata available
cm:
categories: [bioinformatics]
models: [cuda, hip, omp, sycl]
# No test metadata available
cmembench:
categories: [algorithms]
models: [cuda, hip]
# No test metadata available
cmp:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?: Giga semblances traces per second: )([0-9.+-e]+)'
args: ["-c0", "1.98e-7", "-c1", "1.77e-6", "-nc", "5", "-aph", "600", "-tau", "0.002", "-v", "2", "-i", "../cmp-cuda/data/simple-synthetic.su"]
timeout: 300
cobahh:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(us\))'
args: ["1000000", "10"]
timeout: 300
collision:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
colorwheel:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
columnarSolver:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
complex:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time \([a-z]+\) )([0-9.+-e]+)(?: \(s\))'
args: ["10000000", "1000"]
timeout: 300
compute-score:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Kernel Time = )([0-9.+-e]+)(?: ms)'
args: ["-p=1000"]
timeout: 300
concat:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time: )([0-9.+-e]+)(?: \(us\))'
args: ["1000"]
timeout: 300
concurrentKernels:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Measured time for sample = )([0-9.+-e]+)(?:s)'
args: ["4"]
timeout: 300
contract:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
conversion:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
convolution1D:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
convolution3D:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time of conv3d_s3 kernel: )([0-9.+-e]+)(?: \(us\))'
args: ["32", "6", "16", "14", "14", "5", "100"]
timeout: 300
convolutionDeformable:
categories: [math]
models: [cuda, hip, sycl]
# No test metadata available
convolutionSeparable:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["8192", "8192", "1000"]
timeout: 300
cooling:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \((?:s|ms|us)\))'
args: ["1000000", "1000"]
timeout: 300
coordinates:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
crc64:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
cross:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of cross[0-9]+ kernel: )([0-9.+-e]+)(?: \((?:s|ms|us)\))'
args: ["10000000", "100"]
timeout: 300
crossEntropy:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Average GPU kernel time \(ms\) : )([0-9.+-e]+)'
args: ["100"]
timeout: 300
crs:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Total encoding time )([0-9.+-e]+)(?: \(s\))'
args: ["1", "1"]
timeout: 300
d2q9-bgk:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
d3q19-bgk:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
damage:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["50000000", "1000"]
timeout: 300
daphne:
categories: [automotive, imaging]
models: [cuda, hip, sycl]
# No test metadata available
dct8x8:
categories: [math]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average DCT8x8 kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["8192", "8192", "100"]
timeout: 300
ddbp:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
debayer:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
degrid:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: []
timeout: 300
dense-embedding:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of dense embedding kernel \(k1\): )([0-9.+-e]+)(?: \(us\))'
args: ["100000", "256", "1000"]
timeout: 300
depixel:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
deredundancy:
categories: [bioinformatics]
models: [cuda, hip, omp, sycl]
# No test metadata available
determinant:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
diamond:
categories: [bioinformatics]
models: [cuda, hip, omp, sycl]
# No test metadata available
dispatch:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
distort:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
divergence:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
doh:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
dp:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["10000000", "10"]
timeout: 300
dpid:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
dropout:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
dslash:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
dwconv:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Average execution time of dwconv2d_forward kernel: )([0-9.+-e]+)(?: \(ms\))'
args: ["128", "16", "224", "224", "100"]
timeout: 300
dwconv1d:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
dwt2d:
categories: [algorithms, imaging]
models: [sycl]
# No test metadata available
dxtc2:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(us\))'
args: ["../dxtc2-sycl/data/lena_std.ppm", "../dxtc2-sycl/data/lena_ref.dds", "100"]
timeout: 300
easyWave:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
ecdh:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:: )([0-9.+-e]+)(?: s)'
args: ["50000000", "100"]
timeout: 300
egs:
categories: [algorithms]
models: [cuda, hip]
# No test metadata available
eigenvalue:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(us\))'
args: ["2048", "10000"]
timeout: 300
eikonal:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
entropy:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:execution time )([0-9.+-e]+)(?: \(s\))'
args: ["8192", "8192", "100"]
timeout: 300
epistasis:
categories: [bioinformatics]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time: )([0-9.+-e]+)(?: \(s\))'
args: ["146", "31339", "100"]
timeout: 300
ert:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:runtime \([a-z1-9]*\): )([0-9.+-e]+)(?: \(s\))'
args: ["128", "1024"]
timeout: 300
expdist:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["10000", "10"]
timeout: 300
extend2:
categories: [bioinformatics]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average offload time )([0-9.+-e]+)(?: \(us\))'
args: ["300"]
timeout: 300
extrema:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
f16atomic:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
f16max:
categories: [algorithms]
models: [cuda, hip, sycl]
# No test metadata available
f16sp:
categories: [algorithms]
models: [cuda, hip, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(us\))'
args: ["100000"]
timeout: 300
face:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
fdtd3d:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \((?:s|ms|us)\))'
args: ["--dimx=192", "--dimy=184", "--timesteps=90"]
timeout: 300
feynman-kac:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
fft:
categories: [math]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average kernel execution time )([0-9.+-e]+)(?: \(s\))'
args: ["3", "100"]
timeout: 300
fhd:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
# No test metadata available
filter:
categories: [algorithms]
models: [cuda, hip, omp, sycl]
test:
regex: '(?:Average execution time of filter \(shared memory\) )([0-9.+-e]+)(?: \(ms\))'
args: ["100000000", "256", "100"]