-
Notifications
You must be signed in to change notification settings - Fork 0
/
dedisp_cache_full_run_no_freqs.json
1205 lines (1205 loc) · 935 KB
/
dedisp_cache_full_run_no_freqs.json
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
{
"device_name": "NVIDIA Tegra X1",
"kernel_name": "dedispersion_kernel",
"problem_size": [
12500,
512,
1
],
"tune_params_keys": [
"block_size_x",
"block_size_y",
"block_size_z",
"tile_size_x",
"tile_size_y",
"tile_stride_x",
"tile_stride_y",
"loop_unroll_factor_channel"
],
"tune_params": {
"block_size_x": [
1,
2,
4,
8,
16,
32
],
"block_size_y": [
32,
40,
48,
56,
64,
72,
80,
88,
96,
104,
112,
120,
128,
136,
144,
152,
160,
168,
176,
184,
192,
200,
208,
216,
224,
232,
240,
248,
256
],
"block_size_z": [
1
],
"tile_size_x": [
1,
2,
3,
4
],
"tile_size_y": [
1,
2,
3,
4,
5,
6,
7,
8
],
"tile_stride_x": [
0,
1
],
"tile_stride_y": [
0,
1
],
"loop_unroll_factor_channel": [
0
]
},
"objective": "time",
"cache": {
"8,112,1,3,2,1,0,0": {"block_size_x": 8, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.1417143685477122, "tegra_power": 6.373056141352953, "ps_energy": 2.4993637953462278, "time": 344.5838056291853, "times": [344.4765625, 344.20660400390625, 344.9869384765625, 344.14886474609375, 344.5347900390625, 344.64569091796875, 345.0871887207031], "compile_time": 993.2083410000132, "verification_time": 0, "benchmark_time": 2415.167823000047, "GB/s": 7.132082122990657, "GB/s/W (Jetson)": 1.147491951350398, "GPU (W) (Jetson)": 6.2153657065720065, "GB/s/W (PS)": 0.9832902295280137, "GPU (W) (PS)": 7.253282813980677, "strategy_time": 184.50760600001104, "framework_time": 3.3022629999095443, "timestamp": "2023-11-03 10:56:12.852945+00:00"},
"2,64,1,2,4,1,1,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.123286655970982, "tegra_power": 6.318375384388742, "ps_energy": 2.469654804067104, "time": 345.6947283063616, "times": [345.67230224609375, 345.552978515625, 345.745361328125, 345.69927978515625, 345.8890686035156, 345.6493225097656, 345.65478515625], "compile_time": 1074.9516639999683, "verification_time": 0, "benchmark_time": 2422.9788419999636, "GB/s": 7.109162503114671, "GB/s/W (Jetson)": 1.1574508760222655, "GPU (W) (Jetson)": 6.142085725094665, "GB/s/W (PS)": 0.9951188303534357, "GPU (W) (PS)": 7.144033743778835, "strategy_time": 0.02843799995844165, "framework_time": 2.5777270001299257, "timestamp": "2023-11-03 10:56:16.353587+00:00"},
"2,128,1,1,1,0,0,0": {"block_size_x": 2, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.1298582894461497, "tegra_power": 6.341118795047279, "ps_energy": 2.509515370622757, "time": 345.70959036690846, "times": [345.7930603027344, 345.6248474121094, 345.6155090332031, 345.75384521484375, 345.62261962890625, 345.6798400878906, 345.8774108886719], "compile_time": 1050.70563299995, "verification_time": 0, "benchmark_time": 2423.3343020000007, "GB/s": 7.108856880110558, "GB/s/W (Jetson)": 1.1538795854061616, "GPU (W) (Jetson)": 6.160830792069404, "GB/s/W (PS)": 0.9793125910960753, "GPU (W) (PS)": 7.259027347084466, "strategy_time": 0.025990000040110317, "framework_time": 2.359026000021913, "timestamp": "2023-11-03 10:56:19.830072+00:00"},
"4,224,1,2,3,1,1,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3090013776506697, "tegra_power": 6.883262451834109, "ps_energy": 2.6765148247353574, "time": 344.8694806780134, "times": [344.6600036621094, 344.7005310058594, 344.6877746582031, 344.62176513671875, 346.2332763671875, 344.629638671875, 344.5533752441406], "compile_time": 1235.7933709999998, "verification_time": 0, "benchmark_time": 2418.491385999971, "GB/s": 7.126174212830773, "GB/s/W (Jetson)": 1.0643562294018742, "GPU (W) (Jetson)": 6.695290557781955, "GB/s/W (PS)": 0.9182089997364379, "GPU (W) (PS)": 7.760950083125155, "strategy_time": 0.029062999999496242, "framework_time": 2.388819000032072, "timestamp": "2023-11-03 10:56:23.486834+00:00"},
"2,64,1,2,4,1,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3297130039760043, "tegra_power": 6.9528483439630175, "ps_energy": 2.700182216509719, "time": 345.343985421317, "times": [345.2846374511719, 345.5032958984375, 345.2984313964844, 345.5247497558594, 345.3752746582031, 345.1819152832031, 345.2395935058594], "compile_time": 978.4063930000002, "verification_time": 0, "benchmark_time": 2421.9064729999786, "GB/s": 7.116382805977487, "GB/s/W (Jetson)": 1.0548938842706106, "GPU (W) (Jetson)": 6.746065089663492, "GB/s/W (PS)": 0.9101607976578399, "GPU (W) (PS)": 7.8188192946679465, "strategy_time": 0.02843800001528507, "framework_time": 3.100959000050807, "timestamp": "2023-11-03 10:56:26.890361+00:00"},
"8,56,1,2,5,0,0,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.1689965384347096, "tegra_power": 6.344889555993236, "ps_energy": 2.5268798360995635, "time": 350.40562656947543, "times": [350.3934326171875, 350.4107360839844, 350.3205871582031, 350.4977722167969, 350.35614013671875, 350.4996337890625, 350.361083984375], "compile_time": 1074.5384029999627, "verification_time": 0, "benchmark_time": 2455.7978070000104, "GB/s": 7.013586009049794, "GB/s/W (Jetson)": 1.1330585164389269, "GPU (W) (Jetson)": 6.189959218604783, "GB/s/W (PS)": 0.9725828529280195, "GPU (W) (PS)": 7.211299261481908, "strategy_time": 0.1538559999971767, "framework_time": 3.476690000070448, "timestamp": "2023-11-03 10:56:30.424461+00:00"},
"1,192,1,4,5,0,0,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.799139840262277, "tegra_power": 6.5247812670962935, "ps_energy": 3.269460319811933, "time": 439.82179478236606, "times": [439.9567565917969, 439.8406677246094, 439.8378601074219, 439.4620361328125, 440.0080261230469, 440.0833740234375, 439.5638427734375], "compile_time": 1023.7566910000169, "verification_time": 0, "benchmark_time": 3081.9850980000183, "GB/s": 5.587717637358278, "GB/s/W (Jetson)": 0.8779840023175566, "GPU (W) (Jetson)": 6.364259055528059, "GB/s/W (PS)": 0.7516836907631798, "GPU (W) (PS)": 7.43360233303067, "strategy_time": 0.02880200003119171, "framework_time": 3.539243999910468, "timestamp": "2023-11-03 10:56:34.533826+00:00"},
"8,88,1,3,4,0,1,0": {"block_size_x": 8, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.1508614676339284, "tegra_power": 6.375586772798161, "ps_energy": 2.5048511319008964, "time": 347.6968427385603, "times": [347.7100524902344, 347.7713928222656, 347.7847900390625, 347.70465087890625, 347.6693115234375, 347.6351623535156, 347.6025390625], "compile_time": 1067.7123909999864, "verification_time": 0, "benchmark_time": 2436.6888459999814, "GB/s": 7.068226391252897, "GB/s/W (Jetson)": 1.142611942694525, "GPU (W) (Jetson)": 6.186025304955677, "GB/s/W (PS)": 0.9811361516462503, "GPU (W) (PS)": 7.204123891870771, "strategy_time": 0.03619900002149734, "framework_time": 2.764132000038444, "timestamp": "2023-11-03 10:56:38.041119+00:00"},
"1,160,1,2,3,1,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4222826276506697, "tegra_power": 6.368765262325937, "ps_energy": 2.8202696770215994, "time": 391.7492980957031, "times": [391.8309326171875, 391.7028503417969, 391.6932678222656, 391.892822265625, 391.6057434082031, 391.8435974121094, 391.6758728027344], "compile_time": 1065.3461740000125, "verification_time": 0, "benchmark_time": 2745.326566000017, "GB/s": 6.273399880858538, "GB/s/W (Jetson)": 1.0145802029648308, "GPU (W) (Jetson)": 6.183246886274991, "GB/s/W (PS)": 0.8714060290132949, "GPU (W) (PS)": 7.199169700446065, "strategy_time": 0.03036499998643194, "framework_time": 2.3617859999944812, "timestamp": "2023-11-03 10:56:41.854241+00:00"},
"1,216,1,4,4,0,1,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3520006452287947, "tegra_power": 6.432960635335767, "ps_energy": 2.7613353519885004, "time": 375.96827915736606, "times": [375.9547424316406, 375.9269714355469, 375.8575439453125, 375.8854064941406, 375.9404296875, 376.1670227050781, 376.04583740234375], "compile_time": 1035.2069069999743, "verification_time": 0, "benchmark_time": 2635.0094410000224, "GB/s": 6.536721676382016, "GB/s/W (Jetson)": 1.0448976725348358, "GPU (W) (Jetson)": 6.255848633028789, "GB/s/W (PS)": 0.890004177953332, "GPU (W) (PS)": 7.344596619101235, "strategy_time": 0.02614600003880696, "framework_time": 2.7717899999402107, "timestamp": "2023-11-03 10:56:45.527334+00:00"},
"2,200,1,4,2,0,1,0": {"block_size_x": 2, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2131456647600447, "tegra_power": 6.34820791947439, "ps_energy": 2.5958501536028638, "time": 358.41001674107144, "times": [358.3691101074219, 358.4185485839844, 358.4024963378906, 358.28240966796875, 358.5048522949219, 358.56524658203125, 358.32745361328125], "compile_time": 1080.9286699999916, "verification_time": 0, "benchmark_time": 2511.6600160000075, "GB/s": 6.856951215667224, "GB/s/W (Jetson)": 1.1104556013336155, "GPU (W) (Jetson)": 6.174899030120865, "GB/s/W (PS)": 0.9467418589586221, "GPU (W) (PS)": 7.24268305112187, "strategy_time": 0.02651099998729478, "framework_time": 2.4623070000302505, "timestamp": "2023-11-03 10:56:49.122493+00:00"},
"1,104,1,2,6,1,1,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.540712629045759, "tegra_power": 6.282374814932182, "ps_energy": 2.95155807862011, "time": 414.2672555106027, "times": [414.1628723144531, 414.15838623046875, 414.21478271484375, 414.18927001953125, 414.4248046875, 414.29718017578125, 414.4234924316406], "compile_time": 1070.1183410000112, "verification_time": 0, "benchmark_time": 2903.091321999966, "GB/s": 5.932402253156358, "GB/s/W (Jetson)": 0.9672876703584636, "GPU (W) (Jetson)": 6.1330278829646305, "GB/s/W (PS)": 0.8326449741246353, "GPU (W) (PS)": 7.124767983369056, "strategy_time": 0.02276100002518433, "framework_time": 2.3885040000095614, "timestamp": "2023-11-03 10:56:53.098191+00:00"},
"4,240,1,4,8,1,1,0": {"block_size_x": 4, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.186279296875, "tegra_power": 6.337929747799024, "ps_energy": 2.5570317600343464, "time": 355.672354561942, "times": [355.7021484375, 355.63427734375, 355.6145324707031, 355.59405517578125, 355.7253112792969, 355.59234619140625, 355.84381103515625], "compile_time": 1037.6638609999986, "verification_time": 0, "benchmark_time": 2492.86988099999, "GB/s": 6.909730172947691, "GB/s/W (Jetson)": 1.1241015745393634, "GPU (W) (Jetson)": 6.146891285851258, "GB/s/W (PS)": 0.9611143820783005, "GPU (W) (PS)": 7.189290163368679, "strategy_time": 0.025936999975328945, "framework_time": 2.293817000065701, "timestamp": "2023-11-03 10:56:56.631093+00:00"},
"8,40,1,3,5,1,1,0": {"block_size_x": 8, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.207859584263393, "tegra_power": 6.527506139743314, "ps_energy": 2.5564999025603066, "time": 346.94433157784596, "times": [346.822509765625, 347.0691223144531, 346.8722839355469, 346.85516357421875, 346.84100341796875, 346.7611389160156, 347.38909912109375], "compile_time": 1039.541020999991, "verification_time": 0, "benchmark_time": 2435.062486999982, "GB/s": 7.0835571482699775, "GB/s/W (Jetson)": 1.1131142657425508, "GPU (W) (Jetson)": 6.363728654168838, "GB/s/W (PS)": 0.9613143335302851, "GPU (W) (PS)": 7.36861700819196, "strategy_time": 0.023282000029212213, "framework_time": 2.5868910000212963, "timestamp": "2023-11-03 10:57:00.108463+00:00"},
"1,104,1,2,8,0,1,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.563568115234375, "tegra_power": 6.313429331084372, "ps_energy": 2.9995741179750115, "time": 416.4539794921875, "times": [416.4260559082031, 416.3539123535156, 416.4270935058594, 416.4560852050781, 416.5947265625, 416.4571838378906, 416.4627990722656], "compile_time": 1065.4815670000062, "verification_time": 0, "benchmark_time": 2918.2373790000042, "GB/s": 5.901252289620883, "GB/s/W (Jetson)": 0.958663819149316, "GPU (W) (Jetson)": 6.155705651703267, "GB/s/W (PS)": 0.8193163106965018, "GPU (W) (PS)": 7.202654472488436, "strategy_time": 0.029218999998192885, "framework_time": 3.7552850000110993, "timestamp": "2023-11-03 10:57:04.096044+00:00"},
"2,48,1,2,4,0,0,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2135750906808034, "tegra_power": 6.574452010262271, "ps_energy": 2.5690031732897216, "time": 346.6749485560826, "times": [346.64984130859375, 346.58453369140625, 346.6886901855469, 346.66131591796875, 346.7161865234375, 346.6618347167969, 346.7622375488281], "compile_time": 1085.775093000052, "verification_time": 0, "benchmark_time": 2429.690708999999, "GB/s": 7.089061411088453, "GB/s/W (Jetson)": 1.110240176783045, "GPU (W) (Jetson)": 6.38516021968258, "GB/s/W (PS)": 0.9566356420077655, "GPU (W) (PS)": 7.410409041638976, "strategy_time": 0.025990000040110317, "framework_time": 2.5156919999176353, "timestamp": "2023-11-03 10:57:07.614173+00:00"},
"4,64,1,2,7,0,0,0": {"block_size_x": 4, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3975655691964284, "tegra_power": 6.519796584397952, "ps_energy": 2.8099194488012245, "time": 377.71370588030135, "times": [377.77447509765625, 377.7981872558594, 377.7693786621094, 377.5494689941406, 377.6226501464844, 377.86968994140625, 377.6120910644531], "compile_time": 1064.2703369999822, "verification_time": 0, "benchmark_time": 2647.479255999997, "GB/s": 6.5065152832415905, "GB/s/W (Jetson)": 1.0250397451376867, "GPU (W) (Jetson)": 6.347573656636714, "GB/s/W (PS)": 0.8746158189867215, "GPU (W) (PS)": 7.439283788371971, "strategy_time": 0.026355000045441557, "framework_time": 2.301576999968802, "timestamp": "2023-11-03 10:57:11.328306+00:00"},
"1,152,1,1,4,0,1,0": {"block_size_x": 1, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.306422642299107, "tegra_power": 6.396543121534051, "ps_energy": 2.6969185472884027, "time": 370.7243085588728, "times": [370.7189636230469, 370.8887939453125, 370.6767272949219, 370.7480163574219, 370.69769287109375, 370.6635437011719, 370.6764221191406], "compile_time": 1020.1601269999969, "verification_time": 0, "benchmark_time": 2598.972200999981, "GB/s": 6.629184931394163, "GB/s/W (Jetson)": 1.0655462511199572, "GPU (W) (Jetson)": 6.221395762433087, "GB/s/W (PS)": 0.9112622264661927, "GPU (W) (PS)": 7.274728106641325, "strategy_time": 0.04057400002466238, "framework_time": 3.611218999992616, "timestamp": "2023-11-03 10:57:14.951301+00:00"},
"1,48,1,2,4,1,1,0": {"block_size_x": 1, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8121425083705356, "tegra_power": 6.220962590626466, "ps_energy": 3.259780969719145, "time": 461.22354997907365, "times": [461.03375244140625, 461.1737060546875, 461.3016052246094, 461.1976013183594, 461.46209716796875, 461.25958251953125, 461.1365051269531], "compile_time": 1069.4238969999788, "verification_time": 0, "benchmark_time": 3231.2826140000084, "GB/s": 5.328435636279857, "GB/s/W (Jetson)": 0.8739244162359426, "GPU (W) (Jetson)": 6.097135561482336, "GB/s/W (PS)": 0.7539156841607492, "GPU (W) (PS)": 7.06768110576107, "strategy_time": 0.02260499996964427, "framework_time": 2.955746000054205, "timestamp": "2023-11-03 10:57:19.255063+00:00"},
"1,32,1,3,7,1,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8560049874441966, "tegra_power": 6.326086008888416, "ps_energy": 3.2998677916713097, "time": 461.19080897739957, "times": [460.8616027832031, 460.90765380859375, 461.3968200683594, 461.5840759277344, 460.8758850097656, 461.8277587890625, 460.8818664550781], "compile_time": 1029.3102230000386, "verification_time": 0, "benchmark_time": 3231.2253220000002, "GB/s": 5.328813914243537, "GB/s/W (Jetson)": 0.8605026989813752, "GPU (W) (Jetson)": 6.192675421647776, "GB/s/W (PS)": 0.7447571100281203, "GPU (W) (PS)": 7.155103110116443, "strategy_time": 0.02333300000145755, "framework_time": 2.7082999999947788, "timestamp": "2023-11-03 10:57:23.518458+00:00"},
"1,56,1,2,4,0,0,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9254281180245534, "tegra_power": 6.286472215262391, "ps_energy": 3.3662410563542915, "time": 476.3358851841518, "times": [476.46343994140625, 476.3667297363281, 476.33984375, 476.3279113769531, 476.4018859863281, 476.2270202636719, 476.224365234375], "compile_time": 1066.8838639999763, "verification_time": 0, "benchmark_time": 3337.3592209999856, "GB/s": 5.159384536081908, "GB/s/W (Jetson)": 0.8400821694636398, "GPU (W) (Jetson)": 6.141523679018181, "GB/s/W (PS)": 0.7300724929846918, "GPU (W) (PS)": 7.066948262889958, "strategy_time": 0.025625000034779077, "framework_time": 2.316317000008894, "timestamp": "2023-11-03 10:57:27.925096+00:00"},
"1,144,1,4,7,1,1,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.526576450892857, "tegra_power": 6.461392876252908, "ps_energy": 2.9278277853566124, "time": 400.0784432547433, "times": [400.28009033203125, 400.29229736328125, 400.0473327636719, 400.0339660644531, 400.04962158203125, 399.93646240234375, 399.9093322753906], "compile_time": 1040.5496569999286, "verification_time": 0, "benchmark_time": 2805.6047310000167, "GB/s": 6.142795347849231, "GB/s/W (Jetson)": 0.9726996383313546, "GPU (W) (Jetson)": 6.315202664603705, "GB/s/W (PS)": 0.8393936324709964, "GPU (W) (PS)": 7.318134317705207, "strategy_time": 0.02650999999787018, "framework_time": 2.3852760000409035, "timestamp": "2023-11-03 10:57:31.773714+00:00"},
"4,248,1,2,6,1,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.305999755859375, "tegra_power": 6.616898417916061, "ps_energy": 2.6876428199581306, "time": 359.00067138671875, "times": [358.8943176269531, 358.90509033203125, 358.8736877441406, 358.9299011230469, 359.01483154296875, 359.5167236328125, 358.8701477050781], "compile_time": 1074.0906220000852, "verification_time": 0, "benchmark_time": 2515.898393000043, "GB/s": 6.845669648769684, "GB/s/W (Jetson)": 1.0657416566308906, "GPU (W) (Jetson)": 6.423385635887381, "GB/s/W (PS)": 0.9144072202415221, "GPU (W) (PS)": 7.486456249723771, "strategy_time": 0.02744799996889924, "framework_time": 2.395066999952178, "timestamp": "2023-11-03 10:57:35.366200+00:00"},
"16,40,1,4,1,1,0,0": {"block_size_x": 16, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.20928955078125, "tegra_power": 6.465293337139657, "ps_energy": 2.5533788990946635, "time": 351.23850795200894, "times": [351.1771240234375, 351.41790771484375, 351.2237548828125, 351.2317199707031, 351.233642578125, 351.26849365234375, 351.1169128417969], "compile_time": 1044.9364600000308, "verification_time": 0, "benchmark_time": 2463.3698910000703, "GB/s": 6.9969549020399295, "GB/s/W (Jetson)": 1.112393800591209, "GPU (W) (Jetson)": 6.2899981088722585, "GB/s/W (PS)": 0.9624893512166864, "GPU (W) (PS)": 7.2696439635358585, "strategy_time": 0.02734400004555937, "framework_time": 2.497983999887765, "timestamp": "2023-11-03 10:57:38.877108+00:00"},
"1,240,1,1,7,0,1,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3285609654017856, "tegra_power": 6.406512993416045, "ps_energy": 2.7027432288253976, "time": 372.81468418666293, "times": [372.81561279296875, 372.8512878417969, 372.7896423339844, 372.84271240234375, 372.83233642578125, 372.8017578125, 372.7694396972656], "compile_time": 1018.5149689999662, "verification_time": 0, "benchmark_time": 2614.2844769999556, "GB/s": 6.592015025807071, "GB/s/W (Jetson)": 1.0554157853350208, "GPU (W) (Jetson)": 6.245893909682777, "GB/s/W (PS)": 0.909298365375265, "GPU (W) (PS)": 7.249562164434954, "strategy_time": 0.049584000066715817, "framework_time": 4.142892999993819, "timestamp": "2023-11-03 10:57:42.514176+00:00"},
"1,160,1,4,8,1,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4234183175223216, "tegra_power": 6.420977058544773, "ps_energy": 2.8197743894356466, "time": 386.79239763532365, "times": [384.95843505859375, 386.89739990234375, 386.97796630859375, 387.3887634277344, 387.2497863769531, 386.6510009765625, 387.4234313964844], "compile_time": 1028.2999089999976, "verification_time": 0, "benchmark_time": 2711.0641309999437, "GB/s": 6.353796028631046, "GB/s/W (Jetson)": 1.0141047388436946, "GPU (W) (Jetson)": 6.265423861322046, "GB/s/W (PS)": 0.8715590896943592, "GPU (W) (PS)": 7.290149461764219, "strategy_time": 0.026823999974112667, "framework_time": 2.3616370000354436, "timestamp": "2023-11-03 10:57:46.256064+00:00"},
"1,184,1,2,8,1,1,0": {"block_size_x": 1, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.366856166294643, "tegra_power": 6.401433757574176, "ps_energy": 2.7485711941904065, "time": 379.60229056222096, "times": [379.3783874511719, 379.5146484375, 380.2550048828125, 379.477294921875, 379.5688171386719, 379.68511962890625, 379.3367614746094], "compile_time": 906.7901150000353, "verification_time": 0, "benchmark_time": 2662.2090399999934, "GB/s": 6.474144284957028, "GB/s/W (Jetson)": 1.0383393951003868, "GPU (W) (Jetson)": 6.235094532198797, "GB/s/W (PS)": 0.8941372903836633, "GPU (W) (PS)": 7.240660192328017, "strategy_time": 0.02442699997118325, "framework_time": 2.2664239999130587, "timestamp": "2023-11-03 10:57:49.827411+00:00"},
"1,136,1,3,7,0,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.94287109375, "tegra_power": 6.479535953429882, "ps_energy": 3.3913549964059615, "time": 463.851797921317, "times": [463.70074462890625, 463.5328063964844, 465.0819396972656, 463.5935974121094, 463.728759765625, 463.68280029296875, 463.6419372558594], "compile_time": 1030.4594610000777, "verification_time": 0, "benchmark_time": 3252.296483000009, "GB/s": 5.298243988733836, "GB/s/W (Jetson)": 0.8351028372324539, "GPU (W) (Jetson)": 6.344421013215946, "GB/s/W (PS)": 0.7246661003063606, "GPU (W) (PS)": 7.31128996719171, "strategy_time": 0.02312599997367215, "framework_time": 2.4571059999516365, "timestamp": "2023-11-03 10:57:54.112789+00:00"},
"2,88,1,1,3,0,1,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3477085658482144, "tegra_power": 6.385903197054825, "ps_energy": 2.716717523117219, "time": 378.21366228376115, "times": [378.0863952636719, 378.0989685058594, 378.1941223144531, 378.14105224609375, 378.3978576660156, 378.4262390136719, 378.1510009765625], "compile_time": 1032.4812910000674, "verification_time": 0, "benchmark_time": 2650.462290000064, "GB/s": 6.497914393574033, "GB/s/W (Jetson)": 1.0468079538279838, "GPU (W) (Jetson)": 6.207360547665268, "GB/s/W (PS)": 0.9046211021527545, "GPU (W) (PS)": 7.183023232722238, "strategy_time": 0.026198999989901495, "framework_time": 2.9472219998751825, "timestamp": "2023-11-03 10:57:57.798774+00:00"},
"4,88,1,4,6,0,0,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3171473911830356, "tegra_power": 6.583722785689836, "ps_energy": 2.6885751015428077, "time": 362.1792776925223, "times": [362.2186584472656, 362.3965148925781, 361.9856872558594, 362.0954284667969, 362.30828857421875, 362.263916015625, 361.9864501953125], "compile_time": 911.9363979999662, "verification_time": 0, "benchmark_time": 2538.272327999948, "GB/s": 6.785589765537104, "GB/s/W (Jetson)": 1.060614447467347, "GPU (W) (Jetson)": 6.397791187684167, "GB/s/W (PS)": 0.9140901433587384, "GPU (W) (PS)": 7.423326697960106, "strategy_time": 0.04307400001835049, "framework_time": 2.8083630000992343, "timestamp": "2023-11-03 10:58:01.251920+00:00"},
"2,128,1,2,6,0,0,0": {"block_size_x": 2, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.463841029575893, "tegra_power": 6.509975699718071, "ps_energy": 2.8614909976177096, "time": 388.01346261160717, "times": [387.9742126464844, 388.0925598144531, 388.0450134277344, 387.9220275878906, 387.9486389160156, 388.0533447265625, 388.0584411621094], "compile_time": 1081.0529029999998, "verification_time": 0, "benchmark_time": 2719.1164119999485, "GB/s": 6.333800851801894, "GB/s/W (Jetson)": 0.9974669511949124, "GPU (W) (Jetson)": 6.34988542148122, "GB/s/W (PS)": 0.8588529553460196, "GPU (W) (PS)": 7.3747209139544685, "strategy_time": 0.026459000082468265, "framework_time": 2.493194999942716, "timestamp": "2023-11-03 10:58:05.054685+00:00"},
"1,256,1,3,5,0,1,0": {"block_size_x": 1, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.237583705357143, "tegra_power": 6.53584100023376, "ps_energy": 2.5989838306790682, "time": 351.6318359375, "times": [351.638916015625, 351.6243896484375, 351.62042236328125, 351.6014709472656, 351.77056884765625, 351.5189208984375, 351.6481628417969], "compile_time": 894.1196920000039, "verification_time": 0, "benchmark_time": 2464.830101999951, "GB/s": 6.989128255260767, "GB/s/W (Jetson)": 1.098327626410624, "GPU (W) (Jetson)": 6.36342753036405, "GB/s/W (PS)": 0.9456003423298992, "GPU (W) (PS)": 7.3912074080261, "strategy_time": 0.02531400002681039, "framework_time": 2.4133980000442534, "timestamp": "2023-11-03 10:58:08.416235+00:00"},
"2,120,1,2,4,0,0,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4591238839285716, "tegra_power": 6.4987905611123296, "ps_energy": 2.836288113523129, "time": 387.5489981515067, "times": [387.52618408203125, 387.6460876464844, 387.68963623046875, 387.3996276855469, 387.3383483886719, 387.5592041015625, 387.68389892578125], "compile_time": 1079.848337000044, "verification_time": 0, "benchmark_time": 2716.8830269999944, "GB/s": 6.341391699429027, "GB/s/W (Jetson)": 0.9993803142905768, "GPU (W) (Jetson)": 6.345323805913214, "GB/s/W (PS)": 0.86648461003747, "GPU (W) (PS)": 7.318527791457025, "strategy_time": 0.025626000024203677, "framework_time": 2.612935000001926, "timestamp": "2023-11-03 10:58:12.215708+00:00"},
"4,208,1,3,2,1,1,0": {"block_size_x": 4, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.165012904575893, "tegra_power": 6.488868053406238, "ps_energy": 2.514814525161796, "time": 344.5862034388951, "times": [344.88775634765625, 344.5404052734375, 344.69024658203125, 344.4752197265625, 344.59649658203125, 344.3658447265625, 344.5474548339844], "compile_time": 1095.1671659998965, "verification_time": 0, "benchmark_time": 2415.88604399999, "GB/s": 7.1320324942603275, "GB/s/W (Jetson)": 1.1351433494025396, "GPU (W) (Jetson)": 6.282935541149171, "GB/s/W (PS)": 0.9772490079927006, "GPU (W) (PS)": 7.298070845740473, "strategy_time": 0.07286599998224119, "framework_time": 5.0722190001124545, "timestamp": "2023-11-03 10:58:15.732025+00:00"},
"4,216,1,4,7,1,0,0": {"block_size_x": 4, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5084228515625, "tegra_power": 6.256797287236746, "ps_energy": 2.9183610598485887, "time": 412.3686741420201, "times": [417.5030212402344, 397.7207946777344, 436.3450927734375, 389.25323486328125, 436.8580322265625, 410.9041748046875, 397.9963684082031], "compile_time": 899.3295600000693, "verification_time": 0, "benchmark_time": 2889.932900999952, "GB/s": 5.9597155509285855, "GB/s/W (Jetson)": 0.9797391211251155, "GPU (W) (Jetson)": 6.082961701156274, "GB/s/W (PS)": 0.8421164995010952, "GPU (W) (PS)": 7.077067786297227, "strategy_time": 0.025573000016265723, "framework_time": 2.412355000046773, "timestamp": "2023-11-03 10:58:19.523776+00:00"},
"32,32,1,2,6,1,1,0": {"block_size_x": 32, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2258475167410716, "tegra_power": 6.641784231218108, "ps_energy": 2.5933700867772944, "time": 345.14009748186385, "times": [345.0538024902344, 345.2775573730469, 345.1319274902344, 345.0633850097656, 345.1010437011719, 345.3044738769531, 345.0484924316406], "compile_time": 987.2367639999311, "verification_time": 0, "benchmark_time": 2419.4660989999193, "GB/s": 7.120586735446292, "GB/s/W (Jetson)": 1.1041187599401434, "GPU (W) (Jetson)": 6.449113078952044, "GB/s/W (PS)": 0.9476472380592574, "GPU (W) (PS)": 7.513963476566407, "strategy_time": 0.026823999974112667, "framework_time": 2.6095460002579784, "timestamp": "2023-11-03 10:58:22.933283+00:00"},
"2,240,1,3,8,1,0,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.245143345424107, "tegra_power": 6.611421997597993, "ps_energy": 2.6267579709213544, "time": 352.957284109933, "times": [352.9664001464844, 352.9704284667969, 353.07672119140625, 352.8063049316406, 352.8715515136719, 353.1030578613281, 352.9065246582031], "compile_time": 901.0997840000528, "verification_time": 0, "benchmark_time": 2473.67227299992, "GB/s": 6.9628822258122005, "GB/s/W (Jetson)": 1.0946294386988282, "GPU (W) (Jetson)": 6.360949175721866, "GB/s/W (PS)": 0.9356019957704663, "GPU (W) (PS)": 7.442141270849129, "strategy_time": 0.022916999910194136, "framework_time": 2.2341720000440546, "timestamp": "2023-11-03 10:58:26.310368+00:00"},
"2,96,1,2,5,1,0,0": {"block_size_x": 2, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5244315011160716, "tegra_power": 6.417529020006097, "ps_energy": 2.9192398025042428, "time": 403.10525948660717, "times": [403.0709228515625, 403.08843994140625, 403.0673828125, 403.18402099609375, 403.0846862792969, 403.0694274902344, 403.17193603515625], "compile_time": 1073.083376999989, "verification_time": 0, "benchmark_time": 2824.9370089999957, "GB/s": 6.096670639152629, "GB/s/W (Jetson)": 0.9735261182224493, "GPU (W) (Jetson)": 6.2624623264186, "GB/s/W (PS)": 0.8418630075856633, "GPU (W) (PS)": 7.241879717030167, "strategy_time": 0.025469000092925853, "framework_time": 2.5417819998665436, "timestamp": "2023-11-03 10:58:30.211125+00:00"},
"4,40,1,1,5,0,0,0": {"block_size_x": 4, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2304164341517856, "tegra_power": 6.562760584181873, "ps_energy": 2.5966935816996966, "time": 350.80894688197543, "times": [350.5115051269531, 350.6685791015625, 350.44805908203125, 350.6041564941406, 352.462646484375, 350.49652099609375, 350.4711608886719], "compile_time": 1020.2985129999433, "verification_time": 0, "benchmark_time": 2460.9644989999424, "GB/s": 7.005522583854805, "GB/s/W (Jetson)": 1.1018570175370013, "GPU (W) (Jetson)": 6.357923462260433, "GB/s/W (PS)": 0.9464343491739016, "GPU (W) (PS)": 7.402016410297872, "strategy_time": 0.025833999984570255, "framework_time": 2.3550060001298334, "timestamp": "2023-11-03 10:58:33.694821+00:00"},
"2,248,1,1,7,0,0,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4407174246651784, "tegra_power": 6.5838111295297574, "ps_energy": 2.8271484534829563, "time": 380.0434352329799, "times": [380.20306396484375, 380.6695251464844, 380.8691101074219, 379.55078125, 379.2694396972656, 380.4866638183594, 379.2554626464844], "compile_time": 1035.5315219999284, "verification_time": 0, "benchmark_time": 2663.4098399999857, "GB/s": 6.466629264345548, "GB/s/W (Jetson)": 1.0069170544546497, "GPU (W) (Jetson)": 6.422206512181781, "GB/s/W (PS)": 0.8692857981944017, "GPU (W) (PS)": 7.439014047828022, "strategy_time": 0.024635999920974427, "framework_time": 2.5226640002529166, "timestamp": "2023-11-03 10:58:37.396365+00:00"},
"2,32,1,2,6,1,0,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5002964564732144, "tegra_power": 6.560478535673161, "ps_energy": 2.8799244132345785, "time": 390.6882760184152, "times": [390.58868408203125, 390.59698486328125, 390.5406188964844, 390.6414489746094, 391.34368896484375, 390.5971984863281, 390.5093078613281], "compile_time": 1081.1249470000348, "verification_time": 0, "benchmark_time": 2739.3788819999827, "GB/s": 6.290437033447505, "GB/s/W (Jetson)": 0.9829234423931312, "GPU (W) (Jetson)": 6.3997222592759915, "GB/s/W (PS)": 0.8533557299997863, "GPU (W) (PS)": 7.371412427791491, "strategy_time": 0.02724000000853266, "framework_time": 2.513548000024457, "timestamp": "2023-11-03 10:58:41.219593+00:00"},
"2,216,1,2,2,0,1,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2684326171875, "tegra_power": 6.509157267220476, "ps_energy": 2.639813951648258, "time": 356.9415762765067, "times": [357.05511474609375, 356.8233947753906, 356.89129638671875, 357.03369140625, 356.8990173339844, 356.9500427246094, 356.9384765625], "compile_time": 932.059822000042, "verification_time": 0, "benchmark_time": 2514.997937999965, "GB/s": 6.885160382931146, "GB/s/W (Jetson)": 1.0833912285422158, "GPU (W) (Jetson)": 6.3551930286491665, "GB/s/W (PS)": 0.9309746993592155, "GPU (W) (PS)": 7.395647150959271, "strategy_time": 0.02953199998501077, "framework_time": 2.4215130000584395, "timestamp": "2023-11-03 10:58:44.669157+00:00"},
"2,112,1,4,1,0,0,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2255684988839284, "tegra_power": 6.545255535579811, "ps_energy": 2.595095534979951, "time": 351.2584882463728, "times": [351.2480163574219, 351.3218078613281, 351.189208984375, 351.2142028808594, 351.4056396484375, 351.1880798339844, 351.2424621582031], "compile_time": 896.005839000054, "verification_time": 0, "benchmark_time": 2462.1179270000084, "GB/s": 6.99655690107121, "GB/s/W (Jetson)": 1.1042571824827814, "GPU (W) (Jetson)": 6.335984960804461, "GB/s/W (PS)": 0.9470171586646371, "GPU (W) (PS)": 7.387993804607365, "strategy_time": 0.026095000066561624, "framework_time": 2.4757849998877646, "timestamp": "2023-11-03 10:58:48.029836+00:00"},
"4,96,1,3,5,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.305149623325893, "tegra_power": 6.658221147072524, "ps_energy": 2.6707223759457457, "time": 356.2400861467634, "times": [355.89959716796875, 355.58953857421875, 355.7065124511719, 356.08477783203125, 357.4082946777344, 356.8492736816406, 356.1426086425781], "compile_time": 906.7175240001006, "verification_time": 0, "benchmark_time": 2496.4694980000104, "GB/s": 6.898718295805488, "GB/s/W (Jetson)": 1.0661346990804659, "GPU (W) (Jetson)": 6.470775504967231, "GB/s/W (PS)": 0.9202004753974939, "GPU (W) (PS)": 7.4969731925268634, "strategy_time": 0.029844999971828656, "framework_time": 2.51833499987697, "timestamp": "2023-11-03 10:58:51.435625+00:00"},
"4,168,1,2,4,0,0,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.1968558175223216, "tegra_power": 6.5720734640975556, "ps_energy": 2.565287552478497, "time": 344.76991489955356, "times": [344.6629638671875, 344.7136535644531, 344.714111328125, 344.8963928222656, 344.7494201660156, 344.9266662597656, 344.7261962890625], "compile_time": 1072.2091409999166, "verification_time": 0, "benchmark_time": 2416.4085909999358, "GB/s": 7.128232173958698, "GB/s/W (Jetson)": 1.1186897111762906, "GPU (W) (Jetson)": 6.371947558598206, "GB/s/W (PS)": 0.9580212548201652, "GPU (W) (PS)": 7.440578315036207, "strategy_time": 0.022447999981523026, "framework_time": 2.5073990001374113, "timestamp": "2023-11-03 10:58:54.926967+00:00"},
"2,144,1,1,3,0,0,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2822701590401784, "tegra_power": 6.616517904783512, "ps_energy": 2.6632476645647785, "time": 355.22855050223217, "times": [355.0218200683594, 355.0314636230469, 355.1051940917969, 355.22149658203125, 355.26556396484375, 355.332763671875, 355.6215515136719], "compile_time": 1029.523731999916, "verification_time": 0, "benchmark_time": 2490.3701350000347, "GB/s": 6.918362830142384, "GB/s/W (Jetson)": 1.0768225620728256, "GPU (W) (Jetson)": 6.424793716083463, "GB/s/W (PS)": 0.9227831240402552, "GPU (W) (PS)": 7.497279317215363, "strategy_time": 0.025833999984570255, "framework_time": 2.380678000008629, "timestamp": "2023-11-03 10:58:58.449322+00:00"},
"1,56,1,4,8,1,0,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.7717197963169644, "tegra_power": 6.200868712347159, "ps_energy": 4.31974201138103, "time": 619.4272722516741, "times": [619.1890869140625, 619.1961059570312, 619.2963256835938, 619.8968505859375, 619.3369750976562, 619.26171875, 619.8138427734375], "compile_time": 1038.5922609999625, "verification_time": 0, "benchmark_time": 4339.118810999935, "GB/s": 3.967535996706121, "GB/s/W (Jetson)": 0.6515860489954249, "GPU (W) (Jetson)": 6.0890438075263, "GB/s/W (PS)": 0.5689228647278174, "GPU (W) (PS)": 6.973767873794735, "strategy_time": 0.024531000008209958, "framework_time": 2.412136000089049, "timestamp": "2023-11-03 10:59:03.829667+00:00"},
"2,168,1,2,7,1,1,0": {"block_size_x": 2, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3270089285714284, "tegra_power": 6.484161733200823, "ps_energy": 2.711406948025894, "time": 369.5022975376674, "times": [368.83917236328125, 368.8284912109375, 368.8237609863281, 368.8619384765625, 369.88397216796875, 370.65875244140625, 370.6199951171875], "compile_time": 1084.3831930000079, "verification_time": 0, "benchmark_time": 2589.7465900000043, "GB/s": 6.651108846622178, "GB/s/W (Jetson)": 1.0561197122302157, "GPU (W) (Jetson)": 6.297684599198496, "GB/s/W (PS)": 0.9063928975284641, "GPU (W) (PS)": 7.337997533694606, "strategy_time": 0.025730000061230385, "framework_time": 2.4179150000236405, "timestamp": "2023-11-03 10:59:07.506296+00:00"},
"1,96,1,4,5,0,0,0": {"block_size_x": 1, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.854527064732143, "tegra_power": 6.529910059395637, "ps_energy": 3.285363499881149, "time": 448.86925833565846, "times": [447.49884033203125, 447.5975036621094, 448.4459228515625, 449.7036437988281, 449.7464599609375, 449.4170837402344, 449.67535400390625], "compile_time": 892.5446179999881, "verification_time": 0, "benchmark_time": 3145.188650000023, "GB/s": 5.475090918706309, "GB/s/W (Jetson)": 0.8609482216384629, "GPU (W) (Jetson)": 6.359373050665826, "GB/s/W (PS)": 0.7480450793615092, "GPU (W) (PS)": 7.319199162942895, "strategy_time": 0.026823999974112667, "framework_time": 2.7236480000283336, "timestamp": "2023-11-03 10:59:11.547009+00:00"},
"2,80,1,4,6,1,0,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5274483816964284, "tegra_power": 6.587393627921287, "ps_energy": 2.9401975540347394, "time": 396.1870901925223, "times": [394.92938232421875, 395.2238464355469, 395.3453674316406, 396.8577575683594, 397.0643615722656, 396.80682373046875, 397.08209228515625], "compile_time": 1036.9484679999914, "verification_time": 0, "benchmark_time": 2776.884902000006, "GB/s": 6.2031299374387965, "GB/s/W (Jetson)": 0.9723640719223923, "GPU (W) (Jetson)": 6.379431446058088, "GB/s/W (PS)": 0.8358622013774257, "GPU (W) (PS)": 7.421235135667813, "strategy_time": 0.02796900002977054, "framework_time": 2.8266189999612834, "timestamp": "2023-11-03 10:59:15.363752+00:00"},
"4,208,1,4,7,0,1,0": {"block_size_x": 4, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2603236607142856, "tegra_power": 6.563356819681617, "ps_energy": 2.609281187730273, "time": 355.1202174595424, "times": [353.6780700683594, 355.17333984375, 355.3083801269531, 355.3166198730469, 355.5002746582031, 355.40338134765625, 355.4614562988281], "compile_time": 1032.1885000000748, "verification_time": 0, "benchmark_time": 2488.69395600002, "GB/s": 6.92047334725454, "GB/s/W (Jetson)": 1.0872779163066288, "GPU (W) (Jetson)": 6.364953470923678, "GB/s/W (PS)": 0.941868592605684, "GPU (W) (PS)": 7.347599656241872, "strategy_time": 0.026770999966174713, "framework_time": 2.6186969998889253, "timestamp": "2023-11-03 10:59:18.887489+00:00"},
"4,136,1,3,7,1,0,0": {"block_size_x": 4, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.433872767857143, "tegra_power": 6.560051007284885, "ps_energy": 2.8181360115757537, "time": 380.7137712751116, "times": [380.01104736328125, 379.53094482421875, 380.3610534667969, 381.2303771972656, 381.28900146484375, 381.34771728515625, 381.22625732421875], "compile_time": 1039.2837470000131, "verification_time": 0, "benchmark_time": 2668.015010999966, "GB/s": 6.455243244206387, "GB/s/W (Jetson)": 1.0097487561618708, "GPU (W) (Jetson)": 6.39292022378244, "GB/s/W (PS)": 0.8720657874230275, "GPU (W) (PS)": 7.4022434285396805, "strategy_time": 0.02479199997651449, "framework_time": 2.296555000043554, "timestamp": "2023-11-03 10:59:22.597163+00:00"},
"1,48,1,3,4,0,0,0": {"block_size_x": 1, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9672677176339284, "tegra_power": 6.3235011066660105, "ps_energy": 3.4327115534063717, "time": 480.048348563058, "times": [478.86614990234375, 480.3062438964844, 480.250732421875, 480.2988586425781, 480.3480224609375, 480.1609802246094, 480.1074523925781], "compile_time": 1040.6641849999687, "verification_time": 0, "benchmark_time": 3363.2843159999766, "GB/s": 5.119484333935117, "GB/s/W (Jetson)": 0.8282366924274925, "GPU (W) (Jetson)": 6.181185137946902, "GB/s/W (PS)": 0.715935481838332, "GPU (W) (PS)": 7.150762134025879, "strategy_time": 0.024375999942094495, "framework_time": 2.9020870001659205, "timestamp": "2023-11-03 10:59:27.004267+00:00"},
"1,232,1,2,8,1,1,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4979771205357144, "tegra_power": 6.486701289261935, "ps_energy": 2.9002165997052805, "time": 396.51990182059154, "times": [395.2274475097656, 395.3832702636719, 396.2729187011719, 397.18475341796875, 397.16937255859375, 397.2551574707031, 397.1463928222656], "compile_time": 1081.2770210000053, "verification_time": 0, "benchmark_time": 2778.824178999912, "GB/s": 6.197923455332539, "GB/s/W (Jetson)": 0.9838360727150874, "GPU (W) (Jetson)": 6.299752191671689, "GB/s/W (PS)": 0.8473849850558544, "GPU (W) (PS)": 7.314176631208553, "strategy_time": 0.023177999992185505, "framework_time": 2.312699000185603, "timestamp": "2023-11-03 10:59:30.866759+00:00"},
"1,80,1,3,1,0,0,0": {"block_size_x": 1, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6548374720982144, "tegra_power": 6.472607246832946, "ps_energy": 3.064346923813478, "time": 421.1842128208705, "times": [420.310302734375, 421.3046875, 421.2520751953125, 421.2855224609375, 421.33551025390625, 421.440673828125, 421.3607177734375], "compile_time": 1038.1685209999887, "verification_time": 0, "benchmark_time": 2951.5881689999333, "GB/s": 5.834976538033765, "GB/s/W (Jetson)": 0.9257063853546068, "GPU (W) (Jetson)": 6.3032691902612115, "GB/s/W (PS)": 0.8019979659945284, "GPU (W) (PS)": 7.2755502949412385, "strategy_time": 0.024272000018754625, "framework_time": 2.43098100008865, "timestamp": "2023-11-03 10:59:34.859190+00:00"},
"1,240,1,4,7,1,1,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.413417271205357, "tegra_power": 6.517216367356947, "ps_energy": 2.7979653468578363, "time": 380.7816380092076, "times": [379.2526550292969, 380.9888000488281, 380.96307373046875, 381.1457824707031, 380.9888000488281, 381.04547119140625, 381.0868835449219], "compile_time": 1040.2726780000648, "verification_time": 0, "benchmark_time": 2669.1231059999154, "GB/s": 6.4540927258172385, "GB/s/W (Jetson)": 1.0183071238122763, "GPU (W) (Jetson)": 6.338061057311274, "GB/s/W (PS)": 0.8783525509920727, "GPU (W) (PS)": 7.347952389422147, "strategy_time": 0.026303000026928203, "framework_time": 2.4029069999187413, "timestamp": "2023-11-03 10:59:38.571069+00:00"},
"2,64,1,4,3,0,1,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2508544921875, "tegra_power": 6.614924428377067, "ps_energy": 2.6270639045711244, "time": 352.00755528041293, "times": [350.7466735839844, 350.6933898925781, 352.40478515625, 352.3503112792969, 352.3947448730469, 352.3623046875, 353.1006774902344], "compile_time": 1039.0894070000058, "verification_time": 0, "benchmark_time": 2468.807383000012, "GB/s": 6.981668328233039, "GB/s/W (Jetson)": 1.0918520093280546, "GPU (W) (Jetson)": 6.394335742011121, "GB/s/W (PS)": 0.9354930406236958, "GPU (W) (PS)": 7.463089542150246, "strategy_time": 0.026093999963450187, "framework_time": 3.2758909999301977, "timestamp": "2023-11-03 10:59:42.082488+00:00"},
"2,120,1,4,6,0,0,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5750034877232144, "tegra_power": 6.636628856391475, "ps_energy": 2.9916673985917117, "time": 399.60899135044644, "times": [398.58624267578125, 399.67181396484375, 399.8247375488281, 400.0025634765625, 399.8378601074219, 399.8548889160156, 399.4848327636719], "compile_time": 1033.4863430000496, "verification_time": 0, "benchmark_time": 2801.427901000011, "GB/s": 6.150011769491819, "GB/s/W (Jetson)": 0.954406474289081, "GPU (W) (Jetson)": 6.443807680656027, "GB/s/W (PS)": 0.8214816931711335, "GPU (W) (PS)": 7.486486699114583, "strategy_time": 0.028229999998075073, "framework_time": 2.760932999876786, "timestamp": "2023-11-03 10:59:45.920268+00:00"},
"1,192,1,3,3,0,1,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2718331473214284, "tegra_power": 6.62560758143353, "ps_energy": 2.6321512606519133, "time": 353.9249485560826, "times": [352.65264892578125, 353.4700012207031, 354.3266296386719, 354.164794921875, 354.3841552734375, 354.2100524902344, 354.266357421875], "compile_time": 1044.0441220000594, "verification_time": 0, "benchmark_time": 2481.9880740000144, "GB/s": 6.943845044059026, "GB/s/W (Jetson)": 1.0817695845742885, "GPU (W) (Jetson)": 6.418968644595101, "GB/s/W (PS)": 0.9336849430877001, "GPU (W) (PS)": 7.437032261755984, "strategy_time": 0.0254180000638371, "framework_time": 2.9213509999408416, "timestamp": "2023-11-03 10:59:49.449589+00:00"},
"2,112,1,3,4,1,0,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2595738002232144, "tegra_power": 6.659327362623431, "ps_energy": 2.6333909505347686, "time": 349.86301967075894, "times": [349.8503112792969, 350.0835266113281, 349.5647888183594, 349.8644714355469, 349.7195739746094, 349.9226989746094, 350.0357666015625], "compile_time": 1050.0133520000645, "verification_time": 0, "benchmark_time": 2452.9192119999834, "GB/s": 7.024463466623999, "GB/s/W (Jetson)": 1.0876387395522213, "GPU (W) (Jetson)": 6.4584528034703474, "GB/s/W (PS)": 0.9332454034221275, "GPU (W) (PS)": 7.526919972888074, "strategy_time": 0.07302199992409442, "framework_time": 4.161164000038298, "timestamp": "2023-11-03 10:59:52.956853+00:00"},
"4,72,1,2,6,0,1,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2261265345982144, "tegra_power": 6.596920751470869, "ps_energy": 2.5893895602962727, "time": 348.35546875, "times": [348.2623291015625, 348.17657470703125, 348.2575988769531, 348.29266357421875, 348.58447265625, 348.4543762207031, 348.46026611328125], "compile_time": 1087.712965000037, "verification_time": 0, "benchmark_time": 2441.767208999977, "GB/s": 7.054862691889346, "GB/s/W (Jetson)": 1.1039803720966666, "GPU (W) (Jetson)": 6.390387791488387, "GB/s/W (PS)": 0.949104004157183, "GPU (W) (PS)": 7.433181886271945, "strategy_time": 0.05104199999550474, "framework_time": 4.943782000054853, "timestamp": "2023-11-03 10:59:56.491400+00:00"},
"1,96,1,1,4,0,0,0": {"block_size_x": 1, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2512904575892856, "tegra_power": 6.603141273921612, "ps_energy": 2.637027187442592, "time": 352.5951494489397, "times": [352.5842590332031, 352.7777099609375, 352.58843994140625, 352.64453125, 352.50921630859375, 352.4906921386719, 352.5711975097656], "compile_time": 1038.327009999989, "verification_time": 0, "benchmark_time": 2471.3948400000163, "GB/s": 6.970033489799586, "GB/s/W (Jetson)": 1.0916405707292134, "GPU (W) (Jetson)": 6.384916131454897, "GB/s/W (PS)": 0.9319585371371912, "GPU (W) (PS)": 7.478909427891796, "strategy_time": 0.025937999907910125, "framework_time": 3.1281260000923794, "timestamp": "2023-11-03 11:00:00.004503+00:00"},
"2,120,1,2,1,0,0,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3472726004464284, "tegra_power": 6.52406367416735, "ps_energy": 2.7170800480154673, "time": 370.2502179827009, "times": [370.28863525390625, 370.30889892578125, 370.30645751953125, 370.2431640625, 370.17755126953125, 370.18316650390625, 370.24365234375], "compile_time": 1072.9783409999527, "verification_time": 0, "benchmark_time": 2595.0764560000152, "GB/s": 6.637673337210096, "GB/s/W (Jetson)": 1.0470023803509605, "GPU (W) (Jetson)": 6.339692690082628, "GB/s/W (PS)": 0.904500403583991, "GPU (W) (PS)": 7.338496822012449, "strategy_time": 0.025105000077019213, "framework_time": 2.680095999949117, "timestamp": "2023-11-03 11:00:03.675383+00:00"},
"4,248,1,3,7,1,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5740269252232144, "tegra_power": 6.2707372661552805, "ps_energy": 2.951595545995133, "time": 420.384530203683, "times": [439.3245849609375, 394.959228515625, 439.56005859375, 395.44842529296875, 439.1788024902344, 394.81640625, 439.4042053222656], "compile_time": 1047.4626470000885, "verification_time": 0, "benchmark_time": 2945.704315999933, "GB/s": 5.846076207440967, "GB/s/W (Jetson)": 0.9547685674604518, "GPU (W) (Jetson)": 6.123029608097275, "GB/s/W (PS)": 0.832634404579784, "GPU (W) (PS)": 7.021180214612173, "strategy_time": 0.04500099998949736, "framework_time": 3.24046899993391, "timestamp": "2023-11-03 11:00:07.672071+00:00"},
"2,184,1,4,2,0,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3778599330357144, "tegra_power": 6.637699024085516, "ps_energy": 2.7494054680266475, "time": 370.5930655343192, "times": [370.48974609375, 370.7320861816406, 370.4371337890625, 370.5192565917969, 370.8429260253906, 370.5744323730469, 370.5558776855469], "compile_time": 924.5649300000878, "verification_time": 0, "benchmark_time": 2599.393325000051, "GB/s": 6.631532612345686, "GB/s/W (Jetson)": 1.0335343835254773, "GPU (W) (Jetson)": 6.416363807583199, "GB/s/W (PS)": 0.8938659752371528, "GPU (W) (PS)": 7.418933929760851, "strategy_time": 0.08281399993848026, "framework_time": 2.303318999906878, "timestamp": "2023-11-03 11:00:11.198471+00:00"},
"1,120,1,4,7,1,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.031581333705357, "tegra_power": 6.57250238075577, "ps_energy": 3.4754756969763485, "time": 472.82860020228793, "times": [473.1485290527344, 471.6032409667969, 473.00177001953125, 473.6628112792969, 472.9568176269531, 472.7079162597656, 472.7191162109375], "compile_time": 1031.5480940000725, "verification_time": 0, "benchmark_time": 3313.384463000034, "GB/s": 5.197655131158684, "GB/s/W (Jetson)": 0.8106660285429956, "GPU (W) (Jetson)": 6.4115862120192615, "GB/s/W (PS)": 0.7071262222141571, "GPU (W) (PS)": 7.350392289065113, "strategy_time": 0.02421900001081667, "framework_time": 2.5547799998548726, "timestamp": "2023-11-03 11:00:15.546410+00:00"},
"1,72,1,3,5,0,0,0": {"block_size_x": 1, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8387276785714284, "tegra_power": 6.593875798908252, "ps_energy": 3.2690457551239627, "time": 442.9137529645647, "times": [442.97698974609375, 442.99920654296875, 442.7366638183594, 442.983642578125, 442.8033447265625, 442.87396240234375, 443.0224609375], "compile_time": 1040.8947669999407, "verification_time": 0, "benchmark_time": 3103.458557999943, "GB/s": 5.548710067254606, "GB/s/W (Jetson)": 0.865739964615687, "GPU (W) (Jetson)": 6.40921095714664, "GB/s/W (PS)": 0.7517790156800076, "GPU (W) (PS)": 7.380772742420357, "strategy_time": 0.04921899994769774, "framework_time": 3.5350040002413152, "timestamp": "2023-11-03 11:00:19.694431+00:00"},
"4,160,1,4,6,0,1,0": {"block_size_x": 4, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.292567661830357, "tegra_power": 6.637581797436044, "ps_energy": 2.639171556836995, "time": 355.52821132114957, "times": [355.5648498535156, 355.4241638183594, 355.51812744140625, 355.56787109375, 355.4004211425781, 355.7367248535156, 355.4853210449219], "compile_time": 1066.7909259999533, "verification_time": 0, "benchmark_time": 2491.8558939999684, "GB/s": 6.912531612800884, "GB/s/W (Jetson)": 1.0719858091507244, "GPU (W) (Jetson)": 6.448342462926169, "GB/s/W (PS)": 0.9312013058163578, "GPU (W) (PS)": 7.423240892838808, "strategy_time": 0.026093999963450187, "framework_time": 3.064057000074172, "timestamp": "2023-11-03 11:00:23.256223+00:00"},
"4,152,1,2,2,1,0,0": {"block_size_x": 4, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.221714564732143, "tegra_power": 6.654074510418595, "ps_energy": 2.59627777984565, "time": 344.7305341448103, "times": [344.74957275390625, 344.74530029296875, 344.6550598144531, 344.7284240722656, 344.66619873046875, 344.7055358886719, 344.8636474609375], "compile_time": 1078.2068390000177, "verification_time": 0, "benchmark_time": 2416.302496999947, "GB/s": 7.129046477117807, "GB/s/W (Jetson)": 1.106172700585548, "GPU (W) (Jetson)": 6.444786129095461, "GB/s/W (PS)": 0.9465859235393931, "GPU (W) (PS)": 7.531325260428009, "strategy_time": 0.024113999984365364, "framework_time": 2.5615509999852293, "timestamp": "2023-11-03 11:00:26.753582+00:00"},
"8,32,1,4,7,1,0,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4022739955357144, "tegra_power": 6.615672060740056, "ps_energy": 2.764204528534362, "time": 372.8319789341518, "times": [372.67578125, 372.4401550292969, 373.31854248046875, 372.5342712402344, 373.2877502441406, 372.5588073730469, 373.008544921875], "compile_time": 1042.236484, "verification_time": 0, "benchmark_time": 2613.2057240000677, "GB/s": 6.59170923863817, "GB/s/W (Jetson)": 1.0230306803333429, "GPU (W) (Jetson)": 6.443315303594157, "GB/s/W (PS)": 0.8890803754319402, "GPU (W) (PS)": 7.414075735768808, "strategy_time": 0.026094000077137025, "framework_time": 2.255084999887913, "timestamp": "2023-11-03 11:00:30.411366+00:00"},
"4,48,1,3,8,0,1,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2757045200892856, "tegra_power": 6.656538746580137, "ps_energy": 2.62637890079746, "time": 352.81823294503346, "times": [352.7616271972656, 352.8427734375, 352.6551513671875, 352.69964599609375, 352.81756591796875, 353.11785888671875, 352.8330078125], "compile_time": 1058.4984139999278, "verification_time": 0, "benchmark_time": 2473.506985999961, "GB/s": 6.965626406226223, "GB/s/W (Jetson)": 1.0799293046636729, "GPU (W) (Jetson)": 6.450076293091757, "GB/s/W (PS)": 0.9357370329367887, "GPU (W) (PS)": 7.44399992844653, "strategy_time": 0.023281999915525375, "framework_time": 2.562485000112247, "timestamp": "2023-11-03 11:00:33.946411+00:00"},
"2,80,1,2,4,1,1,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2405482700892856, "tegra_power": 6.6281598252631495, "ps_energy": 2.604607786865764, "time": 347.7354997907366, "times": [347.7040100097656, 347.7181396484375, 347.6690673828125, 347.9453125, 347.63671875, 347.68707275390625, 347.7881774902344], "compile_time": 929.1314069999999, "verification_time": 0, "benchmark_time": 2437.3655979999285, "GB/s": 7.06744063082129, "GB/s/W (Jetson)": 1.0968743824037608, "GPU (W) (Jetson)": 6.443254345436756, "GB/s/W (PS)": 0.9435585704661257, "GPU (W) (PS)": 7.490198120218351, "strategy_time": 0.057500999901094474, "framework_time": 5.084293000095386, "timestamp": "2023-11-03 11:00:37.318133+00:00"},
"4,96,1,2,7,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4600132533482144, "tegra_power": 6.642770617563499, "ps_energy": 2.8389423864328234, "time": 380.41537039620533, "times": [380.3115539550781, 380.40087890625, 381.40228271484375, 380.1894836425781, 380.22235107421875, 380.1553039550781, 380.2257385253906], "compile_time": 1092.310282000085, "verification_time": 0, "benchmark_time": 2667.864811000072, "GB/s": 6.460306788972254, "GB/s/W (Jetson)": 0.9990190079891114, "GPU (W) (Jetson)": 6.466650521471025, "GB/s/W (PS)": 0.8656744891142415, "GPU (W) (PS)": 7.4627436411837005, "strategy_time": 0.026198000000476895, "framework_time": 2.505139999925632, "timestamp": "2023-11-03 11:00:41.080893+00:00"},
"1,184,1,4,3,0,1,0": {"block_size_x": 1, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4574672154017856, "tegra_power": 6.588466220198777, "ps_energy": 2.8462628871268083, "time": 383.40950666155135, "times": [383.5643615722656, 383.33026123046875, 383.9456787109375, 383.5663146972656, 383.2085266113281, 383.1941223144531, 383.0572814941406], "compile_time": 1041.087808000043, "verification_time": 0, "benchmark_time": 2687.101834000032, "GB/s": 6.409856712732497, "GB/s/W (Jetson)": 1.00005403311075, "GPU (W) (Jetson)": 6.409510386947906, "GB/s/W (PS)": 0.8634480009261728, "GPU (W) (PS)": 7.423558460795553, "strategy_time": 0.026667999918572605, "framework_time": 2.504723000015474, "timestamp": "2023-11-03 11:00:44.811670+00:00"},
"1,40,1,3,1,1,0,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.5264369419642856, "tegra_power": 6.360019127118838, "ps_energy": 4.054662080009621, "time": 564.2087838309152, "times": [564.2103271484375, 564.18115234375, 564.0547485351562, 564.189453125, 564.2582397460938, 564.3489990234375, 564.2185668945312], "compile_time": 1048.5627470000054, "verification_time": 0, "benchmark_time": 3952.637062000008, "GB/s": 4.355834347904277, "GB/s/W (Jetson)": 0.6969073998615369, "GPU (W) (Jetson)": 6.250234032196679, "GB/s/W (PS)": 0.606117094718327, "GPU (W) (PS)": 7.186456851094933, "strategy_time": 0.023854000005485432, "framework_time": 2.5512339999522737, "timestamp": "2023-11-03 11:00:49.815511+00:00"},
"2,88,1,2,4,1,1,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4287283761160716, "tegra_power": 6.5528588973363275, "ps_energy": 2.8227429189075144, "time": 381.5438711983817, "times": [381.5371398925781, 381.4059753417969, 381.3498840332031, 381.4482727050781, 381.651611328125, 381.7942810058594, 381.61993408203125], "compile_time": 1082.5553440000704, "verification_time": 0, "benchmark_time": 2674.407290999966, "GB/s": 6.441198995756333, "GB/s/W (Jetson)": 1.0118875474786928, "GPU (W) (Jetson)": 6.3655284737971, "GB/s/W (PS)": 0.8706425170844692, "GPU (W) (PS)": 7.398213238340407, "strategy_time": 0.025209000000359083, "framework_time": 2.6427990000001955, "timestamp": "2023-11-03 11:00:53.575211+00:00"},
"4,56,1,4,5,0,1,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3069893973214284, "tegra_power": 6.703231126847112, "ps_energy": 2.681520537848363, "time": 353.99928501674106, "times": [353.83135986328125, 353.77099609375, 353.9128723144531, 353.6676940917969, 354.6529541015625, 354.198486328125, 353.96063232421875], "compile_time": 902.255154000045, "verification_time": 0, "benchmark_time": 2483.2249419999926, "GB/s": 6.942386903080262, "GB/s/W (Jetson)": 1.0652844797871375, "GPU (W) (Jetson)": 6.516932363895391, "GB/s/W (PS)": 0.9164949383426927, "GPU (W) (PS)": 7.574932072875658, "strategy_time": 0.026563000005808135, "framework_time": 2.607224000030328, "timestamp": "2023-11-03 11:00:56.963379+00:00"},
"4,224,1,3,5,1,1,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2468436104910716, "tegra_power": 6.619122762088994, "ps_energy": 2.617357367977417, "time": 350.7994471958705, "times": [350.9311828613281, 350.5989990234375, 350.9280090332031, 350.74505615234375, 350.92584228515625, 350.5651550292969, 350.9018859863281], "compile_time": 1041.154787000096, "verification_time": 0, "benchmark_time": 2458.738273999984, "GB/s": 7.005712294146767, "GB/s/W (Jetson)": 1.0938010943551453, "GPU (W) (Jetson)": 6.404923463965825, "GB/s/W (PS)": 0.9389623404384893, "GPU (W) (PS)": 7.461121700445563, "strategy_time": 0.02333299994461413, "framework_time": 2.6082140000198706, "timestamp": "2023-11-03 11:01:00.465959+00:00"},
"2,32,1,3,2,0,1,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.295131138392857, "tegra_power": 6.648757285714749, "ps_energy": 2.671854525094269, "time": 356.5296369280134, "times": [356.51446533203125, 356.64019775390625, 356.5307312011719, 356.40155029296875, 356.5198974609375, 356.5520324707031, 356.548583984375], "compile_time": 1092.5200269999777, "verification_time": 0, "benchmark_time": 2498.7729700000045, "GB/s": 6.893115593911234, "GB/s/W (Jetson)": 1.070788487371972, "GPU (W) (Jetson)": 6.437420345103779, "GB/s/W (PS)": 0.9198105573930115, "GPU (W) (PS)": 7.494060095861655, "strategy_time": 0.02651099998729478, "framework_time": 2.593264000097406, "timestamp": "2023-11-03 11:01:04.059926+00:00"},
"1,144,1,3,4,0,1,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5524379185267856, "tegra_power": 6.603661950717954, "ps_energy": 2.9485508214981047, "time": 397.6991228376116, "times": [397.6543273925781, 397.7100524902344, 397.6748046875, 397.7397766113281, 397.69647216796875, 397.7248840332031, 397.69354248046875], "compile_time": 1052.9276349999463, "verification_time": 0, "benchmark_time": 2787.0198389999814, "GB/s": 6.17954594032003, "GB/s/W (Jetson)": 0.9628441820902253, "GPU (W) (Jetson)": 6.418012441956017, "GB/s/W (PS)": 0.8334941972447801, "GPU (W) (PS)": 7.414023949713503, "strategy_time": 0.028957999916201516, "framework_time": 3.3787960001063766, "timestamp": "2023-11-03 11:01:07.903336+00:00"},
"2,104,1,4,4,0,0,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5738525390625, "tegra_power": 6.683031526464795, "ps_energy": 2.977932062652436, "time": 395.4354553222656, "times": [395.26959228515625, 395.2987060546875, 395.31317138671875, 395.3651428222656, 395.4209899902344, 395.97344970703125, 395.4071350097656], "compile_time": 903.3092150000357, "verification_time": 0, "benchmark_time": 2772.836214999984, "GB/s": 6.214920708101767, "GB/s/W (Jetson)": 0.9548332558691012, "GPU (W) (Jetson)": 6.508906837817319, "GB/s/W (PS)": 0.8252706738417068, "GPU (W) (PS)": 7.530766456501804, "strategy_time": 0.07661500001177046, "framework_time": 2.5635759999431684, "timestamp": "2023-11-03 11:01:11.582394+00:00"},
"2,112,1,1,1,0,0,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.248011997767857, "tegra_power": 6.652667639588195, "ps_energy": 2.6004783108065306, "time": 349.15728759765625, "times": [349.1362609863281, 349.1529235839844, 349.1304626464844, 349.40582275390625, 349.1383972167969, 348.9465637207031, 349.1905822753906], "compile_time": 1028.193698999985, "verification_time": 0, "benchmark_time": 2447.5752339999417, "GB/s": 7.038661621268983, "GB/s/W (Jetson)": 1.0932325994880148, "GPU (W) (Jetson)": 6.438393462256198, "GB/s/W (PS)": 0.9450569111794601, "GPU (W) (PS)": 7.447870639329559, "strategy_time": 0.023541999894405308, "framework_time": 2.566597000281945, "timestamp": "2023-11-03 11:01:15.060809+00:00"},
"2,208,1,3,3,1,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3448486328125, "tegra_power": 6.723399652700495, "ps_energy": 2.741763962180422, "time": 360.3413739885603, "times": [360.1885986328125, 360.06536865234375, 360.1875, 360.1780090332031, 360.2011413574219, 360.25531005859375, 361.3136901855469], "compile_time": 1049.7814609999523, "verification_time": 0, "benchmark_time": 2527.3953959999744, "GB/s": 6.82019933708201, "GB/s/W (Jetson)": 1.0480847102920505, "GPU (W) (Jetson)": 6.507297807236927, "GB/s/W (PS)": 0.8963572480708961, "GPU (W) (PS)": 7.608795881062119, "strategy_time": 0.04447899993920146, "framework_time": 3.4843690001480354, "timestamp": "2023-11-03 11:01:18.641594+00:00"},
"1,120,1,1,2,0,1,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.427455357142857, "tegra_power": 6.69424216081516, "ps_energy": 2.8243061412286545, "time": 372.5640651157924, "times": [372.5137023925781, 372.5431823730469, 372.52777099609375, 372.5950927734375, 372.6394348144531, 372.59869384765625, 372.53057861328125], "compile_time": 1053.787586999988, "verification_time": 0, "benchmark_time": 2615.617111000006, "GB/s": 6.596449389814826, "GB/s/W (Jetson)": 1.0124182068965517, "GPU (W) (Jetson)": 6.515538089773655, "GB/s/W (PS)": 0.8701606260470308, "GPU (W) (PS)": 7.580726123843598, "strategy_time": 0.02312599997367215, "framework_time": 2.438782000012907, "timestamp": "2023-11-03 11:01:22.313735+00:00"},
"2,136,1,4,2,0,1,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.392979213169643, "tegra_power": 6.652460345900653, "ps_energy": 2.756427651086337, "time": 370.80875069754467, "times": [370.73321533203125, 370.8480224609375, 370.9271240234375, 370.7864685058594, 370.7974548339844, 370.8152160644531, 370.7537536621094], "compile_time": 1088.6634780000577, "verification_time": 0, "benchmark_time": 2598.9481619999424, "GB/s": 6.627675305334354, "GB/s/W (Jetson)": 1.0270043243479592, "GPU (W) (Jetson)": 6.453405451376496, "GB/s/W (PS)": 0.8915887921206399, "GPU (W) (PS)": 7.433556101092813, "strategy_time": 0.025937000032172364, "framework_time": 2.289354000026833, "timestamp": "2023-11-03 11:01:26.003718+00:00"},
"4,96,1,1,4,0,1,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2355259486607144, "tegra_power": 6.678846637113959, "ps_energy": 2.5908540910473414, "time": 345.1626238141741, "times": [345.1387634277344, 345.1689147949219, 345.203857421875, 345.2056884765625, 345.129638671875, 345.1581726074219, 345.1333312988281], "compile_time": 1028.0975910000052, "verification_time": 0, "benchmark_time": 2419.121501999939, "GB/s": 7.120122024924411, "GB/s/W (Jetson)": 1.099338614911774, "GPU (W) (Jetson)": 6.476732399230628, "GB/s/W (PS)": 0.9485675046279916, "GPU (W) (PS)": 7.506183787854693, "strategy_time": 0.028959000019312953, "framework_time": 2.808888999993542, "timestamp": "2023-11-03 11:01:29.453831+00:00"},
"2,184,1,2,3,0,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.335728236607143, "tegra_power": 6.758116745214791, "ps_energy": 2.7064084821779164, "time": 357.15149361746654, "times": [357.01177978515625, 357.32244873046875, 357.1681823730469, 357.13946533203125, 357.1241149902344, 357.130615234375, 357.1638488769531], "compile_time": 1076.1289689999103, "verification_time": 0, "benchmark_time": 2503.295112000046, "GB/s": 6.881113600023904, "GB/s/W (Jetson)": 1.0521772017321187, "GPU (W) (Jetson)": 6.539880914256699, "GB/s/W (PS)": 0.9080669145783589, "GPU (W) (PS)": 7.577760503716843, "strategy_time": 0.02734399993187253, "framework_time": 2.545136000094317, "timestamp": "2023-11-03 11:01:33.035881+00:00"},
"2,40,1,1,2,0,1,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6581508091517856, "tegra_power": 6.585095579906247, "ps_energy": 3.064152078382644, "time": 415.23004150390625, "times": [415.28759765625, 415.22332763671875, 415.2078552246094, 415.1561584472656, 415.2018127441406, 415.248291015625, 415.2852478027344], "compile_time": 1065.69153800001, "verification_time": 0, "benchmark_time": 2910.962626000014, "GB/s": 5.9186469049756365, "GB/s/W (Jetson)": 0.9245525090369943, "GPU (W) (Jetson)": 6.401634138812134, "GB/s/W (PS)": 0.8020489639982877, "GPU (W) (PS)": 7.3794084534074305, "strategy_time": 0.027135999971505953, "framework_time": 2.455966999946213, "timestamp": "2023-11-03 11:01:37.015312+00:00"},
"4,72,1,2,4,1,0,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2407400948660716, "tegra_power": 6.709962110060202, "ps_energy": 2.618900743677451, "time": 345.17515345982144, "times": [345.1769714355469, 345.22650146484375, 345.1923828125, 345.2037048339844, 345.17083740234375, 345.11761474609375, 345.1380615234375], "compile_time": 1081.9309910000356, "verification_time": 0, "benchmark_time": 2419.172654000022, "GB/s": 7.119863568876679, "GB/s/W (Jetson)": 1.0967804814270037, "GPU (W) (Jetson)": 6.491603096011644, "GB/s/W (PS)": 0.9384089893185668, "GPU (W) (PS)": 7.587164711675263, "strategy_time": 0.025000000050567905, "framework_time": 2.492374999974345, "timestamp": "2023-11-03 11:01:40.518993+00:00"},
"4,120,1,1,8,0,1,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2577078683035716, "tegra_power": 6.700306315654031, "ps_energy": 2.605166673950667, "time": 347.28050449916293, "times": [347.29730224609375, 347.2644348144531, 347.2367248535156, 347.270263671875, 347.28411865234375, 347.26458740234375, 347.3460998535156], "compile_time": 1030.3470809999453, "verification_time": 0, "benchmark_time": 2442.101876000038, "GB/s": 7.076700154949019, "GB/s/W (Jetson)": 1.0885376423153568, "GPU (W) (Jetson)": 6.501107430604454, "GB/s/W (PS)": 0.9433561486003174, "GPU (W) (PS)": 7.501620851731245, "strategy_time": 0.023801999986972078, "framework_time": 2.7597740000828708, "timestamp": "2023-11-03 11:01:43.994282+00:00"},
"4,96,1,4,5,0,1,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.312412806919643, "tegra_power": 6.750436267081481, "ps_energy": 2.677826592035347, "time": 354.3283952985491, "times": [354.06707763671875, 354.33697509765625, 354.3154296875, 354.4340515136719, 354.3721923828125, 354.25897216796875, 354.5140686035156], "compile_time": 1045.4848239999137, "verification_time": 0, "benchmark_time": 2484.8171540000976, "GB/s": 6.935938616856494, "GB/s/W (Jetson)": 1.0627860184158728, "GPU (W) (Jetson)": 6.526185418956491, "GB/s/W (PS)": 0.917759203418785, "GPU (W) (PS)": 7.557471056698888, "strategy_time": 0.027656000042952655, "framework_time": 2.8053469999349545, "timestamp": "2023-11-03 11:01:47.527554+00:00"},
"4,80,1,4,7,1,0,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4982735770089284, "tegra_power": 6.7160356488439845, "ps_energy": 2.910502494145151, "time": 383.6312997000558, "times": [383.2633972167969, 383.3255310058594, 383.3431701660156, 383.55975341796875, 384.9597473144531, 383.5161437988281, 383.45135498046875], "compile_time": 1039.9777349999795, "verification_time": 0, "benchmark_time": 2690.2358880000747, "GB/s": 6.406150910839359, "GB/s/W (Jetson)": 0.9837193262646499, "GPU (W) (Jetson)": 6.512173482617859, "GB/s/W (PS)": 0.8443902745123143, "GPU (W) (PS)": 7.586718019152094, "strategy_time": 0.027292000027046015, "framework_time": 2.5825309999163437, "timestamp": "2023-11-03 11:01:51.260707+00:00"},
"1,208,1,3,8,1,1,0": {"block_size_x": 1, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.454868861607143, "tegra_power": 6.684498872479851, "ps_energy": 2.8696786546640527, "time": 379.27162388392856, "times": [379.2221374511719, 379.1402587890625, 379.2327575683594, 379.2284240722656, 379.3099365234375, 379.48748779296875, 379.2803649902344], "compile_time": 1040.6139970000368, "verification_time": 0, "benchmark_time": 2658.605577000003, "GB/s": 6.4797887456830106, "GB/s/W (Jetson)": 1.0011125394254539, "GPU (W) (Jetson)": 6.472587736641287, "GB/s/W (PS)": 0.8564025090424997, "GPU (W) (PS)": 7.566288838793494, "strategy_time": 0.025729000071805785, "framework_time": 2.413360999980796, "timestamp": "2023-11-03 11:01:54.962640+00:00"},
"1,88,1,1,4,0,0,0": {"block_size_x": 1, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8407505580357144, "tegra_power": 6.683199267429706, "ps_energy": 3.2488213072006147, "time": 435.99509974888394, "times": [436.0513610839844, 435.9814453125, 436.07354736328125, 435.97662353515625, 435.95318603515625, 435.9653625488281, 435.96417236328125], "compile_time": 1034.3581509999922, "verification_time": 0, "benchmark_time": 3055.1154519999955, "GB/s": 5.636760599867936, "GB/s/W (Jetson)": 0.865123476979742, "GPU (W) (Jetson)": 6.515556160314359, "GB/s/W (PS)": 0.7564589639180924, "GPU (W) (PS)": 7.451508764827421, "strategy_time": 0.023802999976396677, "framework_time": 2.3509119999971517, "timestamp": "2023-11-03 11:01:59.054565+00:00"},
"4,112,1,3,2,0,1,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2879115513392856, "tegra_power": 6.750866048407813, "ps_energy": 2.6597619350767934, "time": 348.38856288364957, "times": [348.1869812011719, 348.2532958984375, 348.1659240722656, 348.21405029296875, 348.0648498535156, 348.1280822753906, 349.7067565917969], "compile_time": 936.6615930000535, "verification_time": 0, "benchmark_time": 2445.4968710000458, "GB/s": 7.054192536225014, "GB/s/W (Jetson)": 1.0741673988932758, "GPU (W) (Jetson)": 6.567125890706618, "GB/s/W (PS)": 0.9239924699986517, "GPU (W) (PS)": 7.634469722718961, "strategy_time": 0.02750000010109943, "framework_time": 2.642009999817674, "timestamp": "2023-11-03 11:02:02.439447+00:00"},
"1,184,1,3,2,0,1,0": {"block_size_x": 1, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4683314732142856, "tegra_power": 6.7099709577579905, "ps_energy": 2.8644746624671433, "time": 377.8322492327009, "times": [377.75714111328125, 377.7856140136719, 378.174072265625, 377.7963562011719, 377.8296813964844, 377.7525634765625, 377.7303161621094], "compile_time": 942.5410149999607, "verification_time": 0, "benchmark_time": 2647.8399620000346, "GB/s": 6.50447389017448, "GB/s/W (Jetson)": 0.9956523370824619, "GPU (W) (Jetson)": 6.5328766356682255, "GB/s/W (PS)": 0.8579583657002201, "GPU (W) (PS)": 7.58133978315588, "strategy_time": 0.02651099998729478, "framework_time": 2.582530000040606, "timestamp": "2023-11-03 11:02:06.032491+00:00"},
"1,136,1,2,7,1,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.005859375, "tegra_power": 6.71995438050414, "ps_energy": 3.4656135689983785, "time": 459.6768798828125, "times": [459.39697265625, 459.481201171875, 459.4884338378906, 459.8431701660156, 459.83551025390625, 459.7884521484375, 459.9044189453125], "compile_time": 919.1162390000045, "verification_time": 0, "benchmark_time": 3220.5700660000502, "GB/s": 5.346364169167105, "GB/s/W (Jetson)": 0.817603118908382, "GPU (W) (Jetson)": 6.539070174176038, "GB/s/W (PS)": 0.7091384977207047, "GPU (W) (PS)": 7.539238366484482, "strategy_time": 0.0257819999660569, "framework_time": 2.540864000025067, "timestamp": "2023-11-03 11:02:10.174799+00:00"},
"1,160,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.574986049107143, "tegra_power": 6.763953994495474, "ps_energy": 2.9540102740883674, "time": 392.10351126534596, "times": [392.8598327636719, 392.7237548828125, 391.0605773925781, 391.65240478515625, 392.1029052734375, 392.0356140136719, 392.28948974609375], "compile_time": 1057.4243529999876, "verification_time": 0, "benchmark_time": 2747.602981, "GB/s": 6.267732701676528, "GB/s/W (Jetson)": 0.9544129378301502, "GPU (W) (Jetson)": 6.567107855773796, "GB/s/W (PS)": 0.831953775366755, "GPU (W) (PS)": 7.5337511376921, "strategy_time": 0.02671899994766136, "framework_time": 2.63466600006268, "timestamp": "2023-11-03 11:02:13.982543+00:00"},
"2,56,1,2,7,1,0,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.968715122767857, "tegra_power": 6.700114851309816, "ps_energy": 3.40163352606591, "time": 455.14758736746654, "times": [455.0390625, 454.9980773925781, 455.0589599609375, 455.12652587890625, 455.2125549316406, 455.2278137207031, 455.3701171875], "compile_time": 1096.9488829999818, "verification_time": 0, "benchmark_time": 3189.2624359999218, "GB/s": 5.399567235354452, "GB/s/W (Jetson)": 0.8278328833750396, "GPU (W) (Jetson)": 6.522532921548906, "GB/s/W (PS)": 0.7224764164534464, "GPU (W) (PS)": 7.473693413911426, "strategy_time": 0.02494800003205455, "framework_time": 2.6562800001102005, "timestamp": "2023-11-03 11:02:18.271491+00:00"},
"2,232,1,2,4,0,1,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3472726004464284, "tegra_power": 6.748978484221384, "ps_energy": 2.710213967179438, "time": 359.48423549107144, "times": [359.3798828125, 359.4317626953125, 359.50848388671875, 359.5495300292969, 359.5894775390625, 359.4791564941406, 359.45135498046875], "compile_time": 1114.2629390000138, "verification_time": 0, "benchmark_time": 2519.271257000014, "GB/s": 6.836461122259809, "GB/s/W (Jetson)": 1.0470023803509605, "GPU (W) (Jetson)": 6.529556427529985, "GB/s/W (PS)": 0.9067918731736383, "GPU (W) (PS)": 7.539173347830302, "strategy_time": 0.02734399993187253, "framework_time": 2.916909000077794, "timestamp": "2023-11-03 11:02:21.908053+00:00"},
"16,32,1,2,8,1,0,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3274623325892856, "tegra_power": 6.934888626672778, "ps_energy": 2.7251089568482194, "time": 347.531973702567, "times": [347.4429626464844, 347.5091552734375, 347.50457763671875, 347.4372863769531, 347.6667785644531, 347.59832763671875, 347.5647277832031], "compile_time": 964.9946760000603, "verification_time": 0, "benchmark_time": 2436.2519250000787, "GB/s": 7.071579555161509, "GB/s/W (Jetson)": 1.0559139735962717, "GPU (W) (Jetson)": 6.697117125059777, "GB/s/W (PS)": 0.901835500494038, "GPU (W) (PS)": 7.841318678725332, "strategy_time": 0.025729999947543547, "framework_time": 2.8328429999646687, "timestamp": "2023-11-03 11:02:25.312513+00:00"},
"8,80,1,4,5,0,1,0": {"block_size_x": 8, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3807198660714284, "tegra_power": 6.993149958219671, "ps_energy": 2.73799004296708, "time": 352.6896667480469, "times": [352.6650390625, 352.6819763183594, 352.63775634765625, 352.6025390625, 352.646240234375, 352.8974609375, 352.6966552734375], "compile_time": 946.2601320000203, "verification_time": 0, "benchmark_time": 2475.624236000044, "GB/s": 6.968165590617235, "GB/s/W (Jetson)": 1.0322928098447113, "GPU (W) (Jetson)": 6.750183207868571, "GB/s/W (PS)": 0.8975927455662951, "GPU (W) (PS)": 7.763170574892502, "strategy_time": 0.02640600007453031, "framework_time": 2.487631999883888, "timestamp": "2023-11-03 11:02:28.737262+00:00"},
"16,64,1,3,6,1,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3148716517857144, "tegra_power": 6.864559591745175, "ps_energy": 2.6776610165013284, "time": 349.1944362095424, "times": [349.0600891113281, 349.1671447753906, 349.1776123046875, 349.2651672363281, 349.37957763671875, 349.2207336425781, 349.0907287597656], "compile_time": 1099.749322999969, "verification_time": 0, "benchmark_time": 2449.3178409999246, "GB/s": 7.037912822085341, "GB/s/W (Jetson)": 1.0616571325257638, "GPU (W) (Jetson)": 6.629176790195537, "GB/s/W (PS)": 0.9178159538697458, "GPU (W) (PS)": 7.668109049980781, "strategy_time": 0.022240000021156447, "framework_time": 2.4385160000974793, "timestamp": "2023-11-03 11:02:32.288845+00:00"},
"1,120,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.585902622767857, "tegra_power": 6.770346366816422, "ps_energy": 3.0063678865936447, "time": 393.58861868722096, "times": [394.28936767578125, 394.0267333984375, 393.30194091796875, 392.9826965332031, 393.5318298339844, 393.9423828125, 393.0453796386719], "compile_time": 1054.1849449999745, "verification_time": 0, "benchmark_time": 2758.461282999974, "GB/s": 6.244082992534442, "GB/s/W (Jetson)": 0.9503838150600865, "GPU (W) (Jetson)": 6.570064529286696, "GB/s/W (PS)": 0.8174648255655017, "GPU (W) (PS)": 7.638350663241004, "strategy_time": 0.027030999945054646, "framework_time": 2.5229450001234, "timestamp": "2023-11-03 11:02:36.104327+00:00"},
"2,248,1,4,7,1,0,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.612025669642857, "tegra_power": 6.885852850894914, "ps_energy": 2.9704619941499653, "time": 389.3243669782366, "times": [389.95281982421875, 388.78082275390625, 388.6283264160156, 391.0009765625, 388.86602783203125, 388.9688415527344, 389.07275390625], "compile_time": 1053.3837180000774, "verification_time": 0, "benchmark_time": 2731.270123999934, "GB/s": 6.312474143539495, "GB/s/W (Jetson)": 0.9408789617048549, "GPU (W) (Jetson)": 6.70912455317463, "GB/s/W (PS)": 0.8273460508298046, "GPU (W) (PS)": 7.6297870005039155, "strategy_time": 0.024792000090201327, "framework_time": 2.4191929999233253, "timestamp": "2023-11-03 11:02:39.891480+00:00"},
"4,104,1,2,2,1,0,0": {"block_size_x": 4, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.29345703125, "tegra_power": 6.851589393774277, "ps_energy": 2.6456102975756557, "time": 345.2298017229353, "times": [345.2042236328125, 345.1621398925781, 345.2575378417969, 345.2522277832031, 345.401611328125, 345.23712158203125, 345.09375], "compile_time": 1124.825157000032, "verification_time": 0, "benchmark_time": 2419.759223000028, "GB/s": 7.118736527770423, "GB/s/W (Jetson)": 1.0715701085799445, "GPU (W) (Jetson)": 6.643276506848669, "GB/s/W (PS)": 0.9289349993277763, "GPU (W) (PS)": 7.663331161945557, "strategy_time": 0.026458999968781427, "framework_time": 2.5625800000170784, "timestamp": "2023-11-03 11:02:43.438707+00:00"},
"2,144,1,4,6,0,0,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6922433035714284, "tegra_power": 6.9391098536729166, "ps_energy": 3.1158148395556964, "time": 398.2288818359375, "times": [398.0582275390625, 398.3230285644531, 398.0946350097656, 398.7586364746094, 397.9054260253906, 398.1307678222656, 398.3314514160156], "compile_time": 1055.2453249999871, "verification_time": 0, "benchmark_time": 2803.577435999955, "GB/s": 6.171325366130733, "GB/s/W (Jetson)": 0.9128446885687636, "GPU (W) (Jetson)": 6.760542558238103, "GB/s/W (PS)": 0.7887503354822087, "GPU (W) (PS)": 7.824180971483005, "strategy_time": 0.026770999966174713, "framework_time": 2.600341000061235, "timestamp": "2023-11-03 11:02:47.300214+00:00"},
"2,160,1,2,8,1,1,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.338413783482143, "tegra_power": 6.94419747531895, "ps_energy": 2.691753831121527, "time": 350.64363752092635, "times": [350.489990234375, 350.76458740234375, 350.68707275390625, 350.7012023925781, 350.588134765625, 350.6755676269531, 350.5989074707031], "compile_time": 976.8304570000055, "verification_time": 0, "benchmark_time": 2457.935073000044, "GB/s": 7.00882530587292, "GB/s/W (Jetson)": 1.0509688308201708, "GPU (W) (Jetson)": 6.668918335478386, "GB/s/W (PS)": 0.9130106815808018, "GPU (W) (PS)": 7.676608222959367, "strategy_time": 0.02650999999787018, "framework_time": 2.7572179999424407, "timestamp": "2023-11-03 11:02:50.737821+00:00"},
"4,256,1,2,5,0,1,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.2901436941964284, "tegra_power": 6.816348132784183, "ps_energy": 2.6382639902217955, "time": 345.625967843192, "times": [345.58807373046875, 345.7090759277344, 345.5411376953125, 345.6700439453125, 345.69415283203125, 345.6199035644531, 345.55938720703125], "compile_time": 1119.160987999976, "verification_time": 0, "benchmark_time": 2422.553568000012, "GB/s": 7.110576833494743, "GB/s/W (Jetson)": 1.0731204361664866, "GPU (W) (Jetson)": 6.626075316295244, "GB/s/W (PS)": 0.9315216404077109, "GPU (W) (PS)": 7.633292158819376, "strategy_time": 0.026927000021714775, "framework_time": 3.020866000042588, "timestamp": "2023-11-03 11:02:54.282641+00:00"},
"4,168,1,4,5,1,1,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3157435825892856, "tegra_power": 6.817764631830611, "ps_energy": 2.6555684130054424, "time": 350.5604684012277, "times": [350.59912109375, 350.55938720703125, 350.5807800292969, 350.5487976074219, 350.5403747558594, 350.5611572265625, 350.5336608886719], "compile_time": 1046.4919239999517, "verification_time": 0, "benchmark_time": 2456.893439000055, "GB/s": 7.010488122657338, "GB/s/W (Jetson)": 1.0612573941593746, "GPU (W) (Jetson)": 6.60583206415289, "GB/s/W (PS)": 0.9254515861704381, "GPU (W) (PS)": 7.575207852489687, "strategy_time": 0.027552000005925947, "framework_time": 2.7904989999569807, "timestamp": "2023-11-03 11:02:57.788898+00:00"},
"1,32,1,2,8,1,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.386439732142857, "tegra_power": 6.909294779978083, "ps_energy": 2.7629093453566123, "time": 357.92208426339283, "times": [357.88140869140625, 357.86285400390625, 357.8560485839844, 357.9152526855469, 357.92694091796875, 357.9685363769531, 358.0435485839844], "compile_time": 1091.539846000046, "verification_time": 0, "benchmark_time": 2508.3684869999843, "GB/s": 6.866298862384434, "GB/s/W (Jetson)": 1.029818589968432, "GPU (W) (Jetson)": 6.667483894027309, "GB/s/W (PS)": 0.8894971541973609, "GPU (W) (PS)": 7.719303912310152, "strategy_time": 0.025572999902578886, "framework_time": 2.5526310000714147, "timestamp": "2023-11-03 11:03:01.391438+00:00"},
"16,32,1,2,8,0,0,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3527134486607144, "tegra_power": 6.935623374784382, "ps_energy": 2.697870378477546, "time": 349.35754830496654, "times": [349.28045654296875, 349.36688232421875, 349.3672790527344, 349.4184875488281, 349.3155212402344, 349.37030029296875, 349.3839111328125], "compile_time": 924.5059970000966, "verification_time": 0, "benchmark_time": 2448.450075999972, "GB/s": 7.034626879894044, "GB/s/W (Jetson)": 1.0445810990705189, "GPU (W) (Jetson)": 6.734399929458365, "GB/s/W (PS)": 0.9109407255462232, "GPU (W) (PS)": 7.722376091678087, "strategy_time": 0.02687500000320142, "framework_time": 2.686642999947253, "timestamp": "2023-11-03 11:03:04.767440+00:00"},
"2,160,1,3,2,0,1,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.325160435267857, "tegra_power": 6.844506775554365, "ps_energy": 2.698816690278688, "time": 349.44281005859375, "times": [349.42926025390625, 349.45458984375, 349.53802490234375, 349.3616638183594, 349.3885498046875, 349.4423828125, 349.4851989746094], "compile_time": 1090.6179549999706, "verification_time": 0, "benchmark_time": 2449.3729310000845, "GB/s": 7.032910477076107, "GB/s/W (Jetson)": 1.0569593232033838, "GPU (W) (Jetson)": 6.653908360220603, "GB/s/W (PS)": 0.9106213137233194, "GPU (W) (PS)": 7.723199941719095, "strategy_time": 0.024635000045236666, "framework_time": 2.3460139998405793, "timestamp": "2023-11-03 11:03:08.309856+00:00"},
"4,184,1,4,6,0,0,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4278738839285716, "tegra_power": 6.870940295798216, "ps_energy": 2.8161357007635552, "time": 366.85038103376115, "times": [364.6128234863281, 373.47576904296875, 364.7223815917969, 368.68212890625, 365.3680114746094, 366.4259948730469, 364.6655578613281], "compile_time": 1069.6288789999926, "verification_time": 0, "benchmark_time": 2570.9106940000765, "GB/s": 6.699188898413131, "GB/s/W (Jetson)": 1.0122436821237717, "GPU (W) (Jetson)": 6.6181582722824945, "GB/s/W (PS)": 0.8726852187320577, "GPU (W) (PS)": 7.676523853751665, "strategy_time": 0.02625000001899025, "framework_time": 2.6385689999415263, "timestamp": "2023-11-03 11:03:11.953114+00:00"},
"1,192,1,4,2,0,1,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3458426339285716, "tegra_power": 6.8350120497228835, "ps_energy": 2.706466446520608, "time": 353.21881103515625, "times": [353.1866149902344, 353.23004150390625, 353.24615478515625, 353.1589660644531, 353.1993713378906, 353.2011413574219, 353.30938720703125], "compile_time": 1091.4330640000571, "verification_time": 0, "benchmark_time": 2475.364575999947, "GB/s": 6.957726834529751, "GB/s/W (Jetson)": 1.0476406066012487, "GPU (W) (Jetson)": 6.641329851753245, "GB/s/W (PS)": 0.9080474665257546, "GPU (W) (PS)": 7.662294198287277, "strategy_time": 0.029426999958559463, "framework_time": 2.6838830000315284, "timestamp": "2023-11-03 11:03:15.522699+00:00"},
"1,32,1,4,2,1,1,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3738490513392856, "tegra_power": 6.814865697500116, "ps_energy": 2.738019302218553, "time": 359.67452566964283, "times": [359.71905517578125, 359.5616760253906, 359.78759765625, 359.6913146972656, 359.5549621582031, 359.6350402832031, 359.77203369140625], "compile_time": 1085.8752990000085, "verification_time": 0, "benchmark_time": 2520.549722000055, "GB/s": 6.832844209426383, "GB/s/W (Jetson)": 1.0352806546875688, "GPU (W) (Jetson)": 6.599992164915345, "GB/s/W (PS)": 0.897583153635427, "GPU (W) (PS)": 7.612491591170942, "strategy_time": 0.02650999999787018, "framework_time": 2.6088819998904, "timestamp": "2023-11-03 11:03:19.132043+00:00"},
"2,144,1,3,8,0,0,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.405238560267857, "tegra_power": 6.955810110438329, "ps_energy": 2.762950623427709, "time": 358.04239327566967, "times": [357.87542724609375, 357.8688049316406, 358.2040100097656, 358.0417785644531, 358.1604309082031, 358.2082824707031, 357.9380187988281], "compile_time": 1056.9093770000109, "verification_time": 0, "benchmark_time": 2509.084698000038, "GB/s": 6.863991656171859, "GB/s/W (Jetson)": 1.0217697489958382, "GPU (W) (Jetson)": 6.717747969067948, "GB/s/W (PS)": 0.8894838652422633, "GPU (W) (PS)": 7.716825368498792, "strategy_time": 0.025676999939605594, "framework_time": 2.3597639999479725, "timestamp": "2023-11-03 11:03:22.700765+00:00"},
"1,56,1,1,4,0,0,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.1065848214285716, "tegra_power": 6.664887752836099, "ps_energy": 3.561917310579312, "time": 478.5959952218192, "times": [478.59552001953125, 478.55035400390625, 478.6838073730469, 478.5970458984375, 478.6009826660156, 478.5611877441406, 478.58306884765625], "compile_time": 1050.743797999985, "verification_time": 0, "benchmark_time": 3353.315555999984, "GB/s": 5.135019984571651, "GB/s/W (Jetson)": 0.7910938027663013, "GPU (W) (Jetson)": 6.491038062256946, "GB/s/W (PS)": 0.6899654836738179, "GPU (W) (PS)": 7.442430246263214, "strategy_time": 0.025468999979239015, "framework_time": 2.304243000025963, "timestamp": "2023-11-03 11:03:27.107448+00:00"},
"8,120,1,3,8,0,1,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.380336216517857, "tegra_power": 6.927886314198656, "ps_energy": 2.7441220664113644, "time": 354.3395734514509, "times": [354.3088073730469, 354.27801513671875, 354.3481750488281, 354.3465576171875, 354.2845764160156, 354.4706115722656, 354.34027099609375], "compile_time": 1034.3573249999736, "verification_time": 0, "benchmark_time": 2483.364143000017, "GB/s": 6.9357198126692525, "GB/s/W (Jetson)": 1.0324591891456283, "GPU (W) (Jetson)": 6.717669701219512, "GB/s/W (PS)": 0.8955869821104333, "GPU (W) (PS)": 7.744328525550208, "strategy_time": 0.024011000050450093, "framework_time": 2.44919099998242, "timestamp": "2023-11-03 11:03:30.627933+00:00"},
"4,200,1,4,5,0,0,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4134347098214284, "tegra_power": 6.913686497464279, "ps_energy": 2.7824257144664313, "time": 360.52035086495533, "times": [361.7513122558594, 360.1277160644531, 360.3677062988281, 359.4309997558594, 362.13946533203125, 358.7430114746094, 361.0822448730469], "compile_time": 1054.4713420000562, "verification_time": 0, "benchmark_time": 2527.22599599997, "GB/s": 6.816813514420922, "GB/s/W (Jetson)": 1.0182997658891875, "GPU (W) (Jetson)": 6.694309222852885, "GB/s/W (PS)": 0.8832580820477641, "GPU (W) (PS)": 7.717804855650659, "strategy_time": 0.02650999999787018, "framework_time": 2.5014850000388833, "timestamp": "2023-11-03 11:03:34.212442+00:00"},
"1,216,1,2,8,0,0,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4302804129464284, "tegra_power": 6.975352694666282, "ps_energy": 2.8197522185663337, "time": 360.0608433314732, "times": [360.5118713378906, 359.7850646972656, 360.4256896972656, 359.94036865234375, 360.1283874511719, 360.25958251953125, 359.37493896484375], "compile_time": 1078.9601389999461, "verification_time": 0, "benchmark_time": 2523.6873170000536, "GB/s": 6.825513091790226, "GB/s/W (Jetson)": 1.0112413312093684, "GPU (W) (Jetson)": 6.749638173538088, "GB/s/W (PS)": 0.8715659425031091, "GPU (W) (PS)": 7.831321485770283, "strategy_time": 0.02604200005862367, "framework_time": 2.335544999937156, "timestamp": "2023-11-03 11:03:37.817508+00:00"},
"1,192,1,2,8,0,0,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4351981026785716, "tegra_power": 6.990755232891827, "ps_energy": 2.827228766992513, "time": 358.2046595982143, "times": [358.1110534667969, 358.28631591796875, 357.9716796875, 358.2431640625, 358.3674011230469, 358.23321533203125, 358.21978759765625], "compile_time": 937.4203370000487, "verification_time": 0, "benchmark_time": 2510.890477999965, "GB/s": 6.860882275391404, "GB/s/W (Jetson)": 1.0091992094182347, "GPU (W) (Jetson)": 6.798342895399654, "GB/s/W (PS)": 0.8692611042629887, "GPU (W) (PS)": 7.892774957656099, "strategy_time": 0.02541699996072566, "framework_time": 2.496067000038238, "timestamp": "2023-11-03 11:03:41.268671+00:00"},
"4,168,1,2,7,1,0,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.516148158482143, "tegra_power": 6.841541232819236, "ps_energy": 2.9103297967901978, "time": 379.3342023577009, "times": [379.1341247558594, 380.35076904296875, 379.1667175292969, 379.35797119140625, 379.1583251953125, 379.06146240234375, 379.11004638671875], "compile_time": 1090.0586059999569, "verification_time": 0, "benchmark_time": 2659.9280740000495, "GB/s": 6.478719779880422, "GB/s/W (Jetson)": 0.9767310369682436, "GPU (W) (Jetson)": 6.6330643080517415, "GB/s/W (PS)": 0.8444403801625804, "GPU (W) (PS)": 7.672205086442068, "strategy_time": 0.02322900002127426, "framework_time": 2.2603339999704986, "timestamp": "2023-11-03 11:03:45.020997+00:00"},
"4,64,1,2,1,1,0,0": {"block_size_x": 4, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.337158203125, "tegra_power": 6.846544608701398, "ps_energy": 2.687823117934321, "time": 351.23880876813615, "times": [351.24176025390625, 351.2359924316406, 351.2565002441406, 351.28509521484375, 351.2520446777344, 351.2104187011719, 351.1898498535156], "compile_time": 1075.3933639999786, "verification_time": 0, "benchmark_time": 2463.6678340000344, "GB/s": 6.996948909544728, "GB/s/W (Jetson)": 1.051533437793795, "GPU (W) (Jetson)": 6.654043188797602, "GB/s/W (PS)": 0.914345882212943, "GPU (W) (PS)": 7.652409274934757, "strategy_time": 0.02614599998196354, "framework_time": 2.5694010000734124, "timestamp": "2023-11-03 11:03:48.562936+00:00"},
"2,160,1,2,8,1,0,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.368443080357143, "tegra_power": 6.944613920189099, "ps_energy": 2.7249286236951127, "time": 351.4818376813616, "times": [351.4010009765625, 351.4806823730469, 351.47979736328125, 351.4962463378906, 351.54083251953125, 351.4521789550781, 351.5221252441406], "compile_time": 935.8232360000329, "verification_time": 0, "benchmark_time": 2463.2589459999963, "GB/s": 6.992110932992091, "GB/s/W (Jetson)": 1.0376436826294397, "GPU (W) (Jetson)": 6.7384508285866875, "GB/s/W (PS)": 0.90189518309929, "GPU (W) (PS)": 7.752686857650427, "strategy_time": 0.02505300005850586, "framework_time": 2.3557529998470272, "timestamp": "2023-11-03 11:03:51.964456+00:00"},
"4,32,1,4,6,0,0,0": {"block_size_x": 4, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5035574776785716, "tegra_power": 6.938523728562656, "ps_energy": 2.9067061924878153, "time": 372.3975524902344, "times": [372.4703063964844, 372.2522888183594, 372.2202453613281, 372.31756591796875, 372.44464111328125, 372.5411071777344, 372.5367126464844], "compile_time": 1052.089672999955, "verification_time": 0, "benchmark_time": 2609.627913000054, "GB/s": 6.599398904654313, "GB/s/W (Jetson)": 0.9816431305898413, "GPU (W) (Jetson)": 6.7228086246464365, "GB/s/W (PS)": 0.8454930898594086, "GPU (W) (PS)": 7.805384791201171, "strategy_time": 0.025000000050567905, "framework_time": 2.5692959999332743, "timestamp": "2023-11-03 11:03:55.629062+00:00"},
"2,80,1,1,2,0,1,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.322300502232143, "tegra_power": 6.864581207542515, "ps_energy": 2.691358435401006, "time": 348.46316964285717, "times": [348.5386962890625, 348.4773864746094, 348.3559875488281, 348.4732666015625, 348.4955749511719, 348.4771728515625, 348.4241027832031], "compile_time": 1084.359954999968, "verification_time": 0, "benchmark_time": 2442.318410999974, "GB/s": 7.0526822175176065, "GB/s/W (Jetson)": 1.0582609776976797, "GPU (W) (Jetson)": 6.664407330657895, "GB/s/W (PS)": 0.913144814779687, "GPU (W) (PS)": 7.723509024380975, "strategy_time": 0.02677200006928615, "framework_time": 2.363772000080644, "timestamp": "2023-11-03 11:03:59.158186+00:00"},
"2,208,1,2,3,1,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3975655691964284, "tegra_power": 6.960065877627562, "ps_energy": 2.79060962831766, "time": 357.80873325892856, "times": [357.5911560058594, 358.3287353515625, 357.71978759765625, 357.6856384277344, 358.0005187988281, 357.6307678222656, 357.70452880859375], "compile_time": 1117.7462889999106, "verification_time": 0, "benchmark_time": 2510.1356129999886, "GB/s": 6.8684740520896, "GB/s/W (Jetson)": 1.0250397451376867, "GPU (W) (Jetson)": 6.700690470462688, "GB/s/W (PS)": 0.8806677849390143, "GPU (W) (PS)": 7.799165780278017, "strategy_time": 0.026666999929148005, "framework_time": 2.6184630000898323, "timestamp": "2023-11-03 11:04:02.788996+00:00"},
"8,120,1,3,2,0,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.488525390625, "tegra_power": 6.995897399452945, "ps_energy": 2.8713493930078715, "time": 366.85862949916293, "times": [366.9632873535156, 367.3506164550781, 366.77130126953125, 367.1337585449219, 366.31683349609375, 366.7369384765625, 366.7376708984375], "compile_time": 1099.9955579999323, "verification_time": 0, "benchmark_time": 2571.929626000042, "GB/s": 6.6990382735582, "GB/s/W (Jetson)": 0.9875728048660845, "GPU (W) (Jetson)": 6.783336115119729, "GB/s/W (PS)": 0.8559041982088951, "GPU (W) (PS)": 7.826855257372167, "strategy_time": 0.025000000050567905, "framework_time": 2.417627999875549, "timestamp": "2023-11-03 11:04:06.463420+00:00"},
"2,256,1,4,3,1,0,0": {"block_size_x": 2, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4088657924107144, "tegra_power": 6.925675755110035, "ps_energy": 2.8122738392586535, "time": 359.9534999302455, "times": [359.7438049316406, 360.11444091796875, 359.9065246582031, 360.1039123535156, 359.75115966796875, 360.1444396972656, 359.91021728515625], "compile_time": 1066.2447749999728, "verification_time": 0, "benchmark_time": 2523.896680000007, "GB/s": 6.827548559678547, "GB/s/W (Jetson)": 1.0202311842124312, "GPU (W) (Jetson)": 6.6921582728811435, "GB/s/W (PS)": 0.8738836046804924, "GPU (W) (PS)": 7.81288094102054, "strategy_time": 0.02651100010098162, "framework_time": 2.56184799991388, "timestamp": "2023-11-03 11:04:10.056433+00:00"},
"2,160,1,3,4,1,0,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3770926339285716, "tegra_power": 6.966991483867437, "ps_energy": 2.716056784995934, "time": 351.3214111328125, "times": [351.1854248046875, 351.39666748046875, 351.2171325683594, 351.38629150390625, 351.4892578125, 351.2606201171875, 351.3144836425781], "compile_time": 1058.3326849999821, "verification_time": 0, "benchmark_time": 2463.444138, "GB/s": 6.995303793399987, "GB/s/W (Jetson)": 1.0338679969481774, "GPU (W) (Jetson)": 6.766147916415895, "GB/s/W (PS)": 0.904841170323204, "GPU (W) (PS)": 7.730974255847913, "strategy_time": 0.02541699996072566, "framework_time": 2.3636170001282153, "timestamp": "2023-11-03 11:04:13.580656+00:00"},
"4,40,1,3,4,0,1,0": {"block_size_x": 4, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.352573939732143, "tegra_power": 6.946403079964355, "ps_energy": 2.7169092150288634, "time": 351.8713945661272, "times": [351.78631591796875, 351.973388671875, 351.917236328125, 351.7789611816406, 351.842041015625, 351.91546630859375, 351.8863525390625], "compile_time": 1058.7757839999767, "verification_time": 0, "benchmark_time": 2466.0961239999324, "GB/s": 6.984369965709568, "GB/s/W (Jetson)": 1.0446430433042266, "GPU (W) (Jetson)": 6.685891425283289, "GB/s/W (PS)": 0.9045572764837088, "GPU (W) (PS)": 7.7213131188993955, "strategy_time": 0.025676999939605594, "framework_time": 2.5386710001384927, "timestamp": "2023-11-03 11:04:17.108363+00:00"},
"4,200,1,1,8,0,1,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3500279017857144, "tegra_power": 6.736241140772356, "ps_energy": 2.6980190524232057, "time": 361.4493408203125, "times": [362.5146484375, 360.35235595703125, 362.4212951660156, 360.02166748046875, 362.436767578125, 360.0648498535156, 362.33380126953125], "compile_time": 1061.2411420000853, "verification_time": 0, "benchmark_time": 2533.405612000024, "GB/s": 6.799293074992072, "GB/s/W (Jetson)": 1.0457748174532502, "GPU (W) (Jetson)": 6.501679865987043, "GB/s/W (PS)": 0.9108905282906452, "GPU (W) (PS)": 7.464445906306061, "strategy_time": 0.02552099999775237, "framework_time": 2.4832009999045113, "timestamp": "2023-11-03 11:04:20.705577+00:00"},
"4,104,1,2,6,1,0,0": {"block_size_x": 4, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4080636160714284, "tegra_power": 6.93573681840227, "ps_energy": 2.7544702682878, "time": 356.69789341517856, "times": [356.5220947265625, 356.7469787597656, 356.64605712890625, 356.68609619140625, 356.59979248046875, 356.7104187011719, 356.97381591796875], "compile_time": 1089.7008139999116, "verification_time": 0, "benchmark_time": 2501.7676830000255, "GB/s": 6.889864070880497, "GB/s/W (Jetson)": 1.0205710445513005, "GPU (W) (Jetson)": 6.750989171860801, "GB/s/W (PS)": 0.8922223733159635, "GPU (W) (PS)": 7.722137750563427, "strategy_time": 0.025209000000359083, "framework_time": 2.6720050000221818, "timestamp": "2023-11-03 11:04:24.300216+00:00"},
"1,128,1,2,7,1,0,0": {"block_size_x": 1, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.059849330357143, "tegra_power": 6.857870525202413, "ps_energy": 3.522100099788791, "time": 458.95975167410717, "times": [458.90380859375, 458.8688049316406, 459.55682373046875, 459.0332946777344, 458.77880859375, 458.8941650390625, 458.68255615234375], "compile_time": 1087.9689959999723, "verification_time": 0, "benchmark_time": 3215.7342319999316, "GB/s": 5.354717905079101, "GB/s/W (Jetson)": 0.803176802079059, "GPU (W) (Jetson)": 6.666923012739132, "GB/s/W (PS)": 0.6977655178361837, "GPU (W) (PS)": 7.674093614835583, "strategy_time": 0.0493759999926624, "framework_time": 4.7319200001538775, "timestamp": "2023-11-03 11:04:28.609032+00:00"},
"8,40,1,3,6,0,1,0": {"block_size_x": 8, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.373779296875, "tegra_power": 6.979807970069539, "ps_energy": 2.764640801603751, "time": 352.1006600516183, "times": [352.10650634765625, 352.04266357421875, 352.13287353515625, 351.9263000488281, 352.12286376953125, 352.138427734375, 352.2349853515625], "compile_time": 1056.5988150000294, "verification_time": 0, "benchmark_time": 2469.140089000007, "GB/s": 6.979822189596899, "GB/s/W (Jetson)": 1.0353110768281393, "GPU (W) (Jetson)": 6.741763268853291, "GB/s/W (PS)": 0.8889400744481386, "GPU (W) (PS)": 7.85184782442172, "strategy_time": 0.026719000061348197, "framework_time": 2.4688779998314203, "timestamp": "2023-11-03 11:04:32.137746+00:00"},
"1,112,1,4,5,0,1,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6854771205357144, "tegra_power": 6.860198178359289, "ps_energy": 3.0906961086370757, "time": 404.34095546177457, "times": [404.38983154296875, 404.3753662109375, 404.3314514160156, 404.25665283203125, 404.3173522949219, 404.3599853515625, 404.3560485839844], "compile_time": 917.5533919999452, "verification_time": 0, "benchmark_time": 2833.3604439999363, "GB/s": 6.078038761107729, "GB/s/W (Jetson)": 0.9151446427179926, "GPU (W) (Jetson)": 6.641615409620788, "GB/s/W (PS)": 0.7951606737175282, "GPU (W) (PS)": 7.643786925089914, "strategy_time": 0.08020900008887111, "framework_time": 4.0755600000466075, "timestamp": "2023-11-03 11:04:35.893127+00:00"},
"4,112,1,1,6,0,0,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.435546875, "tegra_power": 6.847816446913577, "ps_energy": 2.806364704808402, "time": 368.18372889927457, "times": [367.8399963378906, 368.15234375, 367.9294128417969, 368.0304260253906, 368.6489562988281, 368.1874084472656, 368.49755859375], "compile_time": 1043.15128799999, "verification_time": 0, "benchmark_time": 2580.232324999997, "GB/s": 6.674928322735127, "GB/s/W (Jetson)": 1.0090546912590215, "GPU (W) (Jetson)": 6.615031257033908, "GB/s/W (PS)": 0.8757236704798803, "GPU (W) (PS)": 7.622185568054122, "strategy_time": 0.027917000011257187, "framework_time": 2.4621069999284373, "timestamp": "2023-11-03 11:04:39.519288+00:00"},
"2,104,1,2,5,0,1,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4571358816964284, "tegra_power": 6.839578957672141, "ps_energy": 2.8466469989615297, "time": 369.6294642857143, "times": [369.6176452636719, 369.58563232421875, 369.52777099609375, 369.792236328125, 369.6777038574219, 369.7012023925781, 369.5040588378906], "compile_time": 1097.247560000028, "verification_time": 0, "benchmark_time": 2590.98845799997, "GB/s": 6.64882060944237, "GB/s/W (Jetson)": 1.0001888858923222, "GPU (W) (Jetson)": 6.647564978199692, "GB/s/W (PS)": 0.8633314917151806, "GPU (W) (PS)": 7.701353041382932, "strategy_time": 0.02432299993415654, "framework_time": 2.6145570001290253, "timestamp": "2023-11-03 11:04:43.210452+00:00"},
"2,256,1,3,3,0,1,0": {"block_size_x": 2, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3148716517857144, "tegra_power": 6.942220104891521, "ps_energy": 2.7022522703267504, "time": 349.317374093192, "times": [349.4384765625, 349.3780822753906, 349.32415771484375, 349.25469970703125, 349.356201171875, 349.1858215332031, 349.2841796875], "compile_time": 1050.4989629999955, "verification_time": 0, "benchmark_time": 2448.3303209999576, "GB/s": 7.03543591663538, "GB/s/W (Jetson)": 1.0616571325257638, "GPU (W) (Jetson)": 6.626843734283156, "GB/s/W (PS)": 0.9094635711797671, "GPU (W) (PS)": 7.735808381537401, "strategy_time": 0.025468999979239015, "framework_time": 2.4212220000663365, "timestamp": "2023-11-03 11:04:46.712012+00:00"},
"2,216,1,4,4,0,1,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.455357142857143, "tegra_power": 6.890685221008993, "ps_energy": 2.815051814746442, "time": 369.3912833077567, "times": [369.44744873046875, 369.4033203125, 369.3268127441406, 369.3052978515625, 369.4285888671875, 369.4296875, 369.3978271484375], "compile_time": 1063.0942679999862, "verification_time": 0, "benchmark_time": 2588.927277000039, "GB/s": 6.653107723585512, "GB/s/W (Jetson)": 1.0009134545454546, "GPU (W) (Jetson)": 6.647035958375534, "GB/s/W (PS)": 0.8730212307731045, "GPU (W) (PS)": 7.620785714104397, "strategy_time": 0.025209000000359083, "framework_time": 2.3803860000271015, "timestamp": "2023-11-03 11:04:50.366724+00:00"},
"2,240,1,4,7,0,1,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4221888950892856, "tegra_power": 6.8906726847061055, "ps_energy": 2.795660981769678, "time": 362.7835693359375, "times": [362.71832275390625, 362.7810363769531, 362.6868896484375, 362.77667236328125, 362.71051025390625, 362.9820251464844, 362.82952880859375], "compile_time": 1073.8029380000853, "verification_time": 0, "benchmark_time": 2547.849539000026, "GB/s": 6.774286951579835, "GB/s/W (Jetson)": 1.0146194646431195, "GPU (W) (Jetson)": 6.676677500921602, "GB/s/W (PS)": 0.8790765461283927, "GPU (W) (PS)": 7.706140018653647, "strategy_time": 0.025468999979239015, "framework_time": 2.349292999952013, "timestamp": "2023-11-03 11:04:53.990809+00:00"},
"2,80,1,2,2,0,0,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.36328125, "tegra_power": 7.008868861083961, "ps_energy": 2.7416001964630987, "time": 349.6829833984375, "times": [349.55682373046875, 349.63995361328125, 349.85723876953125, 349.70135498046875, 349.6909484863281, 349.6794128417969, 349.6551513671875], "compile_time": 1105.9974380000313, "verification_time": 0, "benchmark_time": 2450.9271609999814, "GB/s": 7.028080051581318, "GB/s/W (Jetson)": 1.039910082644628, "GPU (W) (Jetson)": 6.758353600830551, "GB/s/W (PS)": 0.8964107907383857, "GPU (W) (PS)": 7.840244812082409, "strategy_time": 0.026405999960843474, "framework_time": 2.720599000099355, "timestamp": "2023-11-03 11:04:57.550771+00:00"},
"1,224,1,3,3,0,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.682861328125, "tegra_power": 6.95582343764877, "ps_energy": 3.070758963854782, "time": 397.7411324637277, "times": [397.79254150390625, 397.80902099609375, 397.8063049316406, 397.7289123535156, 397.6177062988281, 397.70172119140625, 397.7317199707031], "compile_time": 1070.792863999941, "verification_time": 0, "benchmark_time": 2787.345850999941, "GB/s": 6.178893253450779, "GB/s/W (Jetson)": 0.9160369096369095, "GPU (W) (Jetson)": 6.745244856891097, "GB/s/W (PS)": 0.8003233171108057, "GPU (W) (PS)": 7.720496356093676, "strategy_time": 0.02276099996834091, "framework_time": 2.3577830002068367, "timestamp": "2023-11-03 11:05:01.411585+00:00"},
"8,112,1,1,8,0,0,0": {"block_size_x": 8, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3418666294642856, "tegra_power": 6.94234590220394, "ps_energy": 2.6965110102202225, "time": 347.7491193498884, "times": [347.7035827636719, 347.73858642578125, 347.61395263671875, 347.91766357421875, 347.67755126953125, 347.8329772949219, 347.759521484375], "compile_time": 1049.4496180000397, "verification_time": 0, "benchmark_time": 2437.443024999993, "GB/s": 7.0671638352224875, "GB/s/W (Jetson)": 1.049419283352694, "GPU (W) (Jetson)": 6.734356750758619, "GB/s/W (PS)": 0.9113999500411047, "GPU (W) (PS)": 7.7541850149363665, "strategy_time": 0.02854199999546836, "framework_time": 2.8357559999676596, "timestamp": "2023-11-03 11:05:04.901637+00:00"},
"8,128,1,2,5,1,1,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.318359375, "tegra_power": 6.950246295185614, "ps_energy": 2.672440010110352, "time": 345.5722220284598, "times": [345.532958984375, 345.5353088378906, 345.55511474609375, 345.6356201171875, 345.6135559082031, 345.5091552734375, 345.62384033203125], "compile_time": 1107.721655999967, "verification_time": 0, "benchmark_time": 2422.0759049999288, "GB/s": 7.111682720255225, "GB/s/W (Jetson)": 1.0600599831508002, "GPU (W) (Jetson)": 6.708755007539553, "GB/s/W (PS)": 0.9196090429354554, "GPU (W) (PS)": 7.733376237313025, "strategy_time": 0.026198000000476895, "framework_time": 2.378564000082406, "timestamp": "2023-11-03 11:05:08.434129+00:00"},
"2,216,1,3,3,0,0,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.475341796875, "tegra_power": 6.9287510295151105, "ps_energy": 2.8612008618284954, "time": 369.460928780692, "times": [369.16363525390625, 369.625732421875, 369.52557373046875, 369.6787109375, 369.1264953613281, 369.8198547363281, 369.2864990234375], "compile_time": 1046.7995010000095, "verification_time": 0, "benchmark_time": 2589.7327950000317, "GB/s": 6.651853575182248, "GB/s/W (Jetson)": 0.992832587040142, "GPU (W) (Jetson)": 6.699874341365975, "GB/s/W (PS)": 0.8589400460439649, "GPU (W) (PS)": 7.744258293484866, "strategy_time": 0.02505300005850586, "framework_time": 2.40382399988448, "timestamp": "2023-11-03 11:05:12.073437+00:00"},
"2,104,1,3,3,0,0,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.63916015625, "tegra_power": 6.954247208868314, "ps_energy": 3.061961488387624, "time": 392.2212611607143, "times": [392.2058410644531, 392.1229553222656, 392.2596740722656, 392.302490234375, 392.21514892578125, 392.33135986328125, 392.1113586425781], "compile_time": 913.0933860000141, "verification_time": 0, "benchmark_time": 2748.489593000045, "GB/s": 6.265851047256176, "GB/s/W (Jetson)": 0.9312053283996299, "GPU (W) (Jetson)": 6.728753429734635, "GB/s/W (PS)": 0.8026227662628538, "GPU (W) (PS)": 7.806719807402212, "strategy_time": 0.025573000016265723, "framework_time": 3.0309669998587196, "timestamp": "2023-11-03 11:05:15.738160+00:00"},
"1,256,1,4,5,0,1,0": {"block_size_x": 1, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.394566127232143, "tegra_power": 6.9970041405513195, "ps_energy": 2.787443470491845, "time": 355.4669102260045, "times": [355.3603210449219, 355.3840637207031, 355.47515869140625, 355.4835510253906, 355.4380798339844, 355.4995422363281, 355.6276550292969], "compile_time": 1061.7270480000798, "verification_time": 0, "benchmark_time": 2492.5132490000124, "GB/s": 6.913723694949461, "GB/s/W (Jetson)": 1.0263237135324874, "GPU (W) (Jetson)": 6.736396717516371, "GB/s/W (PS)": 0.8816681041306842, "GPU (W) (PS)": 7.8416397991014115, "strategy_time": 0.026093999963450187, "framework_time": 2.9547149998734312, "timestamp": "2023-11-03 11:05:19.295890+00:00"},
"2,200,1,4,1,1,0,0": {"block_size_x": 2, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4051688058035716, "tegra_power": 6.903290940245687, "ps_energy": 2.797735015305924, "time": 359.9328177315848, "times": [359.91802978515625, 359.9181213378906, 359.9635009765625, 360.043701171875, 360.0989074707031, 359.8388671875, 359.74859619140625], "compile_time": 1094.8062960000016, "verification_time": 0, "benchmark_time": 2522.699839999973, "GB/s": 6.82794087932466, "GB/s/W (Jetson)": 1.021799382259538, "GPU (W) (Jetson)": 6.682271488778761, "GB/s/W (PS)": 0.8784248638827107, "GPU (W) (PS)": 7.772936718963755, "strategy_time": 0.026562000016383536, "framework_time": 2.423147999934372, "timestamp": "2023-11-03 11:05:22.915951+00:00"},
"4,112,1,2,6,0,1,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3330078125, "tegra_power": 6.937374603143389, "ps_energy": 2.710747552863787, "time": 348.91656494140625, "times": [348.8993225097656, 348.9109802246094, 348.9131164550781, 348.8155822753906, 348.87884521484375, 348.9384765625, 349.05963134765625], "compile_time": 1113.86306899999, "verification_time": 0, "benchmark_time": 2445.5333490000157, "GB/s": 7.043517697168393, "GB/s/W (Jetson)": 1.0534041021347844, "GPU (W) (Jetson)": 6.686434657786406, "GB/s/W (PS)": 0.9066133795467792, "GPU (W) (PS)": 7.769042301901042, "strategy_time": 0.027187999990019307, "framework_time": 2.8296619999537143, "timestamp": "2023-11-03 11:05:26.478258+00:00"},
"2,144,1,1,5,0,0,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5669991629464284, "tegra_power": 6.985965694071451, "ps_energy": 2.953730925304366, "time": 379.41064889090404, "times": [379.45233154296875, 379.46026611328125, 379.49005126953125, 379.3909912109375, 379.35235595703125, 379.35400390625, 379.3745422363281], "compile_time": 1045.880440000019, "verification_time": 0, "benchmark_time": 2663.07985800006, "GB/s": 6.477414398315055, "GB/s/W (Jetson)": 0.9573824703468703, "GPU (W) (Jetson)": 6.765754125379187, "GB/s/W (PS)": 0.8320324573054186, "GPU (W) (PS)": 7.785050140102113, "strategy_time": 0.027134999982081354, "framework_time": 3.0645079999658265, "timestamp": "2023-11-03 11:05:30.190365+00:00"},
"2,152,1,2,1,0,0,0": {"block_size_x": 2, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4830147879464284, "tegra_power": 6.932744505698217, "ps_energy": 2.8713340581383426, "time": 369.71044921875, "times": [369.6521911621094, 369.68646240234375, 369.6204833984375, 369.7878723144531, 369.7923889160156, 369.75421142578125, 369.6795349121094], "compile_time": 1099.5207619999974, "verification_time": 0, "benchmark_time": 2591.013625999949, "GB/s": 6.6473641878211795, "GB/s/W (Jetson)": 0.9897645442669926, "GPU (W) (Jetson)": 6.7161065996197475, "GB/s/W (PS)": 0.8559087693172869, "GPU (W) (PS)": 7.766440099829134, "strategy_time": 0.023124999984247552, "framework_time": 2.5968470000634625, "timestamp": "2023-11-03 11:05:33.883572+00:00"},
"4,184,1,2,7,1,1,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3779994419642856, "tegra_power": 6.796923207502034, "ps_energy": 2.7624607885665813, "time": 361.3280290876116, "times": [360.2254638671875, 362.8454284667969, 360.1426696777344, 362.8381652832031, 360.2551574707031, 362.7839050292969, 360.2054138183594], "compile_time": 936.1328269999376, "verification_time": 0, "benchmark_time": 2532.6622640000096, "GB/s": 6.8015758594916615, "GB/s/W (Jetson)": 1.0334737496700008, "GPU (W) (Jetson)": 6.581275878234427, "GB/s/W (PS)": 0.8896415870124363, "GPU (W) (PS)": 7.645298914512842, "strategy_time": 0.022707999960402958, "framework_time": 2.4914300000773437, "timestamp": "2023-11-03 11:05:37.354932+00:00"},
"4,144,1,2,6,0,0,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.478271484375, "tegra_power": 6.908337363164381, "ps_energy": 2.871816596485977, "time": 370.63734218052457, "times": [370.83160400390625, 370.3302001953125, 370.8162536621094, 370.5876159667969, 370.6065673828125, 370.6897888183594, 370.599365234375], "compile_time": 1090.0218900000027, "verification_time": 0, "benchmark_time": 2598.097777000021, "GB/s": 6.630740403925593, "GB/s/W (Jetson)": 0.9916589104521721, "GPU (W) (Jetson)": 6.6865132093676625, "GB/s/W (PS)": 0.8557649548397963, "GPU (W) (PS)": 7.748319636630717, "strategy_time": 0.02479199997651449, "framework_time": 2.6304930000833338, "timestamp": "2023-11-03 11:05:41.045773+00:00"},
"2,184,1,4,3,0,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.46875, "tegra_power": 7.052249958298652, "ps_energy": 2.8698962719436167, "time": 363.6643851143973, "times": [363.046875, 363.3081359863281, 363.9936828613281, 363.385009765625, 363.2042236328125, 363.8805847167969, 364.8321838378906], "compile_time": 1058.2272049999801, "verification_time": 0, "benchmark_time": 2549.1849950000187, "GB/s": 6.757879244146816, "GB/s/W (Jetson)": 0.9954835443037974, "GPU (W) (Jetson)": 6.788539381505311, "GB/s/W (PS)": 0.8563375701155944, "GPU (W) (PS)": 7.8916066280200585, "strategy_time": 0.02625000001899025, "framework_time": 2.734660999976768, "timestamp": "2023-11-03 11:05:44.656251+00:00"},
"4,224,1,2,5,0,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3895786830357144, "tegra_power": 6.9690687230856, "ps_energy": 2.7598451451157024, "time": 354.8046613420759, "times": [355.02667236328125, 354.5626525878906, 355.1901550292969, 354.4720764160156, 354.23480224609375, 354.5954284667969, 355.55084228515625], "compile_time": 1093.200740000043, "verification_time": 0, "benchmark_time": 2486.985897000068, "GB/s": 6.926628276821219, "GB/s/W (Jetson)": 1.028465820124354, "GPU (W) (Jetson)": 6.734913442221838, "GB/s/W (PS)": 0.8904847448957026, "GPU (W) (PS)": 7.778491789471919, "strategy_time": 0.04140700002608355, "framework_time": 3.1120599999212573, "timestamp": "2023-11-03 11:05:48.239648+00:00"},
"4,144,1,1,6,0,0,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4595772879464284, "tegra_power": 6.876511599071459, "ps_energy": 2.825519291161332, "time": 368.9803946358817, "times": [369.37646484375, 368.9883728027344, 369.2632751464844, 368.7704772949219, 368.9079284667969, 368.90936279296875, 368.6468811035156], "compile_time": 1042.9269289999183, "verification_time": 0, "benchmark_time": 2586.709122000002, "GB/s": 6.66051648198061, "GB/s/W (Jetson)": 0.9991960862721743, "GPU (W) (Jetson)": 6.665875270618635, "GB/s/W (PS)": 0.8697870185093971, "GPU (W) (PS)": 7.657640710015553, "strategy_time": 0.025364999942212307, "framework_time": 2.7772120000690848, "timestamp": "2023-11-03 11:05:51.872141+00:00"},
"16,48,1,3,8,1,1,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3688267299107144, "tegra_power": 6.929786518836577, "ps_energy": 2.7206294479854995, "time": 352.07777186802457, "times": [351.9308776855469, 352.02056884765625, 352.0034484863281, 352.2477722167969, 352.00634765625, 352.2161560058594, 352.1192321777344], "compile_time": 917.9819139999381, "verification_time": 0, "benchmark_time": 2467.729609999992, "GB/s": 6.980275940059132, "GB/s/W (Jetson)": 1.0374756283219717, "GPU (W) (Jetson)": 6.72813485879098, "GB/s/W (PS)": 0.9033203701517453, "GPU (W) (PS)": 7.7273536285764735, "strategy_time": 0.025522000100863806, "framework_time": 2.5474709999571132, "timestamp": "2023-11-03 11:05:55.260480+00:00"},
"2,256,1,4,7,1,1,0": {"block_size_x": 2, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3575613839285716, "tegra_power": 6.970351808374654, "ps_energy": 2.729069426995141, "time": 350.3053937639509, "times": [350.39605712890625, 350.2186584472656, 350.3043212890625, 350.3756103515625, 350.1659240722656, 350.39495849609375, 350.2822265625], "compile_time": 1069.2139129999987, "verification_time": 0, "benchmark_time": 2455.717646000153, "GB/s": 7.015592804877061, "GB/s/W (Jetson)": 1.0424330907154267, "GPU (W) (Jetson)": 6.730017367409381, "GB/s/W (PS)": 0.9005267420792427, "GPU (W) (PS)": 7.790543553074983, "strategy_time": 0.02734400004555937, "framework_time": 2.664346999836198, "timestamp": "2023-11-03 11:05:58.788394+00:00"},
"4,56,1,2,7,1,1,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3358677455357144, "tegra_power": 6.972871732376013, "ps_energy": 2.6878675776422694, "time": 348.1762128557478, "times": [348.2803649902344, 348.0825500488281, 348.0104064941406, 348.2518310546875, 348.34130859375, 348.14202880859375, 348.125], "compile_time": 953.0338259999098, "verification_time": 0, "benchmark_time": 2440.6818009999824, "GB/s": 7.058494834677874, "GB/s/W (Jetson)": 1.052114360796727, "GPU (W) (Jetson)": 6.708866543112993, "GB/s/W (PS)": 0.9143307581230417, "GPU (W) (PS)": 7.719848393996618, "strategy_time": 0.026770999966174713, "framework_time": 2.529761999994662, "timestamp": "2023-11-03 11:06:02.184722+00:00"},
"2,200,1,1,6,0,0,0": {"block_size_x": 2, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6612723214285716, "tegra_power": 7.036286612089859, "ps_energy": 3.0866654875901856, "time": 390.7831464494978, "times": [390.6751708984375, 390.7921447753906, 390.8173522949219, 390.8433837890625, 390.9246826171875, 390.6859436035156, 390.74334716796875], "compile_time": 950.3264979998676, "verification_time": 0, "benchmark_time": 2738.7297000000217, "GB/s": 6.288909903942348, "GB/s/W (Jetson)": 0.9234680645837701, "GPU (W) (Jetson)": 6.810100040413326, "GB/s/W (PS)": 0.7961990082439064, "GPU (W) (PS)": 7.898665834579654, "strategy_time": 0.02406299995527661, "framework_time": 2.5482010003088362, "timestamp": "2023-11-03 11:06:05.876670+00:00"},
"1,96,1,3,1,1,0,0": {"block_size_x": 1, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.414829799107143, "tegra_power": 7.0447221217552976, "ps_energy": 2.8019958500512985, "time": 356.9960501534598, "times": [356.95672607421875, 357.1499938964844, 356.8858337402344, 357.0584411621094, 356.86474609375, 357.0122985839844, 357.0443115234375], "compile_time": 1050.8042779999869, "verification_time": 0, "benchmark_time": 2502.153966000151, "GB/s": 6.884109779207825, "GB/s/W (Jetson)": 1.0177114763569137, "GPU (W) (Jetson)": 6.764303969383118, "GB/s/W (PS)": 0.8770890934599374, "GPU (W) (PS)": 7.848814710546016, "strategy_time": 0.0259370001458592, "framework_time": 2.4168459997326863, "timestamp": "2023-11-03 11:06:09.432125+00:00"},
"4,168,1,3,2,1,1,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3956821986607144, "tegra_power": 6.944862176553071, "ps_energy": 2.7590510562224284, "time": 356.80716814313615, "times": [356.7262878417969, 356.7984313964844, 356.7167053222656, 356.834228515625, 356.8262023925781, 356.9153137207031, 356.8330078125], "compile_time": 1002.1971549999762, "verification_time": 0, "benchmark_time": 2500.9297819999574, "GB/s": 6.887754001102671, "GB/s/W (Jetson)": 1.0258455822620796, "GPU (W) (Jetson)": 6.714221048663648, "GB/s/W (PS)": 0.890741037378568, "GPU (W) (PS)": 7.732611064348382, "strategy_time": 0.02650999999787018, "framework_time": 2.620549000084793, "timestamp": "2023-11-03 11:06:12.938194+00:00"},
"1,40,1,1,2,0,0,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.8639090401785716, "tegra_power": 6.677334205482298, "ps_energy": 4.429714069820095, "time": 588.2415335518973, "times": [588.1868286132812, 588.4088134765625, 588.1420288085938, 588.1690063476562, 588.2757568359375, 588.2705688476562, 588.2377319335938], "compile_time": 1085.5965609998748, "verification_time": 0, "benchmark_time": 4120.897482999908, "GB/s": 4.177875685112906, "GB/s/W (Jetson)": 0.6360398173054356, "GPU (W) (Jetson)": 6.568575695170086, "GB/s/W (PS)": 0.5547987886495371, "GPU (W) (PS)": 7.530434043092412, "strategy_time": 0.023542000008092145, "framework_time": 6.242868000299495, "timestamp": "2023-11-03 11:06:18.151010+00:00"},
"4,32,1,3,2,0,1,0": {"block_size_x": 4, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.410853794642857, "tegra_power": 7.0315796631889125, "ps_energy": 2.791318676886866, "time": 355.1627502441406, "times": [355.1513671875, 355.11614990234375, 355.0970764160156, 355.15948486328125, 355.07891845703125, 355.1880187988281, 355.3482360839844], "compile_time": 1100.478750000093, "verification_time": 0, "benchmark_time": 2489.384104999999, "GB/s": 6.919644580718652, "GB/s/W (Jetson)": 1.0193898964180312, "GPU (W) (Jetson)": 6.7880254699729194, "GB/s/W (PS)": 0.8804440784027355, "GPU (W) (PS)": 7.859266420727117, "strategy_time": 0.025470000082350452, "framework_time": 2.570398999750978, "timestamp": "2023-11-03 11:06:21.743523+00:00"},
"1,168,1,4,5,1,1,0": {"block_size_x": 1, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8587123325892856, "tegra_power": 6.891232373189104, "ps_energy": 3.302393539761007, "time": 428.3693411690848, "times": [428.0075378417969, 428.1849365234375, 428.353759765625, 428.5133972167969, 428.4154052734375, 428.60968017578125, 428.50067138671875], "compile_time": 913.9353709999796, "verification_time": 0, "benchmark_time": 3001.877775000139, "GB/s": 5.737105258963765, "GB/s/W (Jetson)": 0.859687759409504, "GPU (W) (Jetson)": 6.673475568506903, "GB/s/W (PS)": 0.7441875023101745, "GPU (W) (PS)": 7.709220110730321, "strategy_time": 0.025677999929030193, "framework_time": 2.658838000115793, "timestamp": "2023-11-03 11:06:25.662074+00:00"},
"2,208,1,2,5,1,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5908900669642856, "tegra_power": 7.030032126996194, "ps_energy": 2.9852088808390493, "time": 379.8834969656808, "times": [379.7333984375, 380.08660888671875, 379.8687438964844, 379.82061767578125, 379.9377136230469, 379.8730163574219, 379.8643798828125], "compile_time": 1098.532731999967, "verification_time": 0, "benchmark_time": 2668.944154999963, "GB/s": 6.46935183978793, "GB/s/W (Jetson)": 0.9485543332525643, "GPU (W) (Jetson)": 6.820222746339387, "GB/s/W (PS)": 0.8232589738608994, "GPU (W) (PS)": 7.858222072512766, "strategy_time": 0.026041999944936833, "framework_time": 3.0440580001140916, "timestamp": "2023-11-03 11:06:29.432676+00:00"},
"8,120,1,3,6,0,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5027901785714284, "tegra_power": 7.100653877608913, "ps_energy": 2.8544103358642263, "time": 362.66153390066967, "times": [362.6734924316406, 362.7252502441406, 362.6697998046875, 362.6760559082031, 362.6457824707031, 362.68780517578125, 362.55255126953125], "compile_time": 1078.9102409999032, "verification_time": 0, "benchmark_time": 2546.323716000188, "GB/s": 6.77656649594693, "GB/s/W (Jetson)": 0.9819440802675585, "GPU (W) (Jetson)": 6.901173531287506, "GB/s/W (PS)": 0.8609834294395221, "GPU (W) (PS)": 7.870728128134009, "strategy_time": 0.026979999802279053, "framework_time": 2.655971000194768, "timestamp": "2023-11-03 11:06:33.060648+00:00"},
"2,240,1,4,8,0,0,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.483119419642857, "tegra_power": 7.103138193028833, "ps_energy": 2.8686396573841972, "time": 361.05920846121654, "times": [360.67041015625, 361.2220458984375, 361.0459289550781, 360.861083984375, 360.6165771484375, 362.0370178222656, 360.9613952636719], "compile_time": 1052.5181339999108, "verification_time": 0, "benchmark_time": 2530.9692929999983, "GB/s": 6.8066398596339495, "GB/s/W (Jetson)": 0.9897228383617056, "GPU (W) (Jetson)": 6.877319180489987, "GB/s/W (PS)": 0.8567126908651159, "GPU (W) (PS)": 7.945067152863751, "strategy_time": 0.025313999913123553, "framework_time": 2.5103400002990384, "timestamp": "2023-11-03 11:06:36.646724+00:00"},
"1,176,1,3,2,1,1,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.554443359375, "tegra_power": 6.960603406843774, "ps_energy": 2.9354880738635205, "time": 378.2264883858817, "times": [378.0662536621094, 378.25384521484375, 377.99432373046875, 378.51202392578125, 378.30816650390625, 378.2328796386719, 378.2179260253906], "compile_time": 952.0876540000245, "verification_time": 0, "benchmark_time": 2651.1752649998925, "GB/s": 6.4976940417051345, "GB/s/W (Jetson)": 0.9620882729618655, "GPU (W) (Jetson)": 6.753739988641026, "GB/s/W (PS)": 0.8372031969339423, "GPU (W) (PS)": 7.761191148697706, "strategy_time": 0.02500099981261883, "framework_time": 2.951760000314607, "timestamp": "2023-11-03 11:06:40.253017+00:00"},
"4,176,1,3,4,1,1,0": {"block_size_x": 4, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3265555245535716, "tegra_power": 6.924248280449819, "ps_energy": 2.6900710713948035, "time": 348.7305908203125, "times": [348.67010498046875, 348.7236022949219, 348.77581787109375, 348.7105712890625, 348.62933349609375, 348.82110595703125, 348.7835998535156], "compile_time": 1051.3362950000555, "verification_time": 0, "benchmark_time": 2444.4696740001746, "GB/s": 7.047273926325285, "GB/s/W (Jetson)": 1.0563255310537123, "GPU (W) (Jetson)": 6.671498244764987, "GB/s/W (PS)": 0.9135818105823251, "GPU (W) (PS)": 7.71389474340923, "strategy_time": 0.028595000003406312, "framework_time": 3.0452009998498397, "timestamp": "2023-11-03 11:06:43.751952+00:00"},
"2,88,1,3,5,1,1,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6068289620535716, "tegra_power": 6.963645838470055, "ps_energy": 2.9858769704830723, "time": 385.18297031947543, "times": [385.25531005859375, 384.999267578125, 385.1287536621094, 385.23162841796875, 385.23516845703125, 385.27020263671875, 385.16046142578125], "compile_time": 928.6860760000764, "verification_time": 0, "benchmark_time": 2707.243766999909, "GB/s": 6.38034438013092, "GB/s/W (Jetson)": 0.9427546017687274, "GPU (W) (Jetson)": 6.7677679516605735, "GB/s/W (PS)": 0.8230747697559673, "GPU (W) (PS)": 7.751840555169275, "strategy_time": 0.025782000193430576, "framework_time": 2.737429999797314, "timestamp": "2023-11-03 11:06:47.390958+00:00"},
"1,248,1,4,7,0,0,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2271205357142856, "tegra_power": 6.979878276408258, "ps_energy": 3.702980261476114, "time": 474.4182564871652, "times": [474.596923828125, 475.8005676269531, 474.3472900390625, 474.2014465332031, 473.723388671875, 474.0863037109375, 474.171875], "compile_time": 1059.0284009999777, "verification_time": 0, "benchmark_time": 3326.01891000013, "GB/s": 5.180239095766095, "GB/s/W (Jetson)": 0.7615457720906104, "GPU (W) (Jetson)": 6.8022688663154165, "GB/s/W (PS)": 0.6636816365368176, "GPU (W) (PS)": 7.80530725966338, "strategy_time": 0.02755199989223911, "framework_time": 2.4443990000690974, "timestamp": "2023-11-03 11:06:51.778530+00:00"},
"2,184,1,4,3,0,1,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.468017578125, "tegra_power": 7.032713538018266, "ps_energy": 2.859211334790806, "time": 363.23846435546875, "times": [363.1890563964844, 363.2067565917969, 363.2718200683594, 363.3095397949219, 363.272705078125, 363.19744873046875, 363.221923828125], "compile_time": 1072.9496740000286, "verification_time": 0, "benchmark_time": 2545.83909400003, "GB/s": 6.765803297733822, "GB/s/W (Jetson)": 0.9957789692353347, "GPU (W) (Jetson)": 6.794483019589505, "GB/s/W (PS)": 0.8595377229014133, "GPU (W) (PS)": 7.871444286232731, "strategy_time": 0.026042999934361433, "framework_time": 2.9155590000300435, "timestamp": "2023-11-03 11:06:55.400315+00:00"},
"8,128,1,4,3,1,0,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.378138950892857, "tegra_power": 7.051052541871326, "ps_energy": 2.7628337687161286, "time": 352.0938284737723, "times": [352.1002197265625, 352.1130065917969, 352.1476135253906, 352.0126647949219, 352.1488952636719, 352.0975646972656, 352.0368347167969], "compile_time": 1064.8723669999072, "verification_time": 0, "benchmark_time": 2467.5011599999834, "GB/s": 6.979957617130083, "GB/s/W (Jetson)": 1.0334131229284602, "GPU (W) (Jetson)": 6.754276157583962, "GB/s/W (PS)": 0.8895214861739694, "GPU (W) (PS)": 7.846867923508446, "strategy_time": 0.02515699998184573, "framework_time": 3.0180600001585844, "timestamp": "2023-11-03 11:06:58.935787+00:00"},
"1,32,1,2,3,0,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7069266183035716, "tegra_power": 6.991374218626308, "ps_energy": 3.1197055623049113, "time": 400.6107090541295, "times": [400.5929260253906, 400.5504150390625, 400.4881286621094, 400.5353088378906, 400.61334228515625, 400.8931884765625, 400.6016540527344], "compile_time": 1089.264440999841, "verification_time": 0, "benchmark_time": 2807.350685000074, "GB/s": 6.134633808972728, "GB/s/W (Jetson)": 0.9078931003826677, "GPU (W) (Jetson)": 6.757000142843957, "GB/s/W (PS)": 0.7877666500630488, "GPU (W) (PS)": 7.787374355694982, "strategy_time": 0.024166999992303317, "framework_time": 2.6129450000098586, "timestamp": "2023-11-03 11:07:02.835346+00:00"},
"8,32,1,2,1,1,0,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.442626953125, "tegra_power": 7.013792602411882, "ps_energy": 2.7990627242665402, "time": 358.6147024972098, "times": [358.4825439453125, 358.6319274902344, 358.5943603515625, 358.6728515625, 358.5888977050781, 358.6224365234375, 358.70989990234375], "compile_time": 926.0847759999251, "verification_time": 0, "benchmark_time": 2513.5166810000555, "GB/s": 6.853037488107787, "GB/s/W (Jetson)": 1.0061298950524737, "GPU (W) (Jetson)": 6.811285025727591, "GB/s/W (PS)": 0.8780081913469744, "GPU (W) (PS)": 7.805209058009322, "strategy_time": 0.02515699998184573, "framework_time": 2.35611399989466, "timestamp": "2023-11-03 11:07:06.277385+00:00"},
"4,96,1,2,2,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.368443080357143, "tegra_power": 7.087763596034065, "ps_energy": 2.764414976017958, "time": 346.9328133719308, "times": [346.8587646484375, 346.94891357421875, 347.0057678222656, 346.9958190917969, 346.9635925292969, 346.9027099609375, 346.8541259765625], "compile_time": 1102.990675000001, "verification_time": 0, "benchmark_time": 2431.5813860000617, "GB/s": 7.083792323112773, "GB/s/W (Jetson)": 1.0376436826294397, "GPU (W) (Jetson)": 6.826806197250772, "GB/s/W (PS)": 0.8890126921320929, "GPU (W) (PS)": 7.9681565694230105, "strategy_time": 0.025833999870883417, "framework_time": 2.901804999964952, "timestamp": "2023-11-03 11:07:09.815186+00:00"},
"16,40,1,4,8,1,0,0": {"block_size_x": 16, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3934151785714284, "tegra_power": 7.084286749461304, "ps_energy": 2.7540780309037864, "time": 351.6636308942522, "times": [351.72222900390625, 351.6922302246094, 351.72625732421875, 351.73321533203125, 351.6278076171875, 351.49176025390625, 351.65191650390625], "compile_time": 1059.994190999987, "verification_time": 0, "benchmark_time": 2464.9402469999586, "GB/s": 6.988496347349089, "GB/s/W (Jetson)": 1.02681725343903, "GPU (W) (Jetson)": 6.80597869186861, "GB/s/W (PS)": 0.8923494441417502, "GPU (W) (PS)": 7.8315691159202, "strategy_time": 0.08833600008983922, "framework_time": 3.3456719997957407, "timestamp": "2023-11-03 11:07:13.343612+00:00"},
"1,176,1,3,8,1,0,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.564453125, "tegra_power": 7.160276364377857, "ps_energy": 2.919677160732785, "time": 371.2218715122768, "times": [372.0926513671875, 370.95819091796875, 370.69146728515625, 370.5289611816406, 372.1333923339844, 371.03228759765625, 371.11614990234375], "compile_time": 923.3928680000645, "verification_time": 0, "benchmark_time": 2601.9727580001017, "GB/s": 6.620299579839611, "GB/s/W (Jetson)": 0.9583329779131758, "GPU (W) (Jetson)": 6.908141254051057, "GB/s/W (PS)": 0.8417368992204561, "GPU (W) (PS)": 7.865046175320054, "strategy_time": 0.02552199998717697, "framework_time": 3.2194699997489806, "timestamp": "2023-11-03 11:07:16.872276+00:00"},
"1,232,1,1,4,0,1,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.655308314732143, "tegra_power": 6.966074614335788, "ps_energy": 3.03984471872952, "time": 394.6028485979353, "times": [394.63201904296875, 394.8454284667969, 394.62139892578125, 394.4871826171875, 394.5917053222656, 394.4974060058594, 394.5447998046875], "compile_time": 1044.8656850001043, "verification_time": 0, "benchmark_time": 2766.2128590000066, "GB/s": 6.228034107539027, "GB/s/W (Jetson)": 0.9255422379257352, "GPU (W) (Jetson)": 6.729065246656803, "GB/s/W (PS)": 0.8084623483751944, "GPU (W) (PS)": 7.703554927518649, "strategy_time": 0.025938999897334725, "framework_time": 3.192592000004879, "timestamp": "2023-11-03 11:07:20.686875+00:00"},
"8,128,1,4,5,1,1,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.383265904017857, "tegra_power": 7.0633665369238425, "ps_energy": 2.756017264078374, "time": 348.67306082589283, "times": [348.6996765136719, 348.66448974609375, 348.6249084472656, 348.5650634765625, 348.8665771484375, 348.6755676269531, 348.6151428222656], "compile_time": 910.8694939998259, "verification_time": 0, "benchmark_time": 2444.520010000133, "GB/s": 7.048436705086267, "GB/s/W (Jetson)": 1.0311900136098224, "GPU (W) (Jetson)": 6.835245310815459, "GB/s/W (PS)": 0.8917215548799667, "GPU (W) (PS)": 7.904302263989846, "strategy_time": 0.025105000077019213, "framework_time": 2.7934649999679095, "timestamp": "2023-11-03 11:07:24.045152+00:00"},
"4,192,1,4,4,1,0,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3922642299107144, "tegra_power": 7.040127369615813, "ps_energy": 2.7236097353701814, "time": 349.2921622140067, "times": [349.32269287109375, 349.6836853027344, 349.1925048828125, 349.2442321777344, 349.25677490234375, 349.19061279296875, 349.1546325683594], "compile_time": 1050.8595669998613, "verification_time": 0, "benchmark_time": 2451.909743999977, "GB/s": 7.0359437338140465, "GB/s/W (Jetson)": 1.027311268242189, "GPU (W) (Jetson)": 6.848891812364819, "GB/s/W (PS)": 0.9023319193217575, "GPU (W) (PS)": 7.7975117394745945, "strategy_time": 0.026095000066561624, "framework_time": 3.207018000239259, "timestamp": "2023-11-03 11:07:27.551480+00:00"},
"2,256,1,4,6,0,1,0": {"block_size_x": 2, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.392857142857143, "tegra_power": 7.08430269110803, "ps_energy": 2.7737027606255134, "time": 352.55395943777904, "times": [352.4913635253906, 352.47698974609375, 352.5443115234375, 352.7856750488281, 352.6783447265625, 352.42474365234375, 352.4762878417969], "compile_time": 1055.4921139998896, "verification_time": 0, "benchmark_time": 2473.864026000001, "GB/s": 6.970847821193545, "GB/s/W (Jetson)": 1.0270567164179103, "GPU (W) (Jetson)": 6.787208252243297, "GB/s/W (PS)": 0.8860358200190753, "GPU (W) (PS)": 7.867455991839552, "strategy_time": 0.028022000151395332, "framework_time": 2.804712999932235, "timestamp": "2023-11-03 11:07:31.083727+00:00"},
"8,72,1,4,6,1,1,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4130161830357144, "tegra_power": 7.032812553203395, "ps_energy": 2.7531108347965136, "time": 354.76834978376115, "times": [354.9195861816406, 354.61614990234375, 354.7608947753906, 354.8074951171875, 355.0228271484375, 354.7266540527344, 354.52484130859375], "compile_time": 1082.876176000127, "verification_time": 0, "benchmark_time": 2489.750818999937, "GB/s": 6.927337237095585, "GB/s/W (Jetson)": 1.0184763853958891, "GPU (W) (Jetson)": 6.801667015973942, "GB/s/W (PS)": 0.8926629356647912, "GPU (W) (PS)": 7.760305665583171, "strategy_time": 0.025677999929030193, "framework_time": 2.899820000038744, "timestamp": "2023-11-03 11:07:34.659581+00:00"},
"1,120,1,2,4,0,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0010463169642856, "tegra_power": 7.070275121581939, "ps_energy": 3.475460692424219, "time": 438.6456037248884, "times": [438.8599853515625, 438.635986328125, 438.59100341796875, 438.56280517578125, 438.62579345703125, 438.74725341796875, 438.49639892578125], "compile_time": 1099.8079629998756, "verification_time": 0, "benchmark_time": 3073.3973660001084, "GB/s": 5.6027006292336345, "GB/s/W (Jetson)": 0.8189143853287776, "GPU (W) (Jetson)": 6.841619502122024, "GB/s/W (PS)": 0.7071292750791446, "GPU (W) (PS)": 7.923163170703912, "strategy_time": 0.06922000011400087, "framework_time": 2.30516900001021, "timestamp": "2023-11-03 11:07:38.835216+00:00"},
"2,120,1,4,3,0,0,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6824776785714284, "tegra_power": 7.06055411361399, "ps_energy": 3.080173679982441, "time": 394.740487234933, "times": [394.6464538574219, 394.6693115234375, 394.5550537109375, 394.7839660644531, 394.755615234375, 394.84405517578125, 394.928955078125], "compile_time": 1053.5644250001042, "verification_time": 0, "benchmark_time": 2766.27313899985, "GB/s": 6.22586250834042, "GB/s/W (Jetson)": 0.9161679217807364, "GPU (W) (Jetson)": 6.795547366730917, "GB/s/W (PS)": 0.7978770859486112, "GPU (W) (PS)": 7.803034600170745, "strategy_time": 0.025938999897334725, "framework_time": 3.0278420001650375, "timestamp": "2023-11-03 11:07:42.658410+00:00"},
"16,64,1,2,2,0,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.397251674107143, "tegra_power": 7.117127645520577, "ps_energy": 2.7858344589655775, "time": 349.1755632672991, "times": [349.0359802246094, 349.0329284667969, 349.1414489746094, 349.206298828125, 349.1936950683594, 349.2738037109375, 349.34478759765625], "compile_time": 1107.7610659999664, "verification_time": 0, "benchmark_time": 2454.45149499983, "GB/s": 7.038293221334823, "GB/s/W (Jetson)": 1.0251739633951173, "GPU (W) (Jetson)": 6.865462324097437, "GB/s/W (PS)": 0.8821773282654217, "GPU (W) (PS)": 7.978320226358394, "strategy_time": 0.02265700004500104, "framework_time": 2.7204390003134904, "timestamp": "2023-11-03 11:07:46.223421+00:00"},
"8,120,1,3,3,0,1,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4102260044642856, "tegra_power": 7.143836281352132, "ps_energy": 2.7840133761383186, "time": 351.12493896484375, "times": [350.90911865234375, 351.1499938964844, 351.1000671386719, 351.04583740234375, 351.4727478027344, 351.1428527832031, 351.053955078125], "compile_time": 1057.4839450000582, "verification_time": 0, "benchmark_time": 2461.4505340000505, "GB/s": 6.999218019788865, "GB/s/W (Jetson)": 1.0196554163169622, "GPU (W) (Jetson)": 6.864297396732645, "GB/s/W (PS)": 0.8827543793661351, "GPU (W) (PS)": 7.928839758138247, "strategy_time": 0.02588600000308361, "framework_time": 2.9590899998765963, "timestamp": "2023-11-03 11:07:49.745394+00:00"},
"2,240,1,2,8,1,0,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4248744419642856, "tegra_power": 7.173222242701603, "ps_energy": 2.802467153298494, "time": 351.5372576032366, "times": [351.3779296875, 351.4263610839844, 351.5988464355469, 351.4627990722656, 351.6160888671875, 351.8170166015625, 351.4617614746094], "compile_time": 939.2774279999685, "verification_time": 0, "benchmark_time": 2464.4658419999814, "GB/s": 6.991008625247274, "GB/s/W (Jetson)": 1.0134957742427293, "GPU (W) (Jetson)": 6.897915909388832, "GB/s/W (PS)": 0.8769415895231505, "GPU (W) (PS)": 7.97203452176186, "strategy_time": 0.041720000126588275, "framework_time": 4.068339000014021, "timestamp": "2023-11-03 11:07:53.153585+00:00"},
"4,248,1,3,3,0,1,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.498046875, "tegra_power": 6.975510785809836, "ps_energy": 2.866799761294065, "time": 370.3674839564732, "times": [371.7135009765625, 368.21343994140625, 371.64208984375, 368.05963134765625, 371.8643798828125, 368.1220397949219, 372.9573059082031], "compile_time": 924.029752000024, "verification_time": 0, "benchmark_time": 2597.63959299994, "GB/s": 6.635571713117302, "GB/s/W (Jetson)": 0.9838086004691164, "GPU (W) (Jetson)": 6.744779126705352, "GB/s/W (PS)": 0.8572625242896792, "GPU (W) (PS)": 7.74041967904229, "strategy_time": 0.02192800002376316, "framework_time": 2.3520409999946423, "timestamp": "2023-11-03 11:07:56.677698+00:00"},
"16,32,1,2,7,1,1,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3971121651785716, "tegra_power": 7.130471286063861, "ps_energy": 2.7766467142115028, "time": 348.5660400390625, "times": [348.4544677734375, 348.46063232421875, 348.4482421875, 348.7356262207031, 348.58673095703125, 348.6302185058594, 348.6463623046875], "compile_time": 1114.6983900000578, "verification_time": 0, "benchmark_time": 2443.3884249999664, "GB/s": 7.050600797841883, "GB/s/W (Jetson)": 1.0252336272370142, "GPU (W) (Jetson)": 6.877067441538299, "GB/s/W (PS)": 0.8850963961030583, "GPU (W) (PS)": 7.965912898170844, "strategy_time": 0.025470000082350452, "framework_time": 2.736529999992854, "timestamp": "2023-11-03 11:08:00.238614+00:00"},
"16,64,1,4,3,1,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.394252232142857, "tegra_power": 7.106057128235436, "ps_energy": 2.7721821432577207, "time": 349.3935328892299, "times": [349.37957763671875, 349.3121337890625, 349.3494873046875, 349.5296325683594, 349.34368896484375, 349.4512023925781, 349.3890075683594], "compile_time": 1060.1605860001655, "verification_time": 0, "benchmark_time": 2451.3198059999013, "GB/s": 7.033902372712622, "GB/s/W (Jetson)": 1.0264582682671015, "GPU (W) (Jetson)": 6.852594586809137, "GB/s/W (PS)": 0.8865218347853432, "GPU (W) (PS)": 7.934268617778338, "strategy_time": 0.026302999913241365, "framework_time": 3.028983999911361, "timestamp": "2023-11-03 11:08:03.753205+00:00"},
"2,104,1,3,4,0,0,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.711635044642857, "tegra_power": 7.104643208910206, "ps_energy": 3.1406271756139694, "time": 393.63663591657365, "times": [393.5974426269531, 393.56951904296875, 393.5652160644531, 393.5926513671875, 393.699951171875, 393.7447814941406, 393.6868896484375], "compile_time": 1050.551478999978, "verification_time": 0, "benchmark_time": 2765.97171100002, "GB/s": 6.243321316567844, "GB/s/W (Jetson)": 0.9063166538045994, "GPU (W) (Jetson)": 6.888675487048808, "GB/s/W (PS)": 0.7825188609085881, "GPU (W) (PS)": 7.978493079794498, "strategy_time": 0.025572999902578886, "framework_time": 3.352328000119087, "timestamp": "2023-11-03 11:08:07.573511+00:00"},
"16,48,1,4,6,0,0,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5179268973214284, "tegra_power": 7.284842973550821, "ps_energy": 2.9391342709882986, "time": 359.0763680594308, "times": [358.9090576171875, 358.9496765136719, 358.8692626953125, 359.2490234375, 359.2300109863281, 359.14306640625, 359.1844787597656], "compile_time": 1070.443847999968, "verification_time": 0, "benchmark_time": 2517.612314999951, "GB/s": 6.844226517277354, "GB/s/W (Jetson)": 0.9760410449621852, "GPU (W) (Jetson)": 7.012232275070482, "GB/s/W (PS)": 0.8361645890963735, "GPU (W) (PS)": 8.185262335342106, "strategy_time": 0.03000099991368188, "framework_time": 4.01291600019249, "timestamp": "2023-11-03 11:08:11.165705+00:00"},
"8,88,1,3,6,0,0,0": {"block_size_x": 8, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.494838169642857, "tegra_power": 7.132771174096527, "ps_energy": 2.8612411498347035, "time": 362.432625906808, "times": [362.4469299316406, 362.4202575683594, 362.5073547363281, 362.3736572265625, 362.3271789550781, 362.35186767578125, 362.60113525390625], "compile_time": 1065.1930819999507, "verification_time": 0, "benchmark_time": 2540.9344910001437, "GB/s": 6.780846492092355, "GB/s/W (Jetson)": 0.9850739137728568, "GPU (W) (Jetson)": 6.88359157347041, "GB/s/W (PS)": 0.8589279516485276, "GPU (W) (PS)": 7.8945463109891545, "strategy_time": 0.02588600000308361, "framework_time": 2.59959899972273, "timestamp": "2023-11-03 11:08:14.774824+00:00"},
"4,248,1,2,2,0,1,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.488490513392857, "tegra_power": 6.953279158078991, "ps_energy": 2.862399526003823, "time": 372.1558401925223, "times": [373.478271484375, 362.04901123046875, 373.79217529296875, 374.09368896484375, 373.7227478027344, 374.0619201660156, 373.89306640625], "compile_time": 949.9524499999552, "verification_time": 0, "benchmark_time": 2608.7888970000677, "GB/s": 6.603685162454103, "GB/s/W (Jetson)": 0.9875866461107217, "GPU (W) (Jetson)": 6.686689404378339, "GB/s/W (PS)": 0.8585803545848957, "GPU (W) (PS)": 7.691400259963829, "strategy_time": 0.025208999886672245, "framework_time": 2.9918990001078782, "timestamp": "2023-11-03 11:08:18.336917+00:00"},
"2,32,1,2,8,0,1,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4092494419642856, "tegra_power": 7.0735431309472165, "ps_energy": 2.7580683310740954, "time": 351.8448006766183, "times": [351.8988037109375, 351.9038391113281, 351.7079772949219, 351.88995361328125, 351.82806396484375, 351.8620910644531, 351.8228759765625], "compile_time": 1098.0429730000196, "verification_time": 0, "benchmark_time": 2470.5047129998547, "GB/s": 6.98489787336317, "GB/s/W (Jetson)": 1.020068722313906, "GPU (W) (Jetson)": 6.847477743968809, "GB/s/W (PS)": 0.8910584166139633, "GPU (W) (PS)": 7.8388776124307284, "strategy_time": 0.027395999950385885, "framework_time": 3.882912000108263, "timestamp": "2023-11-03 11:08:21.909694+00:00"},
"16,56,1,3,4,0,1,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.475306919642857, "tegra_power": 7.193520215568468, "ps_energy": 2.862971951006849, "time": 354.81534249441967, "times": [354.7735900878906, 354.9871826171875, 354.672607421875, 354.7772521972656, 354.80194091796875, 354.7749938964844, 354.9198303222656], "compile_time": 1073.701273999859, "verification_time": 0, "benchmark_time": 2487.144497000145, "GB/s": 6.926419761678292, "GB/s/W (Jetson)": 0.9928465761145239, "GPU (W) (Jetson)": 6.976324367038293, "GB/s/W (PS)": 0.8584086893117174, "GPU (W) (PS)": 8.068906859775593, "strategy_time": 0.025834000098257093, "framework_time": 2.630169999974896, "timestamp": "2023-11-03 11:08:25.473253+00:00"},
"1,136,1,1,4,0,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.443080357142857, "tegra_power": 7.182447669954131, "ps_energy": 2.7972019416023874, "time": 353.5083792550223, "times": [353.5559997558594, 353.4661865234375, 353.4478759765625, 353.4184265136719, 353.6916809082031, 353.5370788574219, 353.44140625], "compile_time": 1065.453314000024, "verification_time": 0, "benchmark_time": 2478.6541510000006, "GB/s": 6.952027573374937, "GB/s/W (Jetson)": 1.0059431703974417, "GPU (W) (Jetson)": 6.910954592622002, "GB/s/W (PS)": 0.878592268741296, "GPU (W) (PS)": 7.912689219693078, "strategy_time": 0.03932399999939662, "framework_time": 3.7042599999494996, "timestamp": "2023-11-03 11:08:29.021419+00:00"},
"2,184,1,3,6,0,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7474190848214284, "tegra_power": 7.1622768585519285, "ps_energy": 3.1556963009696637, "time": 395.04272896902904, "times": [395.2737121582031, 395.0688171386719, 395.1855163574219, 395.0119323730469, 394.9402160644531, 394.8401184082031, 394.9787902832031], "compile_time": 935.6709660000888, "verification_time": 0, "benchmark_time": 2768.9938329999677, "GB/s": 6.221099186950668, "GB/s/W (Jetson)": 0.8945122400792139, "GPU (W) (Jetson)": 6.954739027830135, "GB/s/W (PS)": 0.7787821658392295, "GPU (W) (PS)": 7.988240434662113, "strategy_time": 0.028437999844754813, "framework_time": 2.9217400001471105, "timestamp": "2023-11-03 11:08:32.729094+00:00"},
"1,56,1,2,2,1,0,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8870675223214284, "tegra_power": 7.126628615727475, "ps_energy": 3.2953903432449545, "time": 418.12391880580356, "times": [418.0101013183594, 418.3675537109375, 418.0544738769531, 418.10516357421875, 418.08447265625, 418.11968994140625, 418.1259765625], "compile_time": 1101.1360290001448, "verification_time": 0, "benchmark_time": 2931.818909999947, "GB/s": 5.877683360040986, "GB/s/W (Jetson)": 0.8512443789412646, "GPU (W) (Jetson)": 6.904813124700284, "GB/s/W (PS)": 0.7457690118676543, "GPU (W) (PS)": 7.881372471244557, "strategy_time": 0.025469000092925853, "framework_time": 2.6854829998228524, "timestamp": "2023-11-03 11:08:36.764816+00:00"},
"1,112,1,4,3,0,1,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7324916294642856, "tegra_power": 7.063704929220926, "ps_energy": 3.133121817250477, "time": 398.8648986816406, "times": [398.5618896484375, 398.5451965332031, 400.0434875488281, 398.70416259765625, 398.7815246582031, 398.69390869140625, 398.72412109375], "compile_time": 914.4700340000327, "verification_time": 0, "benchmark_time": 2795.3078220000407, "GB/s": 6.161484773724264, "GB/s/W (Jetson)": 0.8993989125162739, "GPU (W) (Jetson)": 6.8506695838514, "GB/s/W (PS)": 0.7843933761109574, "GPU (W) (PS)": 7.855095365890345, "strategy_time": 0.02703200016185292, "framework_time": 2.575477999926079, "timestamp": "2023-11-03 11:08:40.477250+00:00"},
"2,112,1,1,8,0,0,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.434779575892857, "tegra_power": 7.200641053407059, "ps_energy": 2.7835549729380937, "time": 350.3632071358817, "times": [350.36749267578125, 350.3669128417969, 350.3713073730469, 350.4307861328125, 350.32537841796875, 350.3385925292969, 350.34197998046875], "compile_time": 1047.1323780000148, "verification_time": 0, "benchmark_time": 2455.5551169999035, "GB/s": 7.01443516312735, "GB/s/W (Jetson)": 1.0093726858616243, "GPU (W) (Jetson)": 6.949301542808901, "GB/s/W (PS)": 0.8828997536937299, "GPU (W) (PS)": 7.944769645456936, "strategy_time": 0.023907000013423385, "framework_time": 2.468235000151253, "timestamp": "2023-11-03 11:08:43.982482+00:00"},
"1,144,1,3,1,0,0,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.716587611607143, "tegra_power": 7.048968942198701, "ps_energy": 3.1194577147834934, "time": 397.6008736746652, "times": [397.6127624511719, 397.6612548828125, 397.5909423828125, 397.52740478515625, 397.6933898925781, 397.5462951660156, 397.5740661621094], "compile_time": 1057.6615630000106, "verification_time": 0, "benchmark_time": 2786.5510879998965, "GB/s": 6.1810729370049575, "GB/s/W (Jetson)": 0.9046643625625882, "GPU (W) (Jetson)": 6.832448798465107, "GB/s/W (PS)": 0.7878292397916251, "GPU (W) (PS)": 7.84570135863427, "strategy_time": 0.02427199979138095, "framework_time": 2.946685000324578, "timestamp": "2023-11-03 11:08:47.829978+00:00"},
"32,32,1,4,6,0,1,0": {"block_size_x": 32, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6549246651785716, "tegra_power": 7.5114561937625215, "ps_energy": 3.0646284761751303, "time": 364.7768990652902, "times": [364.7247009277344, 364.5963134765625, 364.7490234375, 364.78240966796875, 364.93359375, 364.8872985839844, 364.76495361328125], "compile_time": 1064.7949760000301, "verification_time": 0, "benchmark_time": 2556.9840760001625, "GB/s": 6.737268742339197, "GB/s/W (Jetson)": 0.9256759832899817, "GPU (W) (Jetson)": 7.27821490884316, "GB/s/W (PS)": 0.8019242851476912, "GPU (W) (PS)": 8.401377620205611, "strategy_time": 0.02687599999262602, "framework_time": 2.4430789997040847, "timestamp": "2023-11-03 11:08:51.454289+00:00"},
"2,224,1,4,8,1,1,0": {"block_size_x": 2, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.440638950892857, "tegra_power": 7.083391922739888, "ps_energy": 2.836582458894944, "time": 356.2022966657366, "times": [356.1144714355469, 356.1780090332031, 356.21551513671875, 356.02447509765625, 356.25921630859375, 356.2261047363281, 356.3982849121094], "compile_time": 1060.5427130001317, "verification_time": 0, "benchmark_time": 2498.4668120000606, "GB/s": 6.899450180430009, "GB/s/W (Jetson)": 1.0069494298208006, "GPU (W) (Jetson)": 6.851833842001233, "GB/s/W (PS)": 0.8663946970035957, "GPU (W) (PS)": 7.963403059011768, "strategy_time": 0.026666999929148005, "framework_time": 3.134344999807581, "timestamp": "2023-11-03 11:08:55.016517+00:00"},
"4,160,1,2,2,0,1,0": {"block_size_x": 4, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3973911830357144, "tegra_power": 7.142102726935393, "ps_energy": 2.7424241250172208, "time": 348.28756277901783, "times": [348.20355224609375, 348.3233947753906, 348.26458740234375, 348.29998779296875, 348.48895263671875, 348.2353210449219, 348.1971435546875], "compile_time": 1115.3659490000791, "verification_time": 0, "benchmark_time": 2441.5028729999904, "GB/s": 7.056238185453962, "GB/s/W (Jetson)": 1.025114306497134, "GPU (W) (Jetson)": 6.883367192060245, "GB/s/W (PS)": 0.8961414748291596, "GPU (W) (PS)": 7.874022555198847, "strategy_time": 0.054011999964131974, "framework_time": 4.142440000123315, "timestamp": "2023-11-03 11:08:58.577692+00:00"},
"16,32,1,2,7,0,0,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.47998046875, "tegra_power": 7.239514663067682, "ps_energy": 2.832106019365191, "time": 354.0659397670201, "times": [354.0389709472656, 354.11895751953125, 354.2448425292969, 354.0613098144531, 354.114990234375, 353.9046936035156, 353.9778137207031], "compile_time": 1105.9824779999872, "verification_time": 0, "benchmark_time": 2481.8142950000492, "GB/s": 6.941079962724265, "GB/s/W (Jetson)": 0.990975546367395, "GPU (W) (Jetson)": 7.004289851720442, "GB/s/W (PS)": 0.8677641243638415, "GPU (W) (PS)": 7.998809547251996, "strategy_time": 0.027760999955717125, "framework_time": 3.0165809998834447, "timestamp": "2023-11-03 11:09:02.168847+00:00"},
"1,208,1,2,1,1,0,0": {"block_size_x": 1, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5541294642857144, "tegra_power": 7.087971801301346, "ps_energy": 2.939043131447891, "time": 373.1467939104353, "times": [373.05230712890625, 373.698486328125, 373.0625915527344, 373.02386474609375, 373.0374450683594, 373.05474853515625, 373.0981140136719], "compile_time": 1091.3266980001026, "verification_time": 0, "benchmark_time": 2615.442266999935, "GB/s": 6.586147972076335, "GB/s/W (Jetson)": 0.9622065108149441, "GPU (W) (Jetson)": 6.844838294118562, "GB/s/W (PS)": 0.8361905185070513, "GPU (W) (PS)": 7.876372460949875, "strategy_time": 0.024272000018754625, "framework_time": 2.659019000020635, "timestamp": "2023-11-03 11:09:05.878626+00:00"},
"32,32,1,2,6,0,1,0": {"block_size_x": 32, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.497279575892857, "tegra_power": 7.386258996993178, "ps_energy": 2.8713888400627963, "time": 349.7289123535156, "times": [349.71405029296875, 349.7674865722656, 349.8214111328125, 349.7832336425781, 349.6911926269531, 349.7646484375, 349.56036376953125], "compile_time": 941.3586119999309, "verification_time": 0, "benchmark_time": 2451.26717800008, "GB/s": 7.027157072778101, "GB/s/W (Jetson)": 0.984110879584369, "GPU (W) (Jetson)": 7.140615167008378, "GB/s/W (PS)": 0.855892439822345, "GPU (W) (PS)": 8.210327309628656, "strategy_time": 0.026353999828643282, "framework_time": 2.705480000258831, "timestamp": "2023-11-03 11:09:09.274297+00:00"},
"1,80,1,1,7,0,0,0": {"block_size_x": 1, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2044503348214284, "tegra_power": 7.107299977032241, "ps_energy": 3.6410572292178194, "time": 461.1069030761719, "times": [461.0173034667969, 461.3457946777344, 461.1629638671875, 461.06561279296875, 461.1733703613281, 461.0435791015625, 460.939697265625], "compile_time": 931.7975259998548, "verification_time": 0, "benchmark_time": 3235.689627000056, "GB/s": 5.329783578611965, "GB/s/W (Jetson)": 0.7669334029909227, "GPU (W) (Jetson)": 6.949473784590195, "GB/s/W (PS)": 0.6749687921076558, "GPU (W) (PS)": 7.896340750761523, "strategy_time": 0.02505299994481902, "framework_time": 2.87178300004598, "timestamp": "2023-11-03 11:09:13.444738+00:00"},
"4,128,1,3,7,1,1,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.403529575892857, "tegra_power": 7.144417765048613, "ps_energy": 2.760846313997198, "time": 349.2896205357143, "times": [349.2301025390625, 349.3031311035156, 349.37933349609375, 349.3166809082031, 349.22369384765625, 349.2287902832031, 349.3456115722656], "compile_time": 1055.6091020000622, "verification_time": 0, "benchmark_time": 2449.103554999965, "GB/s": 7.035994932316388, "GB/s/W (Jetson)": 1.0224962591055518, "GPU (W) (Jetson)": 6.88119381333606, "GB/s/W (PS)": 0.8901618273861274, "GPU (W) (PS)": 7.9041750790155705, "strategy_time": 0.025312999923698953, "framework_time": 2.677144000017506, "timestamp": "2023-11-03 11:09:16.952249+00:00"},
"2,56,1,1,1,0,0,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7827845982142856, "tegra_power": 6.997516739136515, "ps_energy": 3.189044065328744, "time": 408.982421875, "times": [408.7892150878906, 408.7966003417969, 408.76776123046875, 408.8534240722656, 408.8418273925781, 408.888427734375, 409.939697265625], "compile_time": 1042.9414210000232, "verification_time": 0, "benchmark_time": 2868.2694900001025, "GB/s": 6.009060215187273, "GB/s/W (Jetson)": 0.8831441720559482, "GPU (W) (Jetson)": 6.80416675478734, "GB/s/W (PS)": 0.7706384576867416, "GPU (W) (PS)": 7.797508877541521, "strategy_time": 0.05229300018072536, "framework_time": 6.084250999720098, "timestamp": "2023-11-03 11:09:20.869697+00:00"},
"4,32,1,3,5,0,0,0": {"block_size_x": 4, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5233677455357144, "tegra_power": 7.248786826368336, "ps_energy": 2.9168987092359333, "time": 361.59200613839283, "times": [361.93084716796875, 361.1756286621094, 361.0349426269531, 361.5065002441406, 361.60186767578125, 362.3669128417969, 361.52734375], "compile_time": 1069.75486500005, "verification_time": 0, "benchmark_time": 2536.5076240000235, "GB/s": 6.796610429101682, "GB/s/W (Jetson)": 0.9739365196959224, "GPU (W) (Jetson)": 6.978494277248875, "GB/s/W (PS)": 0.8425386840545298, "GPU (W) (PS)": 8.066822993093334, "strategy_time": 0.0222920000396698, "framework_time": 2.5157339998713724, "timestamp": "2023-11-03 11:09:24.478551+00:00"},
"1,208,1,2,8,0,0,0": {"block_size_x": 1, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5426199776785716, "tegra_power": 7.299711815927949, "ps_energy": 2.9454008227671045, "time": 361.4192853655134, "times": [361.35797119140625, 361.32598876953125, 361.3374938964844, 361.31610107421875, 361.2684326171875, 361.6369323730469, 361.69207763671875], "compile_time": 1100.7967420000568, "verification_time": 0, "benchmark_time": 2533.513330000005, "GB/s": 6.7998585009501085, "GB/s/W (Jetson)": 0.9665620586540834, "GPU (W) (Jetson)": 7.03509768469369, "GB/s/W (PS)": 0.8343855888826593, "GPU (W) (PS)": 8.149539723062476, "strategy_time": 0.027396999939810485, "framework_time": 3.018970999846715, "timestamp": "2023-11-03 11:09:28.115965+00:00"},
"2,64,1,3,2,1,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.440638950892857, "tegra_power": 7.2215080663318245, "ps_energy": 2.7941568428747945, "time": 350.6414576939174, "times": [350.6273498535156, 351.2804260253906, 350.5661315917969, 350.5719909667969, 350.46875, 350.4537353515625, 350.5218200683594], "compile_time": 1102.7454719999241, "verification_time": 0, "benchmark_time": 2457.561971000132, "GB/s": 7.008868877522442, "GB/s/W (Jetson)": 1.0069494298208006, "GPU (W) (Jetson)": 6.960497389396961, "GB/s/W (PS)": 0.879549766959923, "GPU (W) (PS)": 7.968700738501592, "strategy_time": 0.027708999823516933, "framework_time": 3.0251700002281723, "timestamp": "2023-11-03 11:09:31.679395+00:00"},
"16,48,1,1,3,0,1,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.367396763392857, "tegra_power": 6.966282912202461, "ps_energy": 2.719041172377729, "time": 353.2563781738281, "times": [349.33135986328125, 351.8631286621094, 353.75030517578125, 353.67401123046875, 354.305419921875, 355.6109313964844, 354.2594909667969], "compile_time": 1046.8814429998474, "verification_time": 0, "benchmark_time": 2479.1636039999503, "GB/s": 6.9569869133139335, "GB/s/W (Jetson)": 1.0381022894015732, "GPU (W) (Jetson)": 6.701639120095162, "GB/s/W (PS)": 0.9038480273731546, "GPU (W) (PS)": 7.69707594929754, "strategy_time": 0.0276050000138639, "framework_time": 2.801780000254439, "timestamp": "2023-11-03 11:09:35.208344+00:00"},
"32,32,1,3,7,0,1,0": {"block_size_x": 32, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5888671875, "tegra_power": 7.456979349325038, "ps_energy": 2.987109671865905, "time": 359.5271650041853, "times": [356.6095886230469, 356.7357177734375, 357.23712158203125, 361.635986328125, 361.5635986328125, 361.45318603515625, 361.4549560546875], "compile_time": 1068.1345149998833, "verification_time": 0, "benchmark_time": 2525.7697790000293, "GB/s": 6.835644811349347, "GB/s/W (Jetson)": 0.9492955111278761, "GPU (W) (Jetson)": 7.200755435183494, "GB/s/W (PS)": 0.822735108505358, "GPU (W) (PS)": 8.308439424406586, "strategy_time": 0.02734400004555937, "framework_time": 3.759559999934936, "timestamp": "2023-11-03 11:09:38.806157+00:00"},
"2,224,1,2,4,0,1,0": {"block_size_x": 2, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.401646205357143, "tegra_power": 7.12785801167233, "ps_energy": 2.7656226584354693, "time": 349.23214285714283, "times": [349.15771484375, 349.4174499511719, 349.2817077636719, 349.18072509765625, 349.1629638671875, 349.25177001953125, 349.17266845703125], "compile_time": 1106.6319110000222, "verification_time": 0, "benchmark_time": 2447.9669190000095, "GB/s": 7.037152937567112, "GB/s/W (Jetson)": 1.0232981004937554, "GPU (W) (Jetson)": 6.876933450938283, "GB/s/W (PS)": 0.8886244811829391, "GPU (W) (PS)": 7.9191526753789585, "strategy_time": 0.13854500002707937, "framework_time": 5.030523999948855, "timestamp": "2023-11-03 11:09:42.366004+00:00"},
"8,112,1,3,8,0,0,0": {"block_size_x": 8, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.469447544642857, "tegra_power": 7.248351657141797, "ps_energy": 2.8789506193918766, "time": 355.41067940848217, "times": [354.464111328125, 354.6053771972656, 354.62176513671875, 354.8301086425781, 354.6669921875, 355.3137512207031, 359.3726501464844], "compile_time": 1071.2075629999163, "verification_time": 0, "benchmark_time": 2491.335794999941, "GB/s": 6.914817540345827, "GB/s/W (Jetson)": 0.9952023501497089, "GPU (W) (Jetson)": 6.948152342391099, "GB/s/W (PS)": 0.8536443742543667, "GPU (W) (PS)": 8.10034921905942, "strategy_time": 0.027656999918690417, "framework_time": 7.219841000051019, "timestamp": "2023-11-03 11:09:45.935848+00:00"},
"1,232,1,2,2,1,0,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7564174107142856, "tegra_power": 7.116120736777111, "ps_energy": 3.18202953486668, "time": 399.5656171526228, "times": [395.1333312988281, 397.07989501953125, 400.5901184082031, 400.5563049316406, 402.4397277832031, 400.572509765625, 400.5874328613281], "compile_time": 949.2547259999355, "verification_time": 0, "benchmark_time": 2802.414631000147, "GB/s": 6.150679374049509, "GB/s/W (Jetson)": 0.8915921044640145, "GPU (W) (Jetson)": 6.898535040019252, "GB/s/W (PS)": 0.7723372687371891, "GPU (W) (PS)": 7.963722097868182, "strategy_time": 0.02588600000308361, "framework_time": 2.6314629999433237, "timestamp": "2023-11-03 11:09:49.690230+00:00"},
"2,256,1,4,5,1,0,0": {"block_size_x": 2, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.652622767857143, "tegra_power": 7.098101115126026, "ps_energy": 3.0320813676908074, "time": 386.0076163155692, "times": [382.6044921875, 382.6393737792969, 385.7698974609375, 387.80499267578125, 387.61407470703125, 387.8713073730469, 387.7491760253906], "compile_time": 1062.6770339999894, "verification_time": 0, "benchmark_time": 2706.1838760000683, "GB/s": 6.3667137541422525, "GB/s/W (Jetson)": 0.9264792679078573, "GPU (W) (Jetson)": 6.871944116482326, "GB/s/W (PS)": 0.810532338012972, "GPU (W) (PS)": 7.854978087302864, "strategy_time": 0.026094000077137025, "framework_time": 2.6016169997546967, "timestamp": "2023-11-03 11:09:53.462032+00:00"},
"2,224,1,3,5,1,0,0": {"block_size_x": 2, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7271902901785716, "tegra_power": 7.01500098614087, "ps_energy": 3.1407896322866042, "time": 401.9712655203683, "times": [400.63031005859375, 400.8045959472656, 399.8856201171875, 402.2763671875, 401.5659484863281, 402.2939453125, 406.3420715332031], "compile_time": 1062.7048009998816, "verification_time": 0, "benchmark_time": 2817.4512339999183, "GB/s": 6.1138698479318805, "GB/s/W (Jetson)": 0.901147238918587, "GPU (W) (Jetson)": 6.784540399045966, "GB/s/W (PS)": 0.7824783852877091, "GPU (W) (PS)": 7.813468030409395, "strategy_time": 0.026095000066561624, "framework_time": 2.4166640000657935, "timestamp": "2023-11-03 11:09:57.344689+00:00"},
"4,200,1,3,6,0,0,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.515625, "tegra_power": 7.066897597135575, "ps_energy": 2.905617865344019, "time": 367.9532993861607, "times": [363.24859619140625, 367.10546875, 370.3610534667969, 368.5620422363281, 369.2646789550781, 368.0175476074219, 369.11370849609375], "compile_time": 1070.665856000005, "verification_time": 0, "benchmark_time": 2579.4628970002123, "GB/s": 6.67910847409141, "GB/s/W (Jetson)": 0.9769341614906831, "GPU (W) (Jetson)": 6.836805116836021, "GB/s/W (PS)": 0.8458097774357624, "GPU (W) (PS)": 7.896702842973077, "strategy_time": 0.026563000119494973, "framework_time": 2.539063999620339, "timestamp": "2023-11-03 11:10:00.997687+00:00"},
"4,184,1,2,3,1,0,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5763113839285716, "tegra_power": 6.965246991434161, "ps_energy": 2.942903782781936, "time": 379.91263689313615, "times": [377.85479736328125, 378.92724609375, 377.93292236328125, 378.8407287597656, 378.689697265625, 384.25640869140625, 382.88665771484375], "compile_time": 1120.7477369998742, "verification_time": 0, "benchmark_time": 2677.383987999974, "GB/s": 6.468855629804403, "GB/s/W (Jetson)": 0.953921958087399, "GPU (W) (Jetson)": 6.781325846376756, "GB/s/W (PS)": 0.8350935611210581, "GPU (W) (PS)": 7.746264527678061, "strategy_time": 0.026355000045441557, "framework_time": 2.318849999937811, "timestamp": "2023-11-03 11:10:04.798482+00:00"},
"8,120,1,4,1,1,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.43017578125, "tegra_power": 7.066552653301785, "ps_energy": 2.7895568180690264, "time": 356.4146728515625, "times": [353.9961853027344, 353.9341735839844, 354.1429748535156, 357.4792175292969, 358.5747985839844, 358.3357238769531, 358.43963623046875], "compile_time": 1070.3845230000297, "verification_time": 0, "benchmark_time": 2499.068793999868, "GB/s": 6.895339017155242, "GB/s/W (Jetson)": 1.0112848704038577, "GPU (W) (Jetson)": 6.818394320881692, "GB/s/W (PS)": 0.8810001589073879, "GPU (W) (PS)": 7.826717109457514, "strategy_time": 0.02312600008735899, "framework_time": 2.5902620000124443, "timestamp": "2023-11-03 11:10:08.371005+00:00"},
"2,240,1,3,7,0,0,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.723842075892857, "tegra_power": 7.191871553275208, "ps_energy": 3.13086823854558, "time": 391.29056658063615, "times": [387.39337158203125, 388.7074890136719, 392.6355285644531, 392.5087585449219, 392.79302978515625, 392.5833435058594, 392.4124450683594], "compile_time": 1063.1159070001104, "verification_time": 0, "benchmark_time": 2743.645013000105, "GB/s": 6.2807545335840445, "GB/s/W (Jetson)": 0.9022549514712284, "GPU (W) (Jetson)": 6.961174913302018, "GB/s/W (PS)": 0.7849579773889361, "GPU (W) (PS)": 8.001389519571713, "strategy_time": 0.027500999976837193, "framework_time": 3.3994439997968584, "timestamp": "2023-11-03 11:10:12.181288+00:00"},
"2,64,1,2,8,1,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4598911830357144, "tegra_power": 7.186696420248274, "ps_energy": 2.8293009953270354, "time": 355.4028843470982, "times": [352.34808349609375, 352.3294372558594, 354.4295959472656, 356.9615173339844, 357.2410888671875, 357.20587158203125, 357.3045959472656], "compile_time": 1100.3040200000669, "verification_time": 0, "benchmark_time": 2490.806478999957, "GB/s": 6.914969203231975, "GB/s/W (Jetson)": 0.9990685835814546, "GPU (W) (Jetson)": 6.921415923662857, "GB/s/W (PS)": 0.8686244425952032, "GPU (W) (PS)": 7.960827331282563, "strategy_time": 0.025105000077019213, "framework_time": 2.5711450000471814, "timestamp": "2023-11-03 11:10:15.775047+00:00"},
"4,256,1,2,3,1,1,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3720005580357144, "tegra_power": 7.048684072538608, "ps_energy": 2.729428570343771, "time": 348.32474190848217, "times": [344.3280334472656, 348.6473388671875, 349.1207275390625, 349.03375244140625, 349.0862121582031, 349.0263977050781, 349.0307312011719], "compile_time": 1098.3068670000193, "verification_time": 0, "benchmark_time": 2441.5465399999903, "GB/s": 7.05548502393121, "GB/s/W (Jetson)": 1.0360874459638287, "GPU (W) (Jetson)": 6.809738937979108, "GB/s/W (PS)": 0.900408249075544, "GPU (W) (PS)": 7.835873373189473, "strategy_time": 0.02682299987100123, "framework_time": 2.6524510001308954, "timestamp": "2023-11-03 11:10:19.317633+00:00"},
"4,144,1,1,5,0,1,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3924386160714284, "tegra_power": 7.025591833313598, "ps_energy": 2.7528645144106383, "time": 353.0098179408482, "times": [350.0960998535156, 350.3432312011719, 351.34307861328125, 354.68603515625, 354.99749755859375, 354.82537841796875, 354.77740478515625], "compile_time": 1061.1052619999555, "verification_time": 0, "benchmark_time": 2474.9829140000656, "GB/s": 6.961846031182637, "GB/s/W (Jetson)": 1.0272363869613388, "GPU (W) (Jetson)": 6.7772580094990875, "GB/s/W (PS)": 0.8927428092210881, "GPU (W) (PS)": 7.798266151543467, "strategy_time": 0.025834000098257093, "framework_time": 2.566352999792798, "timestamp": "2023-11-03 11:10:22.856367+00:00"},
"1,192,1,3,5,1,1,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.467006138392857, "tegra_power": 7.07188350467905, "ps_energy": 2.822404298599135, "time": 360.15079607282365, "times": [356.2704162597656, 359.16619873046875, 361.1222839355469, 361.2204284667969, 361.2119140625, 361.0098571777344, 361.0544738769531], "compile_time": 1069.8615109999992, "verification_time": 0, "benchmark_time": 2527.579651999986, "GB/s": 6.823808323619713, "GB/s/W (Jetson)": 0.996187225379591, "GPU (W) (Jetson)": 6.849925545892784, "GB/s/W (PS)": 0.8707469731461928, "GPU (W) (PS)": 7.836729307210627, "strategy_time": 0.025833999870883417, "framework_time": 2.7568780001274718, "timestamp": "2023-11-03 11:10:26.456645+00:00"},
"8,72,1,4,6,1,0,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5203683035714284, "tegra_power": 7.090616254670749, "ps_energy": 2.9204073512788193, "time": 368.46693638392856, "times": [365.1270751953125, 365.3768615722656, 365.8526611328125, 370.6728515625, 370.9881286621094, 370.564208984375, 370.686767578125], "compile_time": 1066.4300660000663, "verification_time": 0, "benchmark_time": 2584.55079700002, "GB/s": 6.669797904035747, "GB/s/W (Jetson)": 0.9750955828628363, "GPU (W) (Jetson)": 6.840147798078958, "GB/s/W (PS)": 0.8415264394276503, "GPU (W) (PS)": 7.92583285745852, "strategy_time": 0.026927999897452537, "framework_time": 2.6172390000738233, "timestamp": "2023-11-03 11:10:30.110324+00:00"},
"1,160,1,2,4,0,1,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4530552455357144, "tegra_power": 7.082995895194448, "ps_energy": 2.8333043148998382, "time": 358.0274919782366, "times": [353.8702087402344, 358.46099853515625, 358.7471923828125, 358.66009521484375, 358.6998291015625, 358.8762512207031, 358.87786865234375], "compile_time": 1100.3243029999794, "verification_time": 0, "benchmark_time": 2509.099062999894, "GB/s": 6.864277339208884, "GB/s/W (Jetson)": 1.001852691443683, "GPU (W) (Jetson)": 6.851583469139929, "GB/s/W (PS)": 0.8673971190019805, "GPU (W) (PS)": 7.913650148050827, "strategy_time": 0.028333999807728105, "framework_time": 2.928600000359438, "timestamp": "2023-11-03 11:10:33.722760+00:00"},
"4,192,1,1,3,0,0,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4573800223214284, "tegra_power": 7.059817529883467, "ps_energy": 2.8159238768082235, "time": 360.86389596121654, "times": [356.1487121582031, 355.4316101074219, 368.34979248046875, 362.0314025878906, 360.8091735839844, 361.0702209472656, 362.20635986328125], "compile_time": 1044.7149669998907, "verification_time": 0, "benchmark_time": 2529.471627000021, "GB/s": 6.810323857569081, "GB/s/W (Jetson)": 1.0000895171591586, "GPU (W) (Jetson)": 6.809714271292833, "GB/s/W (PS)": 0.8727508652633129, "GPU (W) (PS)": 7.803285139699489, "strategy_time": 0.02588600000308361, "framework_time": 2.630362999980207, "timestamp": "2023-11-03 11:10:37.299656+00:00"},
"1,240,1,4,6,0,1,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.62744140625, "tegra_power": 7.020986551063193, "ps_energy": 3.0109106518696405, "time": 385.9120309012277, "times": [381.5546875, 384.4864501953125, 386.7601013183594, 386.9088439941406, 386.79974365234375, 388.0613098144531, 386.8130798339844], "compile_time": 917.9751479998686, "verification_time": 0, "benchmark_time": 2706.4219170001707, "GB/s": 6.368290706720699, "GB/s/W (Jetson)": 0.9353586322244936, "GPU (W) (Jetson)": 6.808394649200457, "GB/s/W (PS)": 0.816231460895042, "GPU (W) (PS)": 7.8020647473420395, "strategy_time": 0.02468799993948778, "framework_time": 3.030058000149438, "timestamp": "2023-11-03 11:10:40.927453+00:00"},
"4,192,1,2,5,0,0,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4541713169642856, "tegra_power": 7.134219248866127, "ps_energy": 2.8266563905283744, "time": 356.7094159807478, "times": [353.8956298828125, 353.2025146484375, 357.021240234375, 357.92266845703125, 358.4095458984375, 358.0934753417969, 358.42083740234375], "compile_time": 1107.3655779998717, "verification_time": 0, "benchmark_time": 2503.720195999904, "GB/s": 6.889641511825526, "GB/s/W (Jetson)": 1.0013970838188897, "GPU (W) (Jetson)": 6.880029533890244, "GB/s/W (PS)": 0.8694371230387191, "GPU (W) (PS)": 7.924255048767576, "strategy_time": 0.025937999907910125, "framework_time": 2.3888490004537744, "timestamp": "2023-11-03 11:10:44.541275+00:00"},
"4,160,1,3,3,1,1,0": {"block_size_x": 4, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3966238839285716, "tegra_power": 7.0527131302837125, "ps_energy": 2.776006793223002, "time": 353.1408386230469, "times": [349.3088684082031, 352.7395324707031, 354.8408203125, 354.36602783203125, 354.0997009277344, 352.66119384765625, 353.9697265625], "compile_time": 1082.042521999938, "verification_time": 0, "benchmark_time": 2475.7553329998245, "GB/s": 6.959263079236542, "GB/s/W (Jetson)": 1.025442505384481, "GPU (W) (Jetson)": 6.786595096940346, "GB/s/W (PS)": 0.885300427217858, "GPU (W) (PS)": 7.860905592361113, "strategy_time": 0.025261000018872437, "framework_time": 2.309887000137678, "timestamp": "2023-11-03 11:10:48.101731+00:00"},
"2,88,1,2,1,1,0,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.62060546875, "tegra_power": 7.0171641271395035, "ps_energy": 3.0106321154496203, "time": 388.1559361049107, "times": [384.75506591796875, 384.8291015625, 389.12847900390625, 389.53656005859375, 389.4989013671875, 389.6908874511719, 389.6525573730469], "compile_time": 1105.5019150001044, "verification_time": 0, "benchmark_time": 2720.070704000136, "GB/s": 6.33147601621571, "GB/s/W (Jetson)": 0.9377985466741195, "GPU (W) (Jetson)": 6.751424427634421, "GB/s/W (PS)": 0.8163069766606046, "GPU (W) (PS)": 7.756243909756689, "strategy_time": 0.02536499982852547, "framework_time": 2.30577499996798, "timestamp": "2023-11-03 11:10:51.929961+00:00"},
"1,216,1,2,1,0,0,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.58349609375, "tegra_power": 7.100933623956637, "ps_energy": 2.957557931275655, "time": 376.0680847167969, "times": [373.2543640136719, 373.23358154296875, 373.6009521484375, 378.2053527832031, 378.02056884765625, 378.11578369140625, 378.0459899902344], "compile_time": 1093.0264510000143, "verification_time": 0, "benchmark_time": 2635.524264999958, "GB/s": 6.534986881034397, "GB/s/W (Jetson)": 0.9512690984690984, "GPU (W) (Jetson)": 6.869756298771103, "GB/s/W (PS)": 0.8309558281213403, "GPU (W) (PS)": 7.864421500970718, "strategy_time": 0.025677999929030193, "framework_time": 2.261292000184767, "timestamp": "2023-11-03 11:10:55.661144+00:00"},
"1,120,1,2,6,1,1,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6048409598214284, "tegra_power": 7.09164093710927, "ps_energy": 3.000758459071611, "time": 380.62986537388394, "times": [376.3169860839844, 380.8348388671875, 381.4110412597656, 381.40802001953125, 381.3012390136719, 381.34765625, 381.7892761230469], "compile_time": 1111.1963099999684, "verification_time": 0, "benchmark_time": 2667.7006790000632, "GB/s": 6.456666235546063, "GB/s/W (Jetson)": 0.94347410759714, "GPU (W) (Jetson)": 6.843501250914069, "GB/s/W (PS)": 0.8189929424577357, "GPU (W) (PS)": 7.883665292853558, "strategy_time": 0.027656000156639493, "framework_time": 2.52468499979841, "timestamp": "2023-11-03 11:10:59.442915+00:00"},
"4,112,1,2,3,1,1,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.3828822544642856, "tegra_power": 7.097285530450173, "ps_energy": 2.74714466806576, "time": 348.92201014927457, "times": [345.71771240234375, 345.6751708984375, 349.73040771484375, 350.3520202636719, 350.1954650878906, 350.3802185058594, 350.403076171875], "compile_time": 1106.511570000066, "verification_time": 0, "benchmark_time": 2445.5140019999817, "GB/s": 7.043407777424525, "GB/s/W (Jetson)": 1.0313560375867217, "GPU (W) (Jetson)": 6.829268963126887, "GB/s/W (PS)": 0.8946015943639306, "GPU (W) (PS)": 7.873234098618446, "strategy_time": 0.024479999865434365, "framework_time": 2.318481000202155, "timestamp": "2023-11-03 11:11:02.997609+00:00"},
"1,128,1,4,6,0,0,0": {"block_size_x": 1, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.899135044642857, "tegra_power": 7.217592750843927, "ps_energy": 3.32271523207029, "time": 414.4820077078683, "times": [410.7493896484375, 414.80706787109375, 414.9159851074219, 415.9657287597656, 415.3791198730469, 414.4082336425781, 415.1485290527344], "compile_time": 935.8403019998605, "verification_time": 0, "benchmark_time": 2904.6610560001227, "GB/s": 5.92932854574509, "GB/s/W (Jetson)": 0.8477011115923199, "GPU (W) (Jetson)": 6.994598054268741, "GB/s/W (PS)": 0.7396360591722266, "GPU (W) (PS)": 8.016548777220212, "strategy_time": 0.025001000039992505, "framework_time": 2.271967999831759, "timestamp": "2023-11-03 11:11:06.840781+00:00"},
"2,32,1,1,7,0,0,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8512137276785716, "tegra_power": 6.9756576320364, "ps_energy": 3.250164770132739, "time": 423.05664498465404, "times": [418.78546142578125, 420.91937255859375, 424.23541259765625, 424.4259948730469, 424.37860107421875, 424.2354736328125, 424.41619873046875], "compile_time": 925.6736590000401, "verification_time": 0, "benchmark_time": 2966.3766799999394, "GB/s": 5.8091511600985415, "GB/s/W (Jetson)": 0.8619487119266054, "GPU (W) (Jetson)": 6.739555474378606, "GB/s/W (PS)": 0.7561462799006432, "GPU (W) (PS)": 7.682575864635421, "strategy_time": 0.02609499983918795, "framework_time": 2.344522000157667, "timestamp": "2023-11-03 11:11:10.735534+00:00"},
"2,248,1,4,6,1,0,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7802734375, "tegra_power": 7.145891043554399, "ps_energy": 3.1939450491211443, "time": 402.26216779436385, "times": [398.3324890136719, 398.6351013183594, 403.13592529296875, 403.98406982421875, 403.96795654296875, 404.0342712402344, 403.745361328125], "compile_time": 937.0334570000978, "verification_time": 0, "benchmark_time": 2819.921483999906, "GB/s": 6.109448505871731, "GB/s/W (Jetson)": 0.8839418335089567, "GPU (W) (Jetson)": 6.911595621195165, "GB/s/W (PS)": 0.7694559431059218, "GPU (W) (PS)": 7.9399588249469355, "strategy_time": 0.0979700000698358, "framework_time": 2.529838999862477, "timestamp": "2023-11-03 11:11:14.495203+00:00"},
"8,96,1,2,7,1,0,0": {"block_size_x": 8, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5150669642857144, "tegra_power": 7.132120395443481, "ps_energy": 2.8910216620381886, "time": 365.6757071358817, "times": [363.7527160644531, 365.9713134765625, 365.99755859375, 366.0694274902344, 365.86181640625, 366.0697326660156, 366.00738525390625], "compile_time": 946.9990139998572, "verification_time": 0, "benchmark_time": 2563.22957999987, "GB/s": 6.720708956164755, "GB/s/W (Jetson)": 0.9771509207898823, "GPU (W) (Jetson)": 6.8778617644161395, "GB/s/W (PS)": 0.8500801056839458, "GPU (W) (PS)": 7.905971344615223, "strategy_time": 0.09640799999033334, "framework_time": 5.858753000211436, "timestamp": "2023-11-03 11:11:18.011494+00:00"},
"1,160,1,2,3,1,1,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4442661830357144, "tegra_power": 7.131238825887095, "ps_energy": 2.821873758406842, "time": 355.683585030692, "times": [352.463134765625, 352.55364990234375, 356.2768859863281, 357.1260986328125, 357.17041015625, 357.029541015625, 357.1653747558594], "compile_time": 932.5584000000617, "verification_time": 0, "benchmark_time": 2493.625881000071, "GB/s": 6.90951200288856, "GB/s/W (Jetson)": 1.0054551411204016, "GPU (W) (Jetson)": 6.872024141414337, "GB/s/W (PS)": 0.8709106821941951, "GPU (W) (PS)": 7.933663169087047, "strategy_time": 0.028437999844754813, "framework_time": 2.9942220000975794, "timestamp": "2023-11-03 11:11:21.440759+00:00"},
"8,80,1,2,3,1,1,0": {"block_size_x": 8, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4193638392857144, "tegra_power": 7.129132225800333, "ps_energy": 2.7614264723075133, "time": 350.31580897739957, "times": [346.60723876953125, 350.2720947265625, 351.0745849609375, 351.0989685058594, 351.0707702636719, 350.9721984863281, 351.11480712890625], "compile_time": 943.8744069998393, "verification_time": 0, "benchmark_time": 2455.22736099997, "GB/s": 7.015384224805426, "GB/s/W (Jetson)": 1.0158042209664397, "GPU (W) (Jetson)": 6.906236536535519, "GB/s/W (PS)": 0.8899748099924497, "GPU (W) (PS)": 7.882677291579682, "strategy_time": 0.027292000140732853, "framework_time": 2.810156000123243, "timestamp": "2023-11-03 11:11:24.842754+00:00"},
"8,88,1,1,8,0,1,0": {"block_size_x": 8, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4075753348214284, "tegra_power": 7.028547397632572, "ps_energy": 2.7857088066749776, "time": 353.8936288016183, "times": [353.7109375, 353.70318603515625, 353.7529602050781, 353.7614440917969, 354.61761474609375, 353.89984130859375, 353.8094177246094], "compile_time": 909.907093999891, "verification_time": 0, "benchmark_time": 2494.0453459998935, "GB/s": 6.9444595776479865, "GB/s/W (Jetson)": 1.0207780269448066, "GPU (W) (Jetson)": 6.803104489261771, "GB/s/W (PS)": 0.8822171197905612, "GPU (W) (PS)": 7.87159920371598, "strategy_time": 0.025625000034779077, "framework_time": 2.686195000251246, "timestamp": "2023-11-03 11:11:28.249474+00:00"},
"16,40,1,3,4,1,1,0": {"block_size_x": 16, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.430873325892857, "tegra_power": 7.142147851910897, "ps_energy": 2.8012557447840924, "time": 353.0592258998326, "times": [349.6066589355469, 350.42657470703125, 354.2756652832031, 354.25543212890625, 354.2327575683594, 354.3135986328125, 354.30389404296875], "compile_time": 1063.5988439998982, "verification_time": 0, "benchmark_time": 2474.6503979999943, "GB/s": 6.960871773670212, "GB/s/W (Jetson)": 1.0109946799047318, "GPU (W) (Jetson)": 6.885171516754323, "GB/s/W (PS)": 0.8773208246251789, "GPU (W) (PS)": 7.934237485636035, "strategy_time": 0.02484400010871468, "framework_time": 2.6020249999874068, "timestamp": "2023-11-03 11:11:31.790406+00:00"},
"4,216,1,3,1,0,0,0": {"block_size_x": 4, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4346400669642856, "tegra_power": 7.015012267480204, "ps_energy": 2.825651427219522, "time": 360.3101719447545, "times": [359.4345703125, 362.3271484375, 356.7743835449219, 358.9916076660156, 362.7682800292969, 359.737548828125, 362.1376647949219], "compile_time": 1058.431364999933, "verification_time": 0, "benchmark_time": 2525.6632220000483, "GB/s": 6.820789950878262, "GB/s/W (Jetson)": 1.0094305245967394, "GPU (W) (Jetson)": 6.757067261863435, "GB/s/W (PS)": 0.8697463446219587, "GPU (W) (PS)": 7.842274926539607, "strategy_time": 0.026250999781041173, "framework_time": 2.62035900027513, "timestamp": "2023-11-03 11:11:35.377478+00:00"},
"8,96,1,4,7,0,1,0": {"block_size_x": 8, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5108816964285716, "tegra_power": 7.193880021848911, "ps_energy": 2.8781582932932515, "time": 360.31539481026783, "times": [356.8116149902344, 357.3050537109375, 361.5801086425781, 361.57598876953125, 361.6251525878906, 361.58135986328125, 361.7284851074219], "compile_time": 1072.1353679998629, "verification_time": 0, "benchmark_time": 2525.171637000085, "GB/s": 6.820691081751043, "GB/s/W (Jetson)": 0.9787796866318478, "GPU (W) (Jetson)": 6.968566241114213, "GB/s/W (PS)": 0.8538793733919201, "GPU (W) (PS)": 7.987885987521601, "strategy_time": 0.02661500002432149, "framework_time": 2.453167999874495, "timestamp": "2023-11-03 11:11:38.977598+00:00"},
"2,80,1,4,7,0,1,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5076729910714284, "tegra_power": 7.138080854466928, "ps_energy": 2.8703458078182718, "time": 365.0236293247768, "times": [363.4873046875, 365.81036376953125, 364.02947998046875, 365.3388977050781, 365.2417297363281, 366.16680908203125, 365.0908203125], "compile_time": 1069.367254999861, "verification_time": 0, "benchmark_time": 2558.514708000075, "GB/s": 6.732714823273455, "GB/s/W (Jetson)": 0.9800320890125174, "GPU (W) (Jetson)": 6.869892219608191, "GB/s/W (PS)": 0.8562034558017255, "GPU (W) (PS)": 7.8634520541255295, "strategy_time": 0.02598999981273664, "framework_time": 2.3556670003017643, "timestamp": "2023-11-03 11:11:42.608189+00:00"},
"8,56,1,4,2,1,0,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.432338169642857, "tegra_power": 7.175248121043197, "ps_energy": 2.8315628814847775, "time": 352.13304356166293, "times": [348.5044250488281, 350.2757873535156, 353.2724609375, 353.163330078125, 353.1208801269531, 353.2393798828125, 353.35504150390625], "compile_time": 1117.3728520000168, "verification_time": 0, "benchmark_time": 2467.9034639998463, "GB/s": 6.979180298283036, "GB/s/W (Jetson)": 1.0103858216231716, "GPU (W) (Jetson)": 6.907440849744975, "GB/s/W (PS)": 0.8679305750438839, "GPU (W) (PS)": 8.041173452070355, "strategy_time": 0.026511000214668456, "framework_time": 2.5154089998977724, "timestamp": "2023-11-03 11:11:46.196064+00:00"},
"2,248,1,1,3,0,1,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.468959263392857, "tegra_power": 7.071324401315694, "ps_energy": 2.827725017492802, "time": 363.1257890973772, "times": [361.8038024902344, 363.2088623046875, 363.295166015625, 363.2895812988281, 363.400146484375, 363.35589599609375, 363.5270690917969], "compile_time": 1056.6868979999526, "verification_time": 0, "benchmark_time": 2545.0325230001454, "GB/s": 6.767902676669875, "GB/s/W (Jetson)": 0.9953991693742053, "GPU (W) (Jetson)": 6.799184573285077, "GB/s/W (PS)": 0.8691085536241523, "GPU (W) (PS)": 7.787177618317019, "strategy_time": 0.0276050000138639, "framework_time": 2.6757749999433145, "timestamp": "2023-11-03 11:11:49.800582+00:00"},
"1,104,1,3,2,1,1,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8726981026785716, "tegra_power": 7.021445268086176, "ps_energy": 3.291234595166835, "time": 421.8131801060268, "times": [417.2763671875, 420.8979187011719, 422.9276428222656, 422.9141540527344, 422.954833984375, 422.92425537109375, 422.7970886230469], "compile_time": 1108.6825100001079, "verification_time": 0, "benchmark_time": 2956.247742999949, "GB/s": 5.8262759816614995, "GB/s/W (Jetson)": 0.8555023577689822, "GPU (W) (Jetson)": 6.81035642830433, "GB/s/W (PS)": 0.7467106731343234, "GPU (W) (PS)": 7.802588326755347, "strategy_time": 0.023489999875891954, "framework_time": 2.690984000082608, "timestamp": "2023-11-03 11:11:53.868634+00:00"},
"4,40,1,2,6,1,1,0": {"block_size_x": 4, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.41650390625, "tegra_power": 7.124857721605531, "ps_energy": 2.769634228870148, "time": 351.8638480050223, "times": [348.14031982421875, 349.56280517578125, 352.7825622558594, 353.2875061035156, 353.0848388671875, 353.0832824707031, 353.1056213378906], "compile_time": 1098.4431120000409, "verification_time": 0, "benchmark_time": 2467.174569000008, "GB/s": 6.984519762214735, "GB/s/W (Jetson)": 1.0170064255405131, "GPU (W) (Jetson)": 6.867724319934989, "GB/s/W (PS)": 0.8873373871475294, "GPU (W) (PS)": 7.871323651387499, "strategy_time": 0.026041999944936833, "framework_time": 2.310144999910335, "timestamp": "2023-11-03 11:11:57.436642+00:00"},
"4,56,1,3,5,1,1,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4068080357142856, "tegra_power": 7.064196632098608, "ps_energy": 2.780388637572287, "time": 354.3534371512277, "times": [352.6259765625, 354.4922790527344, 354.62677001953125, 354.6968078613281, 354.5942687988281, 354.81036376953125, 354.6275939941406], "compile_time": 1055.412017000208, "verification_time": 0, "benchmark_time": 2484.035239999912, "GB/s": 6.935448460038975, "GB/s/W (Jetson)": 1.021103454671922, "GPU (W) (Jetson)": 6.792111444052765, "GB/s/W (PS)": 0.8839052090738898, "GPU (W) (PS)": 7.846371295068596, "strategy_time": 0.05000100009056041, "framework_time": 2.7421309996498167, "timestamp": "2023-11-03 11:12:00.979211+00:00"},
"2,144,1,1,3,0,1,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.40771484375, "tegra_power": 7.104638748230152, "ps_energy": 2.7721573975599574, "time": 350.7007795061384, "times": [347.37567138671875, 347.70318603515625, 352.02227783203125, 352.1715087890625, 351.9222412109375, 351.8985290527344, 351.8120422363281], "compile_time": 1072.907806000103, "verification_time": 0, "benchmark_time": 2458.481265000046, "GB/s": 7.007683311855837, "GB/s/W (Jetson)": 1.020718880551612, "GPU (W) (Jetson)": 6.865439099224634, "GB/s/W (PS)": 0.8865297483336156, "GPU (W) (PS)": 7.904622856737721, "strategy_time": 0.02734400004555937, "framework_time": 6.310838999752377, "timestamp": "2023-11-03 11:12:04.516994+00:00"},
"1,240,1,3,5,0,1,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.616908482142857, "tegra_power": 7.059128734299948, "ps_energy": 2.9986165948578543, "time": 383.9359828404018, "times": [381.21270751953125, 384.4625549316406, 384.6279602050781, 384.3162536621094, 384.3084411621094, 384.3403015136719, 384.2836608886719], "compile_time": 1053.0941530000746, "verification_time": 0, "benchmark_time": 2691.429065999955, "GB/s": 6.40106713056275, "GB/s/W (Jetson)": 0.9391234033479048, "GPU (W) (Jetson)": 6.816002143853964, "GB/s/W (PS)": 0.8195779361104014, "GPU (W) (PS)": 7.81019943135767, "strategy_time": 0.02442699997118325, "framework_time": 2.9394790001333604, "timestamp": "2023-11-03 11:12:08.264582+00:00"},
"8,40,1,4,8,0,0,0": {"block_size_x": 8, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.542201450892857, "tegra_power": 7.2576517672900565, "ps_energy": 2.9604350568372735, "time": 364.7715323311942, "times": [361.89923095703125, 363.15655517578125, 365.664794921875, 365.5448303222656, 365.98394775390625, 365.70916748046875, 365.44219970703125], "compile_time": 1060.0102789999255, "verification_time": 0, "benchmark_time": 2557.1100009999554, "GB/s": 6.7373678650137165, "GB/s/W (Jetson)": 0.9667211853477842, "GPU (W) (Jetson)": 6.969297835952467, "GB/s/W (PS)": 0.8301482561909437, "GPU (W) (PS)": 8.115861010089317, "strategy_time": 0.02515699998184573, "framework_time": 2.6934310001252015, "timestamp": "2023-11-03 11:12:11.884480+00:00"},
"8,40,1,3,4,0,0,0": {"block_size_x": 8, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.51171875, "tegra_power": 7.282233912579781, "ps_energy": 2.8735076849959245, "time": 356.7516566685268, "times": [353.9374084472656, 354.0591735839844, 354.5189514160156, 358.7060852050781, 359.03656005859375, 358.41363525390625, 358.58978271484375], "compile_time": 1073.9850679999563, "verification_time": 0, "benchmark_time": 2502.8334109999832, "GB/s": 6.888825753326385, "GB/s/W (Jetson)": 0.9784534992223949, "GPU (W) (Jetson)": 7.040524418177392, "GB/s/W (PS)": 0.8552613284566474, "GPU (W) (PS)": 8.054644263826988, "strategy_time": 0.025469000092925853, "framework_time": 2.8504140000222833, "timestamp": "2023-11-03 11:12:15.464653+00:00"},
"1,112,1,3,6,0,0,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.896484375, "tegra_power": 7.274540437116944, "ps_energy": 3.299577771442663, "time": 409.96561104910717, "times": [405.5650939941406, 409.431884765625, 410.9521789550781, 410.8844909667969, 411.0268249511719, 411.0829772949219, 410.8158264160156], "compile_time": 1071.4429639999707, "verification_time": 0, "benchmark_time": 2877.668287000006, "GB/s": 5.994649145597775, "GB/s/W (Jetson)": 0.8484768712070128, "GPU (W) (Jetson)": 7.065188632743756, "GB/s/W (PS)": 0.7448225713211396, "GPU (W) (PS)": 8.048425727706775, "strategy_time": 0.028489999976955005, "framework_time": 2.6010849999238417, "timestamp": "2023-11-03 11:12:19.416796+00:00"},
"2,40,1,4,5,1,1,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8824637276785716, "tegra_power": 7.0545351322539975, "ps_energy": 3.267798134390822, "time": 422.4315665108817, "times": [418.0307922363281, 420.24755859375, 423.6380615234375, 423.70819091796875, 423.8616638183594, 423.7679138183594, 423.76678466796875], "compile_time": 1071.0366180001074, "verification_time": 0, "benchmark_time": 2960.7978279998406, "GB/s": 5.817747050247233, "GB/s/W (Jetson)": 0.8526039638941992, "GPU (W) (Jetson)": 6.823504577289492, "GB/s/W (PS)": 0.7520660392500474, "GPU (W) (PS)": 7.735686424623868, "strategy_time": 0.027188000103706145, "framework_time": 2.538792999985162, "timestamp": "2023-11-03 11:12:23.451535+00:00"},
"4,64,1,2,8,0,1,0": {"block_size_x": 4, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4285714285714284, "tegra_power": 7.158551294781938, "ps_energy": 2.801110573090877, "time": 353.096932547433, "times": [349.8844909667969, 350.13287353515625, 352.9530334472656, 354.8682861328125, 354.7496337890625, 354.52459716796875, 354.56561279296875], "compile_time": 949.8257499999454, "verification_time": 0, "benchmark_time": 2476.346592999789, "GB/s": 6.960128433485782, "GB/s/W (Jetson)": 1.0119529411764705, "GPU (W) (Jetson)": 6.87791709503222, "GB/s/W (PS)": 0.8773662930728824, "GPU (W) (PS)": 7.93297906295063, "strategy_time": 0.04994899995836022, "framework_time": 3.262242000118931, "timestamp": "2023-11-03 11:12:26.881613+00:00"},
"4,88,1,3,3,0,0,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.524623325892857, "tegra_power": 7.19532905951124, "ps_energy": 2.8874411694496303, "time": 363.4854431152344, "times": [359.5523986816406, 362.2558288574219, 364.4936828613281, 364.5118713378906, 364.49493408203125, 364.6097412109375, 364.4796447753906], "compile_time": 917.9546309999296, "verification_time": 0, "benchmark_time": 2547.250047000034, "GB/s": 6.761206113062625, "GB/s/W (Jetson)": 0.973452148205454, "GPU (W) (Jetson)": 6.945596787193718, "GB/s/W (PS)": 0.8511342243099063, "GPU (W) (PS)": 7.943760126135879, "strategy_time": 0.07338699992942566, "framework_time": 4.206163000162633, "timestamp": "2023-11-03 11:12:30.351228+00:00"},
"2,72,1,4,3,1,0,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.754115513392857, "tegra_power": 7.153237230887795, "ps_energy": 3.146864886439029, "time": 398.0874459402902, "times": [394.8226623535156, 394.9447326660156, 397.4205322265625, 399.8193359375, 399.9603271484375, 399.830322265625, 399.814208984375], "compile_time": 1064.2642349998823, "verification_time": 0, "benchmark_time": 2790.3999279999425, "GB/s": 6.173517967126799, "GB/s/W (Jetson)": 0.8923372995972949, "GPU (W) (Jetson)": 6.918368166289653, "GB/s/W (PS)": 0.7809677532043656, "GPU (W) (PS)": 7.904958869039624, "strategy_time": 0.026355000045441557, "framework_time": 2.718533999995998, "timestamp": "2023-11-03 11:12:34.208693+00:00"},
"4,56,1,3,4,1,0,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4312220982142856, "tegra_power": 7.164591183751854, "ps_energy": 2.8229157860550913, "time": 354.12178693498885, "times": [351.5569763183594, 354.501708984375, 354.52032470703125, 354.29437255859375, 354.39569091796875, 354.59686279296875, 354.986572265625], "compile_time": 1069.2459019999205, "verification_time": 0, "benchmark_time": 2482.456571999819, "GB/s": 6.939985312033841, "GB/s/W (Jetson)": 1.0108496470993287, "GPU (W) (Jetson)": 6.865497091430354, "GB/s/W (PS)": 0.8705892014704394, "GPU (W) (PS)": 7.971595903454915, "strategy_time": 0.043751000021075015, "framework_time": 2.947080000240021, "timestamp": "2023-11-03 11:12:37.763443+00:00"},
"8,120,1,3,2,1,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4850027901785716, "tegra_power": 7.106355515426599, "ps_energy": 2.8396240457819397, "time": 363.76290457589283, "times": [360.3974914550781, 359.85296630859375, 365.03692626953125, 364.591552734375, 365.8270263671875, 365.37103271484375, 365.2633361816406], "compile_time": 1109.5558669999264, "verification_time": 0, "benchmark_time": 2551.9297749999623, "GB/s": 6.756048978840458, "GB/s/W (Jetson)": 0.9889727326315788, "GPU (W) (Jetson)": 6.831380437419283, "GB/s/W (PS)": 0.8654666816371661, "GPU (W) (PS)": 7.806249647947545, "strategy_time": 0.027395999950385885, "framework_time": 3.056406000041534, "timestamp": "2023-11-03 11:12:41.428066+00:00"},
"2,232,1,4,4,1,1,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5226004464285716, "tegra_power": 7.070360983703954, "ps_energy": 2.893093236561851, "time": 370.0966578892299, "times": [367.9783935546875, 370.2713928222656, 370.43634033203125, 370.5201110839844, 370.6291809082031, 370.4841613769531, 370.3570251464844], "compile_time": 1070.4529600000114, "verification_time": 0, "benchmark_time": 2593.754190999789, "GB/s": 6.640427433245184, "GB/s/W (Jetson)": 0.9742327618626256, "GPU (W) (Jetson)": 6.816058434074233, "GB/s/W (PS)": 0.8494714131372445, "GPU (W) (PS)": 7.817128782145757, "strategy_time": 0.02572999983385671, "framework_time": 2.614834000269184, "timestamp": "2023-11-03 11:12:45.094968+00:00"},
"1,208,1,3,2,1,0,0": {"block_size_x": 1, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7530691964285716, "tegra_power": 7.143935962913855, "ps_energy": 3.1689643573187953, "time": 399.36712646484375, "times": [395.4017639160156, 396.5162048339844, 400.7298889160156, 400.69915771484375, 400.76324462890625, 400.80462646484375, 400.6549987792969], "compile_time": 952.7570080001624, "verification_time": 0, "benchmark_time": 2798.677190000035, "GB/s": 6.153736342183242, "GB/s/W (Jetson)": 0.8926764366068712, "GPU (W) (Jetson)": 6.893579901777229, "GB/s/W (PS)": 0.7755215025767382, "GPU (W) (PS)": 7.934965467413751, "strategy_time": 0.09026200018524833, "framework_time": 3.1485409995184455, "timestamp": "2023-11-03 11:12:48.849696+00:00"},
"8,32,1,2,2,0,1,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.459193638392857, "tegra_power": 7.182685299440353, "ps_energy": 2.8531831778547194, "time": 355.4143981933594, "times": [352.6849060058594, 352.6852722167969, 354.740478515625, 356.9636535644531, 356.9537048339844, 356.9625549316406, 356.91021728515625], "compile_time": 1111.616968999897, "verification_time": 0, "benchmark_time": 2495.769945999882, "GB/s": 6.914745188975066, "GB/s/W (Jetson)": 0.9993519670968656, "GPU (W) (Jetson)": 6.919229077081338, "GB/s/W (PS)": 0.8613537395968545, "GPU (W) (PS)": 8.027764751113082, "strategy_time": 0.02458400012983475, "framework_time": 2.65889800016339, "timestamp": "2023-11-03 11:12:52.459821+00:00"},
"1,32,1,4,5,1,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0901925223214284, "tegra_power": 7.088066977383698, "ps_energy": 3.5278618885335424, "time": 449.52599661690846, "times": [445.3829650878906, 448.4114074707031, 449.7495422363281, 451.0628662109375, 449.5832214355469, 451.1583251953125, 451.3336486816406], "compile_time": 918.4106449999945, "verification_time": 0, "benchmark_time": 3149.735961000033, "GB/s": 5.4670920447219356, "GB/s/W (Jetson)": 0.7952902552989775, "GPU (W) (Jetson)": 6.874335512468544, "GB/s/W (PS)": 0.6966259104382264, "GPU (W) (PS)": 7.8479596621416965, "strategy_time": 0.07208499982880312, "framework_time": 5.34081400019204, "timestamp": "2023-11-03 11:12:56.533433+00:00"},
"2,192,1,3,4,0,0,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4774693080357144, "tegra_power": 7.216547142571467, "ps_energy": 2.8387916059116054, "time": 356.5330287388393, "times": [352.44390869140625, 356.2784423828125, 357.1622009277344, 357.5567321777344, 357.32598876953125, 357.2923583984375, 357.67156982421875], "compile_time": 1065.1417930000662, "verification_time": 0, "benchmark_time": 2499.3959630000973, "GB/s": 6.893050017534823, "GB/s/W (Jetson)": 0.991979998310668, "GPU (W) (Jetson)": 6.948779238768542, "GB/s/W (PS)": 0.8657204688368818, "GPU (W) (PS)": 7.962212129275188, "strategy_time": 0.029584000003524125, "framework_time": 2.626499999905718, "timestamp": "2023-11-03 11:13:00.100957+00:00"},
"4,168,1,3,5,1,0,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.489955357142857, "tegra_power": 7.198857084348089, "ps_energy": 2.9015662411567456, "time": 359.02354649135043, "times": [356.02947998046875, 356.3100891113281, 357.9627685546875, 361.0229187011719, 360.6002502441406, 360.74713134765625, 360.4921875], "compile_time": 1073.36654300002, "verification_time": 0, "benchmark_time": 2516.5843580000455, "GB/s": 6.84523347846548, "GB/s/W (Jetson)": 0.987005647691618, "GPU (W) (Jetson)": 6.935353910562646, "GB/s/W (PS)": 0.846990830380025, "GPU (W) (PS)": 8.081827137838298, "strategy_time": 0.026354000056016957, "framework_time": 2.65566899975056, "timestamp": "2023-11-03 11:13:03.693913+00:00"},
"1,104,1,2,6,1,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.829868861607143, "tegra_power": 7.276787725874803, "ps_energy": 3.2755619327828236, "time": 402.6771981375558, "times": [398.2256774902344, 401.75140380859375, 403.6003723144531, 403.853759765625, 403.85260009765625, 403.7620849609375, 403.6944885253906], "compile_time": 948.8459969998075, "verification_time": 0, "benchmark_time": 2822.559704000014, "GB/s": 6.103151634527058, "GB/s/W (Jetson)": 0.8684501368039635, "GPU (W) (Jetson)": 7.027636217535344, "GB/s/W (PS)": 0.750283478203721, "GPU (W) (PS)": 8.134460922875205, "strategy_time": 0.02541699996072566, "framework_time": 2.930828000216934, "timestamp": "2023-11-03 11:13:07.468678+00:00"},
"4,152,1,1,5,0,1,0": {"block_size_x": 4, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.402622767857143, "tegra_power": 7.189443718135868, "ps_energy": 2.7912931979227715, "time": 349.29285103934154, "times": [346.20733642578125, 346.442138671875, 348.22900390625, 350.97576904296875, 351.1126708984375, 350.9988098144531, 351.084228515625], "compile_time": 920.2570429999923, "verification_time": 0, "benchmark_time": 2448.4039000001303, "GB/s": 7.035929858533507, "GB/s/W (Jetson)": 1.022882173963535, "GPU (W) (Jetson)": 6.878534045881548, "GB/s/W (PS)": 0.880452115108832, "GPU (W) (PS)": 7.991269187494429, "strategy_time": 0.025676999939605594, "framework_time": 2.2897759999978007, "timestamp": "2023-11-03 11:13:10.839712+00:00"},
"4,232,1,3,5,0,1,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5055106026785716, "tegra_power": 7.0010229821495, "ps_energy": 2.891693470550308, "time": 372.39227294921875, "times": [373.3070983886719, 370.8201599121094, 374.5605163574219, 370.7736511230469, 373.1059875488281, 370.8595886230469, 373.31890869140625], "compile_time": 1057.6200519999475, "verification_time": 0, "benchmark_time": 2611.9975339997836, "GB/s": 6.59949246673851, "GB/s/W (Jetson)": 0.9808779086277456, "GPU (W) (Jetson)": 6.728148741744262, "GB/s/W (PS)": 0.8498826120502677, "GPU (W) (PS)": 7.765181182866901, "strategy_time": 0.0259380001352838, "framework_time": 2.8284820000408217, "timestamp": "2023-11-03 11:13:14.512239+00:00"},
"2,120,1,4,7,0,0,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8077566964285716, "tegra_power": 7.299251074118596, "ps_energy": 3.251053727779176, "time": 396.2166748046875, "times": [392.5588684082031, 392.7449035644531, 396.33624267578125, 397.97930908203125, 398.00030517578125, 397.9306335449219, 397.9664611816406], "compile_time": 1066.8202879999171, "verification_time": 0, "benchmark_time": 2780.1258019999295, "GB/s": 6.202666763612254, "GB/s/W (Jetson)": 0.8752895160488918, "GPU (W) (Jetson)": 7.086417293801776, "GB/s/W (PS)": 0.7559395217004945, "GPU (W) (PS)": 8.205242067062832, "strategy_time": 0.027084000066679437, "framework_time": 4.34334900023714, "timestamp": "2023-11-03 11:13:18.363609+00:00"},
"2,96,1,4,3,0,1,0": {"block_size_x": 2, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4605887276785716, "tegra_power": 7.150862165389435, "ps_energy": 2.8458149489614306, "time": 357.43858555385043, "times": [356.2824401855469, 357.5064697265625, 357.61297607421875, 357.66754150390625, 357.585205078125, 357.6653747558594, 357.7500915527344], "compile_time": 1073.355687000003, "verification_time": 0, "benchmark_time": 2505.4977259999305, "GB/s": 6.875586742242596, "GB/s/W (Jetson)": 0.9987853607370657, "GPU (W) (Jetson)": 6.883948256078436, "GB/s/W (PS)": 0.8635839097327433, "GPU (W) (PS)": 7.961689263490805, "strategy_time": 0.025730000061230385, "framework_time": 2.6004569999713567, "timestamp": "2023-11-03 11:13:21.945143+00:00"},
"16,64,1,2,6,1,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4112025669642856, "tegra_power": 7.194454952779597, "ps_energy": 2.7797685844503315, "time": 351.09366716657365, "times": [347.3933410644531, 349.29864501953125, 352.1510009765625, 352.1830139160156, 352.1858215332031, 352.2637939453125, 352.1800537109375], "compile_time": 1125.5789419999473, "verification_time": 0, "benchmark_time": 2460.8731270000135, "GB/s": 6.999841437851998, "GB/s/W (Jetson)": 1.0192424451066044, "GPU (W) (Jetson)": 6.867690284542528, "GB/s/W (PS)": 0.8841023723152707, "GPU (W) (PS)": 7.917455780059662, "strategy_time": 0.025469000092925853, "framework_time": 2.612436999925194, "timestamp": "2023-11-03 11:13:25.534288+00:00"},
"1,32,1,4,6,0,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8902064732142856, "tegra_power": 7.247876176726385, "ps_energy": 3.302672258025138, "time": 412.91370064871654, "times": [412.71697998046875, 412.92193603515625, 412.9955139160156, 412.9731750488281, 413.0002136230469, 412.7389221191406, 413.0491638183594], "compile_time": 1073.016440999936, "verification_time": 0, "benchmark_time": 2895.324696999978, "GB/s": 5.951849008979206, "GB/s/W (Jetson)": 0.850319872568422, "GPU (W) (Jetson)": 6.999541232643934, "GB/s/W (PS)": 0.7441246990307004, "GPU (W) (PS)": 7.998456463993341, "strategy_time": 0.02854299987120612, "framework_time": 3.0797350002558233, "timestamp": "2023-11-03 11:13:29.505796+00:00"},
"8,32,1,1,5,0,1,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4185965401785716, "tegra_power": 7.139739406766048, "ps_energy": 2.7843387023411714, "time": 353.2983660016741, "times": [353.2486572265625, 353.2242126464844, 353.18212890625, 353.28839111328125, 353.4313659667969, 353.3896789550781, 353.3241271972656], "compile_time": 1070.709357999931, "verification_time": 0, "benchmark_time": 2476.233385000114, "GB/s": 6.956160108559219, "GB/s/W (Jetson)": 1.0161264845845468, "GPU (W) (Jetson)": 6.845762032669891, "GB/s/W (PS)": 0.8826512370544438, "GPU (W) (PS)": 7.88098380938444, "strategy_time": 0.05359500005397422, "framework_time": 5.083828999886464, "timestamp": "2023-11-03 11:13:33.057980+00:00"},
"16,64,1,2,7,0,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.45068359375, "tegra_power": 7.207437500211931, "ps_energy": 2.81973289878949, "time": 354.60235595703125, "times": [354.5057678222656, 354.5663146972656, 354.6681213378906, 354.5342102050781, 354.72760009765625, 354.546142578125, 354.6683349609375], "compile_time": 1115.9486429999106, "verification_time": 0, "benchmark_time": 2485.2253100000326, "GB/s": 6.9305800108609485, "GB/s/W (Jetson)": 1.0028222355050807, "GPU (W) (Jetson)": 6.911075328690033, "GB/s/W (PS)": 0.8715719141536584, "GPU (W) (PS)": 7.95181659518125, "strategy_time": 0.025832999881458818, "framework_time": 2.7719710001292697, "timestamp": "2023-11-03 11:13:36.662008+00:00"},
"1,104,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7392578125, "tegra_power": 7.134460909208932, "ps_energy": 3.1527641746077797, "time": 397.8101588657924, "times": [397.8573913574219, 398.4757385253906, 397.7508850097656, 397.721923828125, 397.2259521484375, 397.66790771484375, 397.9713134765625], "compile_time": 1068.589048999911, "verification_time": 0, "benchmark_time": 2791.5993159999744, "GB/s": 6.177821117004481, "GB/s/W (Jetson)": 0.8971773262032084, "GPU (W) (Jetson)": 6.885841780184735, "GB/s/W (PS)": 0.7795064470071689, "GPU (W) (PS)": 7.925298297048807, "strategy_time": 0.026770999966174713, "framework_time": 2.7071770002748963, "timestamp": "2023-11-03 11:13:40.524986+00:00"},
"1,112,1,4,8,1,1,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.819545200892857, "tegra_power": 7.08013230179765, "ps_energy": 3.226906850442122, "time": 411.2649492536272, "times": [406.7782287597656, 411.43743896484375, 412.0697937011719, 412.4322814941406, 412.1030578613281, 412.0279541015625, 412.0058898925781], "compile_time": 1065.4257600001529, "verification_time": 0, "benchmark_time": 2882.334814999922, "GB/s": 5.975709830025892, "GB/s/W (Jetson)": 0.871629934934811, "GPU (W) (Jetson)": 6.855787749502676, "GB/s/W (PS)": 0.7615962015337633, "GPU (W) (PS)": 7.846296788234408, "strategy_time": 0.02770900005089061, "framework_time": 2.8567100000600476, "timestamp": "2023-11-03 11:13:44.475685+00:00"},
"4,144,1,3,3,1,1,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.405552455357143, "tegra_power": 7.111927435361887, "ps_energy": 2.7882757128398743, "time": 352.7426191057478, "times": [352.5815734863281, 353.138427734375, 352.2427673339844, 352.5576477050781, 353.28399658203125, 353.08740234375, 352.3065185546875], "compile_time": 1078.5875130000022, "verification_time": 0, "benchmark_time": 2472.938288000023, "GB/s": 6.9671195565490835, "GB/s/W (Jetson)": 1.0216364205764656, "GPU (W) (Jetson)": 6.8195685042413, "GB/s/W (PS)": 0.8814049445264223, "GPU (W) (PS)": 7.904561461579397, "strategy_time": 0.026563000119494973, "framework_time": 2.694156999950792, "timestamp": "2023-11-03 11:13:48.029988+00:00"},
"1,200,1,1,3,0,0,0": {"block_size_x": 1, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.778111049107143, "tegra_power": 7.16286708154496, "ps_energy": 3.168726736986303, "time": 399.3292672293527, "times": [399.3746337890625, 399.50543212890625, 399.3056640625, 399.29730224609375, 399.2706298828125, 399.2611999511719, 399.2900085449219], "compile_time": 1053.397122999968, "verification_time": 0, "benchmark_time": 2799.8679779998383, "GB/s": 6.15431975985995, "GB/s/W (Jetson)": 0.8846298641625028, "GPU (W) (Jetson)": 6.956943247316629, "GB/s/W (PS)": 0.7755796583259059, "GPU (W) (PS)": 7.935122709566793, "strategy_time": 0.027395999950385885, "framework_time": 2.8765030001522973, "timestamp": "2023-11-03 11:13:51.886479+00:00"},
"1,32,1,2,5,1,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0758231026785716, "tegra_power": 7.066429599043379, "ps_energy": 3.5019028274022537, "time": 448.50142560686385, "times": [448.3394775390625, 448.4068298339844, 448.52374267578125, 448.61212158203125, 449.0637512207031, 448.2778015136719, 448.2862548828125], "compile_time": 1110.3823060000195, "verification_time": 0, "benchmark_time": 3145.1053439998304, "GB/s": 5.47958124475221, "GB/s/W (Jetson)": 0.799005637827418, "GPU (W) (Jetson)": 6.858000726567812, "GB/s/W (PS)": 0.7017898899904861, "GPU (W) (PS)": 7.8080082413647975, "strategy_time": 0.026927000135401613, "framework_time": 2.42347400012477, "timestamp": "2023-11-03 11:13:56.144476+00:00"},
"2,208,1,4,7,1,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.74072265625, "tegra_power": 7.2107919304267085, "ps_energy": 3.1498288211973238, "time": 393.42833164760043, "times": [393.3904724121094, 393.2089538574219, 393.43756103515625, 393.66326904296875, 393.4508361816406, 393.3981628417969, 393.4490661621094], "compile_time": 933.3835679999538, "verification_time": 0, "benchmark_time": 2759.44668000011, "GB/s": 6.246626900782805, "GB/s/W (Jetson)": 0.8966978086584714, "GPU (W) (Jetson)": 6.966256458380597, "GB/s/W (PS)": 0.7802328759776248, "GPU (W) (PS)": 8.006105732158282, "strategy_time": 0.027760999955717125, "framework_time": 3.355050999971354, "timestamp": "2023-11-03 11:13:59.840748+00:00"},
"8,72,1,3,3,0,1,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.489536830357143, "tegra_power": 7.204348032554944, "ps_energy": 2.878387490755943, "time": 359.36767142159596, "times": [359.1072998046875, 360.4834289550781, 359.09521484375, 359.1780090332031, 359.1810302734375, 359.23406982421875, 359.2946472167969], "compile_time": 1080.8029310001075, "verification_time": 0, "benchmark_time": 2521.213360000047, "GB/s": 6.838678588639211, "GB/s/W (Jetson)": 0.9871715774726814, "GPU (W) (Jetson)": 6.927548102779998, "GB/s/W (PS)": 0.8538113815088069, "GPU (W) (PS)": 8.009589397314297, "strategy_time": 0.027031999934479245, "framework_time": 3.8957359997766616, "timestamp": "2023-11-03 11:14:03.446741+00:00"},
"8,80,1,3,7,0,1,0": {"block_size_x": 8, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.488071986607143, "tegra_power": 7.246285122257854, "ps_energy": 2.884214204397332, "time": 358.93880789620533, "times": [358.88037109375, 358.95379638671875, 358.8822937011719, 358.94207763671875, 359.0736389160156, 358.8713073730469, 358.9681701660156], "compile_time": 1080.6125609999526, "verification_time": 0, "benchmark_time": 2516.0918060000768, "GB/s": 6.846849507313976, "GB/s/W (Jetson)": 0.9877527713140262, "GPU (W) (Jetson)": 6.931744163274261, "GB/s/W (PS)": 0.852086504619904, "GPU (W) (PS)": 8.03539249852126, "strategy_time": 0.025104999849645537, "framework_time": 2.6411850001295534, "timestamp": "2023-11-03 11:14:07.046440+00:00"},
"1,200,1,2,7,0,0,0": {"block_size_x": 1, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.236328125, "tegra_power": 7.157558692198921, "ps_energy": 3.731567867164683, "time": 467.05039760044644, "times": [466.95208740234375, 467.0242614746094, 467.06573486328125, 467.1741638183594, 467.0353088378906, 467.08355712890625, 467.0176696777344], "compile_time": 1103.2582109999112, "verification_time": 0, "benchmark_time": 3272.9873170001156, "GB/s": 5.26195890770322, "GB/s/W (Jetson)": 0.7593791188895593, "GPU (W) (Jetson)": 6.929291017901291, "GB/s/W (PS)": 0.6585971600906007, "GPU (W) (PS)": 7.98964712659762, "strategy_time": 0.02797000001919514, "framework_time": 3.102597999941281, "timestamp": "2023-11-03 11:14:11.425890+00:00"},
"4,256,1,3,5,1,1,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4081333705357144, "tegra_power": 7.115331051286836, "ps_energy": 2.773761232163971, "time": 351.6972394670759, "times": [351.6305847167969, 351.76165771484375, 351.6144714355469, 351.7119140625, 351.6439208984375, 351.8832702636719, 351.6348571777344], "compile_time": 1070.4285409999557, "verification_time": 0, "benchmark_time": 2465.377756999942, "GB/s": 6.987828518995435, "GB/s/W (Jetson)": 1.0205414824899341, "GPU (W) (Jetson)": 6.847177345448432, "GB/s/W (PS)": 0.886017142175819, "GPU (W) (PS)": 7.886787045491258, "strategy_time": 0.024272000018754625, "framework_time": 4.121258999930433, "timestamp": "2023-11-03 11:14:14.965911+00:00"},
"4,32,1,2,6,1,0,0": {"block_size_x": 4, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.53173828125, "tegra_power": 7.26747180133997, "ps_energy": 2.9137913515727893, "time": 361.96581595284596, "times": [358.9590148925781, 359.0359802246094, 360.8257751464844, 363.5965576171875, 363.7630615234375, 363.7934875488281, 363.7868347167969], "compile_time": 962.591884999938, "verification_time": 0, "benchmark_time": 2537.77382200019, "GB/s": 6.789591424622696, "GB/s/W (Jetson)": 0.9707164513018322, "GPU (W) (Jetson)": 6.9944126480159525, "GB/s/W (PS)": 0.8434371934948091, "GPU (W) (PS)": 8.04990754141373, "strategy_time": 0.028020999934597057, "framework_time": 2.8988449998905708, "timestamp": "2023-11-03 11:14:18.469272+00:00"},
"1,240,1,2,3,0,1,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6026785714285716, "tegra_power": 7.123393730777033, "ps_energy": 3.021628624571349, "time": 379.25941249302457, "times": [379.176513671875, 379.1851501464844, 379.12078857421875, 379.18182373046875, 379.33734130859375, 379.2974548339844, 379.5168151855469], "compile_time": 1120.7745520000572, "verification_time": 0, "benchmark_time": 2658.588615000099, "GB/s": 6.47999738185852, "GB/s/W (Jetson)": 0.9442579759862777, "GPU (W) (Jetson)": 6.8625286168116935, "GB/s/W (PS)": 0.8133362187580669, "GPU (W) (PS)": 7.967181630928998, "strategy_time": 0.0429180001901841, "framework_time": 9.80358199967668, "timestamp": "2023-11-03 11:14:22.258552+00:00"},
"4,232,1,3,1,0,0,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4610770089285716, "tegra_power": 7.077780963092706, "ps_energy": 2.8496654194468647, "time": 361.2313886369978, "times": [359.1836853027344, 362.9896240234375, 363.0389709472656, 358.7593078613281, 361.71600341796875, 363.39306640625, 359.5390625], "compile_time": 1080.6281739999122, "verification_time": 0, "benchmark_time": 2532.540013000016, "GB/s": 6.803395489171201, "GB/s/W (Jetson)": 0.9985872002720932, "GPU (W) (Jetson)": 6.813020923277831, "GB/s/W (PS)": 0.8624170343748752, "GPU (W) (PS)": 7.888753605270166, "strategy_time": 0.026459000082468265, "framework_time": 4.14959199997611, "timestamp": "2023-11-03 11:14:25.876282+00:00"},
"2,80,1,1,8,0,1,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.439453125, "tegra_power": 7.1025605325742704, "ps_energy": 2.8340360927843773, "time": 355.2871834891183, "times": [355.21026611328125, 355.1737060546875, 355.229736328125, 355.4686584472656, 355.31536865234375, 355.2516174316406, 355.3609313964844], "compile_time": 1050.4725240000425, "verification_time": 0, "benchmark_time": 2493.851566000103, "GB/s": 6.917221093834562, "GB/s/W (Jetson)": 1.007438911128903, "GPU (W) (Jetson)": 6.866144455432391, "GB/s/W (PS)": 0.867173147955735, "GPU (W) (PS)": 7.976747331419507, "strategy_time": 0.02661500002432149, "framework_time": 3.205463999620406, "timestamp": "2023-11-03 11:14:29.424351+00:00"},
"8,32,1,1,7,0,0,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.535853794642857, "tegra_power": 7.146950750005146, "ps_energy": 2.9405630824100757, "time": 367.05492728097096, "times": [367.12646484375, 367.0100402832031, 367.0289001464844, 367.0080261230469, 367.0667724609375, 367.08135986328125, 367.06292724609375], "compile_time": 1066.7912060000617, "verification_time": 0, "benchmark_time": 2573.1193379999695, "GB/s": 6.695455686169747, "GB/s/W (Jetson)": 0.9691410463772899, "GPU (W) (Jetson)": 6.9086493768866575, "GB/s/W (PS)": 0.8357582990485479, "GPU (W) (PS)": 8.011234460719148, "strategy_time": 0.05260499983705813, "framework_time": 4.794704999994792, "timestamp": "2023-11-03 11:14:33.069523+00:00"},
"4,144,1,1,5,0,0,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.50341796875, "tegra_power": 7.156253720036205, "ps_energy": 2.8545103176230833, "time": 364.9106183733259, "times": [364.7409973144531, 364.93603515625, 364.82464599609375, 364.7674560546875, 364.7644348144531, 365.06597900390625, 365.2747802734375], "compile_time": 1080.8779779999895, "verification_time": 0, "benchmark_time": 2558.5265580000396, "GB/s": 6.734799910606395, "GB/s/W (Jetson)": 0.9816978349912229, "GPU (W) (Jetson)": 6.860359339252907, "GB/s/W (PS)": 0.8609532727302993, "GPU (W) (PS)": 7.822491793600658, "strategy_time": 0.02552099999775237, "framework_time": 2.3412849998294405, "timestamp": "2023-11-03 11:14:36.711627+00:00"},
"2,224,1,4,4,1,0,0": {"block_size_x": 2, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4813058035714284, "tegra_power": 7.195505563412376, "ps_energy": 2.8682941945539175, "time": 358.00476510184154, "times": [357.9156188964844, 357.96026611328125, 357.96331787109375, 358.1875, 358.0214538574219, 357.8928527832031, 358.09234619140625], "compile_time": 1062.5206830000025, "verification_time": 0, "benchmark_time": 2510.614652999948, "GB/s": 6.864713097606081, "GB/s/W (Jetson)": 0.9904462386146408, "GPU (W) (Jetson)": 6.930929544654446, "GB/s/W (PS)": 0.8568158749776399, "GPU (W) (PS)": 8.011888315894272, "strategy_time": 0.02703200016185292, "framework_time": 3.0747329999485373, "timestamp": "2023-11-03 11:14:40.287928+00:00"},
"2,216,1,4,4,1,1,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.559849330357143, "tegra_power": 7.11168124325155, "ps_energy": 2.940534976769933, "time": 372.33235822405135, "times": [372.371826171875, 372.1551513671875, 372.3311462402344, 372.2785949707031, 372.2807312011719, 372.3948974609375, 372.51416015625], "compile_time": 1071.2253990000136, "verification_time": 0, "benchmark_time": 2609.4329100001232, "GB/s": 6.600554439378424, "GB/s/W (Jetson)": 0.9600565044416589, "GPU (W) (Jetson)": 6.875172876639293, "GB/s/W (PS)": 0.8357662872283128, "GPU (W) (PS)": 7.897607908148728, "strategy_time": 0.026770999966174713, "framework_time": 2.916031999802726, "timestamp": "2023-11-03 11:14:43.971854+00:00"},
"2,64,1,4,3,1,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5547572544642856, "tegra_power": 7.2130626541513765, "ps_energy": 2.9431483437353694, "time": 367.1318359375, "times": [366.9583740234375, 367.2088928222656, 367.22332763671875, 367.1231384277344, 367.0732727050781, 367.1053161621094, 367.23052978515625], "compile_time": 1072.3796390000189, "verification_time": 0, "benchmark_time": 2572.9776829998627, "GB/s": 6.694053087835123, "GB/s/W (Jetson)": 0.9619700641638225, "GPU (W) (Jetson)": 6.95869168616367, "GB/s/W (PS)": 0.8350241690097333, "GPU (W) (PS)": 8.016598005508863, "strategy_time": 0.025207999897247646, "framework_time": 2.3457110003164416, "timestamp": "2023-11-03 11:14:47.619637+00:00"},
"4,96,1,4,1,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4574497767857144, "tegra_power": 7.171862595743707, "ps_energy": 2.8242234692786172, "time": 357.49215262276783, "times": [357.4918212890625, 357.38592529296875, 357.4029541015625, 357.43603515625, 357.5780334472656, 357.64520263671875, 357.5050964355469], "compile_time": 1085.1057160000437, "verification_time": 0, "benchmark_time": 2505.83259300015, "GB/s": 6.874556495770982, "GB/s/W (Jetson)": 1.0000611297189894, "GPU (W) (Jetson)": 6.874136281751784, "GB/s/W (PS)": 0.8701860977834509, "GPU (W) (PS)": 7.900099200943268, "strategy_time": 0.025105000077019213, "framework_time": 2.5887349997901765, "timestamp": "2023-11-03 11:14:51.213245+00:00"},
"2,208,1,2,5,0,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6614815848214284, "tegra_power": 7.171366065387533, "ps_energy": 3.092324697998525, "time": 385.4973929268973, "times": [385.39764404296875, 385.4072265625, 385.4818115234375, 385.4575500488281, 385.4739685058594, 385.6485900878906, 385.6149597167969], "compile_time": 1104.8912159999418, "verification_time": 0, "benchmark_time": 2702.950589000011, "GB/s": 6.375140390290628, "GB/s/W (Jetson)": 0.9233954553793736, "GPU (W) (Jetson)": 6.904019673425212, "GB/s/W (PS)": 0.7947418980906682, "GPU (W) (PS)": 8.0216487964289, "strategy_time": 0.026563000119494973, "framework_time": 3.277131000004374, "timestamp": "2023-11-03 11:14:55.024468+00:00"},
"8,64,1,3,6,0,1,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.501674107142857, "tegra_power": 7.275578301318655, "ps_energy": 2.8564174085955267, "time": 356.4236493791853, "times": [356.38525390625, 356.4377746582031, 356.3836364746094, 356.5341796875, 356.4245910644531, 356.3979797363281, 356.4021301269531], "compile_time": 1087.1508600000652, "verification_time": 0, "benchmark_time": 2501.114916000006, "GB/s": 6.895165358080531, "GB/s/W (Jetson)": 0.9823821548070487, "GPU (W) (Jetson)": 7.018821875316761, "GB/s/W (PS)": 0.8603784561053975, "GPU (W) (PS)": 8.014107407212743, "strategy_time": 0.024688000166861457, "framework_time": 3.302182999732395, "timestamp": "2023-11-03 11:14:58.616306+00:00"},
"2,88,1,3,6,1,0,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7828543526785716, "tegra_power": 7.184843563545326, "ps_energy": 3.217056288405599, "time": 401.13780430385043, "times": [401.0779113769531, 401.21771240234375, 401.1300048828125, 401.1701965332031, 401.21954345703125, 401.0580749511719, 401.0911865234375], "compile_time": 930.0159570000233, "verification_time": 0, "benchmark_time": 2811.7378639999515, "GB/s": 6.126572897473503, "GB/s/W (Jetson)": 0.8831220353427747, "GPU (W) (Jetson)": 6.937402366022423, "GB/s/W (PS)": 0.7639281938762743, "GPU (W) (PS)": 8.019828233313982, "strategy_time": 0.02635499981806788, "framework_time": 3.14942000022711, "timestamp": "2023-11-03 11:15:02.361312+00:00"},
"4,136,1,4,4,0,0,0": {"block_size_x": 4, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.488978794642857, "tegra_power": 7.243799465002216, "ps_energy": 2.8748490373204083, "time": 358.2220371791295, "times": [358.1950988769531, 358.43597412109375, 358.1123046875, 358.07318115234375, 358.358642578125, 358.3130187988281, 358.0660400390625], "compile_time": 945.1064469999437, "verification_time": 0, "benchmark_time": 2510.733969000057, "GB/s": 6.860549449589203, "GB/s/W (Jetson)": 0.9873929039852025, "GPU (W) (Jetson)": 6.948145385590109, "GB/s/W (PS)": 0.8548622790609839, "GPU (W) (PS)": 8.025327140560131, "strategy_time": 0.05776100010734808, "framework_time": 6.264934000000721, "timestamp": "2023-11-03 11:15:05.823562+00:00"},
"1,192,1,1,6,0,1,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4732142857142856, "tegra_power": 7.162902673980759, "ps_energy": 2.8651321546299835, "time": 358.0353480747768, "times": [358.1649475097656, 358.0243225097656, 357.97900390625, 357.9244384765625, 357.986083984375, 358.0836486816406, 358.0849914550781], "compile_time": 1056.3673219999146, "verification_time": 0, "benchmark_time": 2509.311038000078, "GB/s": 6.864126721607171, "GB/s/W (Jetson)": 0.993686642599278, "GPU (W) (Jetson)": 6.9077377387825605, "GB/s/W (PS)": 0.8577614809245634, "GPU (W) (PS)": 8.002372307752116, "strategy_time": 0.03567799990378262, "framework_time": 3.2921819999955915, "timestamp": "2023-11-03 11:15:09.392624+00:00"},
"4,192,1,2,5,1,0,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.471400669642857, "tegra_power": 7.23692984870756, "ps_energy": 2.8538568284737784, "time": 356.516357421875, "times": [356.2381896972656, 356.7216796875, 356.2341613769531, 356.47515869140625, 356.28375244140625, 357.4475402832031, 356.2140197753906], "compile_time": 970.5136110001149, "verification_time": 0, "benchmark_time": 2498.817306999854, "GB/s": 6.893372348388095, "GB/s/W (Jetson)": 0.994415850973751, "GPU (W) (Jetson)": 6.9320821280533425, "GB/s/W (PS)": 0.8611504177363747, "GPU (W) (PS)": 8.004841205916216, "strategy_time": 0.02937599992947071, "framework_time": 3.6252600000352686, "timestamp": "2023-11-03 11:15:12.865665+00:00"},
"8,112,1,2,8,0,0,0": {"block_size_x": 8, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4554268973214284, "tegra_power": 7.20035020335577, "ps_energy": 2.85008126872825, "time": 355.05167061941967, "times": [355.11370849609375, 354.7940673828125, 355.4408264160156, 355.0083923339844, 355.0155334472656, 354.9170227050781, 355.0721435546875], "compile_time": 1123.6121039999034, "verification_time": 0, "benchmark_time": 2488.6859719999848, "GB/s": 6.921809424843699, "GB/s/W (Jetson)": 1.000885020311923, "GPU (W) (Jetson)": 6.915688899696527, "GB/s/W (PS)": 0.8622912009441115, "GPU (W) (PS)": 8.027229568462602, "strategy_time": 0.026301999923816766, "framework_time": 2.872749000289332, "timestamp": "2023-11-03 11:15:16.481185+00:00"},
"1,168,1,4,7,1,0,0": {"block_size_x": 1, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.4820731026785716, "tegra_power": 6.928386404766348, "ps_energy": 3.977009611147878, "time": 517.6263253348214, "times": [519.432861328125, 516.76025390625, 517.5758056640625, 516.4657592773438, 517.2598876953125, 518.0062866210938, 517.8834228515625], "compile_time": 1076.4313399999992, "verification_time": 0, "benchmark_time": 3626.9276369998806, "GB/s": 4.747826529901325, "GB/s/W (Jetson)": 0.7057864460425889, "GPU (W) (Jetson)": 6.727001568991351, "GB/s/W (PS)": 0.6179517376853074, "GPU (W) (PS)": 7.683167212516459, "strategy_time": 0.02703200016185292, "framework_time": 2.2726889999376, "timestamp": "2023-11-03 11:15:21.186900+00:00"},
"8,48,1,1,3,0,0,0": {"block_size_x": 8, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.452357700892857, "tegra_power": 7.227301315349346, "ps_energy": 2.831175594693897, "time": 354.6792689732143, "times": [354.630615234375, 354.6180114746094, 354.76068115234375, 354.8105163574219, 354.657958984375, 354.5854187011719, 354.6916809082031], "compile_time": 930.0790669999515, "verification_time": 0, "benchmark_time": 2486.1986969999634, "GB/s": 6.929077098626816, "GB/s/W (Jetson)": 1.002137656796655, "GPU (W) (Jetson)": 6.914296705280685, "GB/s/W (PS)": 0.8680493024190936, "GPU (W) (PS)": 7.982354319411067, "strategy_time": 0.05697999995391001, "framework_time": 3.804116000083013, "timestamp": "2023-11-03 11:15:24.607365+00:00"},
"1,176,1,4,3,1,1,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.66162109375, "tegra_power": 7.09560439674766, "ps_energy": 3.067661533512234, "time": 389.24242728097096, "times": [389.0863037109375, 388.9700622558594, 389.0231628417969, 389.5449523925781, 389.0335388183594, 389.35369873046875, 389.6852722167969], "compile_time": 1069.6379249998245, "verification_time": 0, "benchmark_time": 2728.642900000068, "GB/s": 6.313802986913357, "GB/s/W (Jetson)": 0.923347055586131, "GPU (W) (Jetson)": 6.837952153218729, "GB/s/W (PS)": 0.8011314068231767, "GPU (W) (PS)": 7.881107809704083, "strategy_time": 0.027604999786490225, "framework_time": 2.449878000334138, "timestamp": "2023-11-03 11:15:28.408446+00:00"},
"2,160,1,4,2,0,1,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4594029017857144, "tegra_power": 7.196011563330186, "ps_energy": 2.845203358437305, "time": 357.1922869001116, "times": [357.12359619140625, 357.1304626464844, 357.2189025878906, 357.1606750488281, 357.1673583984375, 357.3482360839844, 357.19677734375], "compile_time": 1114.649610000015, "verification_time": 0, "benchmark_time": 2503.6731339998823, "GB/s": 6.880327739795974, "GB/s/W (Jetson)": 0.9992669351636506, "GPU (W) (Jetson)": 6.8853751662153995, "GB/s/W (PS)": 0.8637695413623468, "GPU (W) (PS)": 7.965466956549829, "strategy_time": 0.025261000018872437, "framework_time": 2.34550200002559, "timestamp": "2023-11-03 11:15:32.029198+00:00"},
"4,184,1,3,4,1,1,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.504115513392857, "tegra_power": 7.05917729201718, "ps_energy": 2.8858063134833043, "time": 368.31249564034596, "times": [369.5228576660156, 366.5489196777344, 369.6137390136719, 366.6797790527344, 369.62457275390625, 366.4682922363281, 369.72930908203125], "compile_time": 1079.4901200001732, "verification_time": 0, "benchmark_time": 2581.883929000014, "GB/s": 6.672594682749579, "GB/s/W (Jetson)": 0.9814243739379926, "GPU (W) (Jetson)": 6.798888289248011, "GB/s/W (PS)": 0.8516164056185602, "GPU (W) (PS)": 7.8352115327123455, "strategy_time": 0.024740000071687973, "framework_time": 2.7006619998246606, "timestamp": "2023-11-03 11:15:35.693351+00:00"},
"2,56,1,4,3,0,1,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8458426339285716, "tegra_power": 7.123257321657111, "ps_energy": 3.2465658627751117, "time": 412.6254621233259, "times": [412.4153747558594, 412.7025451660156, 412.7096862792969, 412.5277099609375, 412.50823974609375, 412.811767578125, 412.7029113769531], "compile_time": 951.8711119999352, "verification_time": 0, "benchmark_time": 2891.4488339999025, "GB/s": 5.956006658807376, "GB/s/W (Jetson)": 0.8635755086033627, "GPU (W) (Jetson)": 6.896914745115762, "GB/s/W (PS)": 0.7569844888035887, "GPU (W) (PS)": 7.868069619525261, "strategy_time": 0.024636000034661265, "framework_time": 2.5542020002831123, "timestamp": "2023-11-03 11:15:39.539577+00:00"},
"1,224,1,1,4,0,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5059988839285716, "tegra_power": 7.2376647638406135, "ps_energy": 2.884039397921697, "time": 358.5569806780134, "times": [358.2306823730469, 358.1208801269531, 358.23431396484375, 358.357666015625, 357.95703125, 358.4302673339844, 360.5680236816406], "compile_time": 1072.4873399999524, "verification_time": 0, "benchmark_time": 2516.8712249999317, "GB/s": 6.854140715243643, "GB/s/W (Jetson)": 0.980686789511774, "GPU (W) (Jetson)": 6.9891231212117315, "GB/s/W (PS)": 0.852138151015205, "GPU (W) (PS)": 8.04346185777257, "strategy_time": 0.03083399997194647, "framework_time": 3.3811410000907927, "timestamp": "2023-11-03 11:15:43.132994+00:00"},
"1,104,1,1,2,0,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.033203125, "tegra_power": 7.092274429616968, "ps_energy": 3.466345041254109, "time": 442.0405709402902, "times": [441.9476623535156, 442.0872802734375, 442.068603515625, 442.0946350097656, 442.2183837890625, 441.8733825683594, 441.9940490722656], "compile_time": 1093.849735000049, "verification_time": 0, "benchmark_time": 3098.348579000003, "GB/s": 5.559670676318909, "GB/s/W (Jetson)": 0.8102325820991628, "GPU (W) (Jetson)": 6.861820666252188, "GB/s/W (PS)": 0.7089888544710051, "GPU (W) (PS)": 7.841689811142549, "strategy_time": 0.07234500003505673, "framework_time": 5.208613999911904, "timestamp": "2023-11-03 11:15:47.330868+00:00"},
"8,104,1,4,5,1,0,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4931640625, "tegra_power": 7.1869798224744965, "ps_energy": 2.87048515170006, "time": 360.6611066545759, "times": [360.60052490234375, 360.6034851074219, 360.6930847167969, 360.8751525878906, 360.67535400390625, 360.61041259765625, 360.5697326660156], "compile_time": 1061.0502800000177, "verification_time": 0, "benchmark_time": 2528.4324530000504, "GB/s": 6.814153105657086, "GB/s/W (Jetson)": 0.9857353701527614, "GPU (W) (Jetson)": 6.912761083739019, "GB/s/W (PS)": 0.8561618925443573, "GPU (W) (PS)": 7.958953984049282, "strategy_time": 0.025626000024203677, "framework_time": 2.3415419998400466, "timestamp": "2023-11-03 11:15:50.922772+00:00"},
"4,128,1,3,3,1,1,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.42236328125, "tegra_power": 7.194151974504028, "ps_energy": 2.7931504833348817, "time": 351.54628208705356, "times": [351.5091552734375, 351.6128234863281, 351.3992614746094, 351.6340637207031, 351.66082763671875, 351.4905090332031, 351.517333984375], "compile_time": 1069.4887990000552, "verification_time": 0, "benchmark_time": 2464.1154910000296, "GB/s": 6.990829160273762, "GB/s/W (Jetson)": 1.01454642209232, "GPU (W) (Jetson)": 6.89059564751747, "GB/s/W (PS)": 0.8798666647798183, "GPU (W) (PS)": 7.9453279003622415, "strategy_time": 0.025104999849645537, "framework_time": 2.7279550001821917, "timestamp": "2023-11-03 11:15:54.459188+00:00"},
"1,88,1,4,4,1,0,0": {"block_size_x": 1, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.1402064732142856, "tegra_power": 7.199324913970854, "ps_energy": 3.5842430990781264, "time": 449.7118443080357, "times": [448.7296447753906, 448.5955810546875, 450.9404602050781, 448.82916259765625, 448.97271728515625, 453.2763977050781, 448.6389465332031], "compile_time": 1071.1026940000465, "verification_time": 0, "benchmark_time": 3153.074480999976, "GB/s": 5.46483271700675, "GB/s/W (Jetson)": 0.7826236971877916, "GPU (W) (Jetson)": 6.982707956127039, "GB/s/W (PS)": 0.6856677775656731, "GPU (W) (PS)": 7.9700882786245995, "strategy_time": 0.02630200015119044, "framework_time": 4.643605999717693, "timestamp": "2023-11-03 11:15:58.688118+00:00"},
"4,72,1,4,7,1,0,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7456752232142856, "tegra_power": 7.1801533191146785, "ps_energy": 3.150650030421405, "time": 395.1548156738281, "times": [395.6794128417969, 395.17852783203125, 394.1712951660156, 395.7835388183594, 395.3262939453125, 395.1318664550781, 394.8127746582031], "compile_time": 928.1772490001003, "verification_time": 0, "benchmark_time": 2770.1362450000033, "GB/s": 6.2193345557721145, "GB/s/W (Jetson)": 0.8950803719323205, "GPU (W) (Jetson)": 6.948353187932911, "GB/s/W (PS)": 0.7800295101869157, "GPU (W) (PS)": 7.973204185931116, "strategy_time": 0.026301999923816766, "framework_time": 2.639257000055295, "timestamp": "2023-11-03 11:16:02.389421+00:00"},
"4,88,1,3,1,1,0,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4312220982142856, "tegra_power": 7.177354596077158, "ps_energy": 2.8421686525603684, "time": 354.2002476283482, "times": [354.02197265625, 354.3536376953125, 354.2198486328125, 354.2415771484375, 354.32666015625, 354.04376220703125, 354.19427490234375], "compile_time": 1085.8162050001283, "verification_time": 0, "benchmark_time": 2482.9003439999724, "GB/s": 6.938448000687696, "GB/s/W (Jetson)": 1.0108496470993287, "GPU (W) (Jetson)": 6.863976280347761, "GB/s/W (PS)": 0.8646918253025098, "GPU (W) (PS)": 8.024185955800267, "strategy_time": 0.02588600000308361, "framework_time": 2.4304499997924722, "timestamp": "2023-11-03 11:16:05.960669+00:00"},
"4,224,1,3,6,1,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5430385044642856, "tegra_power": 7.12924707754718, "ps_energy": 2.8941778109484795, "time": 370.5392150878906, "times": [370.51806640625, 370.1412353515625, 370.26531982421875, 370.5030822753906, 370.8669738769531, 370.93988037109375, 370.5399475097656], "compile_time": 1082.0148699999663, "verification_time": 0, "benchmark_time": 2597.8423050000856, "GB/s": 6.632496372663459, "GB/s/W (Jetson)": 0.9664029843377129, "GPU (W) (Jetson)": 6.8630752182628925, "GB/s/W (PS)": 0.8491530792279123, "GPU (W) (PS)": 7.810719333072454, "strategy_time": 0.040103999936036416, "framework_time": 4.365425000059986, "timestamp": "2023-11-03 11:16:09.644990+00:00"},
"4,144,1,4,5,1,0,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5433175223214284, "tegra_power": 7.180551547422323, "ps_energy": 2.9356493240081494, "time": 367.9754551478795, "times": [367.9368896484375, 367.55072021484375, 368.1486511230469, 367.09259033203125, 369.0814514160156, 368.18292236328125, 367.8349609375], "compile_time": 1078.5874450000392, "verification_time": 0, "benchmark_time": 2579.443640999898, "GB/s": 6.678706325704132, "GB/s/W (Jetson)": 0.9662969638792134, "GPU (W) (Jetson)": 6.911649912354445, "GB/s/W (PS)": 0.8371572108090037, "GPU (W) (PS)": 7.9778400513925325, "strategy_time": 0.027395999950385885, "framework_time": 2.7264960001502914, "timestamp": "2023-11-03 11:16:13.305829+00:00"},
"2,232,1,2,8,1,1,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5375279017857144, "tegra_power": 7.135495329294039, "ps_energy": 2.917372321327483, "time": 368.31632341657365, "times": [368.2321472167969, 368.19921875, 368.5185852050781, 368.345947265625, 368.2720947265625, 368.3432922363281, 368.302978515625], "compile_time": 1121.8684180000764, "verification_time": 0, "benchmark_time": 2582.6676159999806, "GB/s": 6.672525336924591, "GB/s/W (Jetson)": 0.9685016658419923, "GPU (W) (Jetson)": 6.889534186937775, "GB/s/W (PS)": 0.8424019046296173, "GPU (W) (PS)": 7.920833630900123, "strategy_time": 0.024582999913036474, "framework_time": 2.5287339999522374, "timestamp": "2023-11-03 11:16:17.013244+00:00"},
"1,192,1,3,7,0,0,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.5281808035714284, "tegra_power": 6.875926536782722, "ps_energy": 4.041484277998928, "time": 529.7147914341518, "times": [530.1873168945312, 530.0932006835938, 529.287109375, 531.2046508789062, 525.4938354492188, 529.9254150390625, 531.81201171875], "compile_time": 923.8223569998354, "verification_time": 0, "benchmark_time": 3711.395881000044, "GB/s": 4.639477771323478, "GB/s/W (Jetson)": 0.6965629418742586, "GPU (W) (Jetson)": 6.660529138745057, "GB/s/W (PS)": 0.6080934208698291, "GPU (W) (PS)": 7.629547717663309, "strategy_time": 0.025417000188099337, "framework_time": 2.3235729997850285, "timestamp": "2023-11-03 11:16:21.650866+00:00"},
"2,120,1,2,8,0,1,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6014229910714284, "tegra_power": 7.14939623023728, "ps_energy": 2.996583377882676, "time": 378.1206795828683, "times": [378.1427001953125, 378.154052734375, 378.15936279296875, 378.0132751464844, 378.15191650390625, 378.0076599121094, 378.2157897949219], "compile_time": 1118.187770999839, "verification_time": 0, "benchmark_time": 2650.387523000063, "GB/s": 6.499512279283832, "GB/s/W (Jetson)": 0.94471372338714, "GPU (W) (Jetson)": 6.87987494876303, "GB/s/W (PS)": 0.820134029354621, "GPU (W) (PS)": 7.924939152199819, "strategy_time": 0.026146000209337217, "framework_time": 3.0224889999317384, "timestamp": "2023-11-03 11:16:25.422543+00:00"},
"1,208,1,1,5,0,1,0": {"block_size_x": 1, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6187918526785716, "tegra_power": 7.180072578715597, "ps_energy": 3.017543612450806, "time": 379.43284388950894, "times": [379.4260559082031, 379.452392578125, 379.4471435546875, 379.4063415527344, 379.52838134765625, 379.39312744140625, 379.37646484375], "compile_time": 1064.9479020000854, "verification_time": 0, "benchmark_time": 2659.4966820000536, "GB/s": 6.477035500689693, "GB/s/W (Jetson)": 0.9384480089497375, "GPU (W) (Jetson)": 6.901858642055682, "GB/s/W (PS)": 0.8144372760213305, "GPU (W) (PS)": 7.952773886199257, "strategy_time": 0.02375100007157016, "framework_time": 2.9120189999503054, "timestamp": "2023-11-03 11:16:29.149976+00:00"},
"2,160,1,3,7,0,0,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.841099330357143, "tegra_power": 7.130962385262525, "ps_energy": 3.2603283626743047, "time": 413.41637747628346, "times": [413.4921875, 414.126708984375, 412.1458435058594, 412.3783264160156, 413.4753723144531, 414.64105224609375, 413.6551513671875], "compile_time": 1078.690295999877, "verification_time": 0, "benchmark_time": 2897.87169300007, "GB/s": 5.944612100281357, "GB/s/W (Jetson)": 0.8650172747360667, "GPU (W) (Jetson)": 6.872246686744114, "GB/s/W (PS)": 0.7537891054581196, "GPU (W) (PS)": 7.886306736508862, "strategy_time": 0.025468999865552178, "framework_time": 2.559304000214979, "timestamp": "2023-11-03 11:16:33.129179+00:00"},
"4,248,1,4,5,1,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5120675223214284, "tegra_power": 7.1759759808290875, "ps_energy": 2.8715952140854433, "time": 363.75750732421875, "times": [363.4167175292969, 364.1286315917969, 363.49261474609375, 364.3607177734375, 363.61761474609375, 363.7399597167969, 363.5462951660156], "compile_time": 1064.335746000097, "verification_time": 0, "benchmark_time": 2550.13833299995, "GB/s": 6.756149221710851, "GB/s/W (Jetson)": 0.9783176519590148, "GPU (W) (Jetson)": 6.905885024339611, "GB/s/W (PS)": 0.8558309290756726, "GPU (W) (PS)": 7.894256905400381, "strategy_time": 0.04385500005810172, "framework_time": 3.9904699999624427, "timestamp": "2023-11-03 11:16:36.748086+00:00"},
"2,168,1,4,7,1,0,0": {"block_size_x": 2, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7686941964285716, "tegra_power": 7.285738904903456, "ps_energy": 3.191916972759697, "time": 395.7650582449777, "times": [395.6979064941406, 395.70355224609375, 395.8253173828125, 395.8478088378906, 395.80615234375, 395.9013977050781, 395.5732727050781], "compile_time": 949.1891160000705, "verification_time": 0, "benchmark_time": 2774.613464999902, "GB/s": 6.209744768520597, "GB/s/W (Jetson)": 0.8876386576640127, "GPU (W) (Jetson)": 6.995802531699895, "GB/s/W (PS)": 0.7699448390962329, "GPU (W) (PS)": 8.06518136521266, "strategy_time": 0.028749999955834937, "framework_time": 3.302910000002157, "timestamp": "2023-11-03 11:16:40.475279+00:00"},
"4,224,1,4,8,0,1,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.516322544642857, "tegra_power": 7.198457686737336, "ps_energy": 2.8745545951449976, "time": 362.6461879185268, "times": [362.5247497558594, 362.4876708984375, 362.8623962402344, 362.66943359375, 362.69000244140625, 362.6888122558594, 362.6002502441406], "compile_time": 1077.4850809998497, "verification_time": 0, "benchmark_time": 2541.923601999997, "GB/s": 6.776853257732664, "GB/s/W (Jetson)": 0.9766633475633419, "GPU (W) (Jetson)": 6.938781182523232, "GB/s/W (PS)": 0.8549498430646554, "GPU (W) (PS)": 7.926609160416168, "strategy_time": 0.026041999944936833, "framework_time": 3.340150000212816, "timestamp": "2023-11-03 11:16:44.098449+00:00"},
"2,88,1,4,6,0,0,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8484933035714284, "tegra_power": 7.27792763719908, "ps_energy": 3.279038274267805, "time": 405.08632114955356, "times": [404.9706726074219, 405.1739501953125, 405.11578369140625, 405.04156494140625, 404.7490234375, 405.28558349609375, 405.2676696777344], "compile_time": 1076.7787409999983, "verification_time": 0, "benchmark_time": 2843.507929999987, "GB/s": 6.0668550669048145, "GB/s/W (Jetson)": 0.8627719071407581, "GPU (W) (Jetson)": 7.031818046800438, "GB/s/W (PS)": 0.7494880493728825, "GPU (W) (PS)": 8.094665514655132, "strategy_time": 0.025676999939605594, "framework_time": 2.7875890000359504, "timestamp": "2023-11-03 11:16:48.021607+00:00"},
"2,32,1,4,3,1,0,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.673130580357143, "tegra_power": 7.1454825190803515, "ps_energy": 3.0772917413102863, "time": 388.24227033342635, "times": [388.1078186035156, 388.2895812988281, 388.3917236328125, 388.1580810546875, 388.2106628417969, 388.2113037109375, 388.32672119140625], "compile_time": 954.2405099998632, "verification_time": 0, "benchmark_time": 2721.081685999934, "GB/s": 6.330068072931338, "GB/s/W (Jetson)": 0.919371473305151, "GPU (W) (Jetson)": 6.885212622678699, "GB/s/W (PS)": 0.7986243120886463, "GPU (W) (PS)": 7.926215089015107, "strategy_time": 0.048333999984606635, "framework_time": 4.641104000256746, "timestamp": "2023-11-03 11:16:51.701691+00:00"},
"16,32,1,4,8,0,1,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6051199776785716, "tegra_power": 7.395602653790776, "ps_energy": 3.014280770460703, "time": 366.7043021065848, "times": [366.84332275390625, 366.8080749511719, 366.6930847167969, 366.5505065917969, 366.8130798339844, 366.6344299316406, 366.5876159667969], "compile_time": 1068.0885650001528, "verification_time": 0, "benchmark_time": 2570.015173999991, "GB/s": 6.701857561751986, "GB/s/W (Jetson)": 0.9433730580769538, "GPU (W) (Jetson)": 7.104143482127401, "GB/s/W (PS)": 0.815318872775206, "GPU (W) (PS)": 8.21992202748847, "strategy_time": 0.02843800007212849, "framework_time": 3.35915899995598, "timestamp": "2023-11-03 11:16:55.343508+00:00"},
"4,232,1,4,8,0,0,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5230189732142856, "tegra_power": 7.086185778793994, "ps_energy": 2.9413727342364706, "time": 371.2917262486049, "times": [371.5172424316406, 371.8652648925781, 371.7700500488281, 368.3166809082031, 371.757080078125, 372.0079650878906, 371.80780029296875], "compile_time": 1071.4162899998882, "verification_time": 0, "benchmark_time": 2602.9416399999263, "GB/s": 6.619054038264431, "GB/s/W (Jetson)": 0.9740711528891346, "GPU (W) (Jetson)": 6.795246957711505, "GB/s/W (PS)": 0.8355282455006336, "GPU (W) (PS)": 7.92199913516797, "strategy_time": 0.02349000010326563, "framework_time": 2.969675000031202, "timestamp": "2023-11-03 11:16:59.020919+00:00"},
"2,112,1,2,6,1,1,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4608677455357144, "tegra_power": 7.220284683558647, "ps_energy": 2.807615855100916, "time": 354.65396990094865, "times": [354.5741271972656, 354.63140869140625, 354.60589599609375, 354.5835266113281, 354.59844970703125, 354.6664123535156, 354.91796875], "compile_time": 1102.6187600000412, "verification_time": 0, "benchmark_time": 2486.0671569999795, "GB/s": 6.929571381046102, "GB/s/W (Jetson)": 0.9986721165565916, "GPU (W) (Jetson)": 6.938785279135633, "GB/s/W (PS)": 0.8753334240989548, "GPU (W) (PS)": 7.916493521516354, "strategy_time": 0.04041700003654114, "framework_time": 3.664526999955342, "timestamp": "2023-11-03 11:17:02.613363+00:00"},
"1,104,1,1,1,0,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9126674107142856, "tegra_power": 7.10218709322777, "ps_energy": 3.3383070851136187, "time": 423.1831795828683, "times": [423.361572265625, 423.4161376953125, 423.2154541015625, 423.1216735839844, 423.1496887207031, 422.98162841796875, 423.0361022949219], "compile_time": 1060.6030710000596, "verification_time": 0, "benchmark_time": 2966.0693870000614, "GB/s": 5.807414185087546, "GB/s/W (Jetson)": 0.8437626592585497, "GPU (W) (Jetson)": 6.882757990488426, "GB/s/W (PS)": 0.7361815247491996, "GPU (W) (PS)": 7.888562793077428, "strategy_time": 0.02541699996072566, "framework_time": 2.9058729999178468, "timestamp": "2023-11-03 11:17:06.643021+00:00"},
"2,32,1,4,7,1,0,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9857003348214284, "tegra_power": 7.111932583207265, "ps_energy": 3.3967422255100246, "time": 435.21316964285717, "times": [434.8829650878906, 434.8968200683594, 435.03900146484375, 435.77099609375, 435.497802734375, 435.2315673828125, 435.17303466796875], "compile_time": 1069.3833150000955, "verification_time": 0, "benchmark_time": 3050.4519300000084, "GB/s": 5.646887942331215, "GB/s/W (Jetson)": 0.8231234633086466, "GPU (W) (Jetson)": 6.860317065477457, "GB/s/W (PS)": 0.7235167807386351, "GPU (W) (PS)": 7.804778123551374, "strategy_time": 0.027395999950385885, "framework_time": 2.9864989999168756, "timestamp": "2023-11-03 11:17:10.765923+00:00"},
"4,48,1,2,4,0,1,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4456612723214284, "tegra_power": 7.223205839083568, "ps_energy": 2.8321928722044896, "time": 353.21695818219865, "times": [353.32281494140625, 353.43182373046875, 352.9839172363281, 353.17462158203125, 353.1443786621094, 353.1188659667969, 353.34228515625], "compile_time": 1113.042716000109, "verification_time": 0, "benchmark_time": 2475.733853000065, "GB/s": 6.9577633323378105, "GB/s/W (Jetson)": 1.0048815949345427, "GPU (W) (Jetson)": 6.923963347931589, "GB/s/W (PS)": 0.8677375132602044, "GPU (W) (PS)": 8.018281134575565, "strategy_time": 0.027134999982081354, "framework_time": 2.6691509997363028, "timestamp": "2023-11-03 11:17:14.357451+00:00"},
"4,96,1,4,5,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6070033482142856, "tegra_power": 7.304060187185551, "ps_energy": 3.013739098460584, "time": 369.5121590750558, "times": [369.3894348144531, 370.4366760253906, 368.84588623046875, 369.8279113769531, 368.8811950683594, 370.2396240234375, 368.9643859863281], "compile_time": 1079.6890210001493, "verification_time": 0, "benchmark_time": 2589.83962100001, "GB/s": 6.650931341885312, "GB/s/W (Jetson)": 0.9426915395729651, "GPU (W) (Jetson)": 7.055257274185523, "GB/s/W (PS)": 0.8154654134644038, "GPU (W) (PS)": 8.15599439543322, "strategy_time": 0.029166999865992693, "framework_time": 3.3707219999996596, "timestamp": "2023-11-03 11:17:18.030434+00:00"},
"1,48,1,2,5,1,0,0": {"block_size_x": 1, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 4.093191964285714, "tegra_power": 6.913561065371275, "ps_energy": 4.622251245885179, "time": 605.3502458844866, "times": [605.3228759765625, 605.2684936523438, 605.232177734375, 605.5588989257812, 605.5816650390625, 605.3082275390625, 605.1793823242188], "compile_time": 1117.1799040000678, "verification_time": 0, "benchmark_time": 4240.474511000002, "GB/s": 4.059798466603681, "GB/s/W (Jetson)": 0.6004116155419222, "GPU (W) (Jetson)": 6.761692081755229, "GB/s/W (PS)": 0.5316889691333426, "GPU (W) (PS)": 7.635664274211265, "strategy_time": 0.0257809999766323, "framework_time": 2.5657109999883687, "timestamp": "2023-11-03 11:17:23.390734+00:00"},
"2,56,1,4,4,1,0,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.774204799107143, "tegra_power": 7.186371398956565, "ps_energy": 3.2204885764835387, "time": 401.6705322265625, "times": [401.9439697265625, 401.2855224609375, 401.68817138671875, 401.78619384765625, 401.3431396484375, 401.8077087402344, 401.8390197753906], "compile_time": 1078.2755539999016, "verification_time": 0, "benchmark_time": 2814.955543999986, "GB/s": 6.118447341349375, "GB/s/W (Jetson)": 0.8858754771064343, "GPU (W) (Jetson)": 6.906667471295481, "GB/s/W (PS)": 0.7631140249792349, "GPU (W) (PS)": 8.017736722262265, "strategy_time": 0.028646000146181905, "framework_time": 3.30045999999129, "timestamp": "2023-11-03 11:17:27.287626+00:00"},
"4,80,1,4,7,0,0,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.755161830357143, "tegra_power": 7.273697613543415, "ps_energy": 3.159903770843552, "time": 393.2670462472098, "times": [393.08447265625, 393.0956115722656, 393.39410400390625, 393.3402099609375, 393.3502197265625, 393.29620361328125, 393.3085021972656], "compile_time": 1085.6731240000954, "verification_time": 0, "benchmark_time": 2756.409501999997, "GB/s": 6.249188747066132, "GB/s/W (Jetson)": 0.8919984201731733, "GPU (W) (Jetson)": 7.005829389084467, "GB/s/W (PS)": 0.7777452030901344, "GPU (W) (PS)": 8.035007766344142, "strategy_time": 0.02724000000853266, "framework_time": 2.6734729999589035, "timestamp": "2023-11-03 11:17:31.132852+00:00"},
"1,136,1,1,4,0,1,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.926967075892857, "tegra_power": 7.125731175847195, "ps_energy": 3.333948255261151, "time": 421.59967041015625, "times": [421.619384765625, 421.3809814453125, 421.4859924316406, 421.6060791015625, 421.80816650390625, 421.6361083984375, 421.6609802246094], "compile_time": 1066.5673789999346, "verification_time": 0, "benchmark_time": 2961.83972200015, "GB/s": 5.82922656843898, "GB/s/W (Jetson)": 0.8396404661471365, "GPU (W) (Jetson)": 6.942526954647134, "GB/s/W (PS)": 0.7371440141945137, "GPU (W) (PS)": 7.907853087308383, "strategy_time": 0.027188000103706145, "framework_time": 2.354509999804577, "timestamp": "2023-11-03 11:17:35.163698+00:00"},
"8,56,1,3,3,1,0,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5064871651785716, "tegra_power": 7.2175256657330875, "ps_energy": 2.911585199639116, "time": 360.734619140625, "times": [360.48052978515625, 360.46697998046875, 360.1466064453125, 362.2320861816406, 360.57489013671875, 360.7959899902344, 360.44525146484375], "compile_time": 1070.1491700001498, "verification_time": 0, "benchmark_time": 2533.9759500000127, "GB/s": 6.812764480034435, "GB/s/W (Jetson)": 0.9804957448584865, "GPU (W) (Jetson)": 6.948285615474763, "GB/s/W (PS)": 0.8440762785525264, "GPU (W) (PS)": 8.071266369098039, "strategy_time": 0.029323000035219593, "framework_time": 3.3918689998699847, "timestamp": "2023-11-03 11:17:38.771326+00:00"},
"4,168,1,4,3,1,1,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4688895089285716, "tegra_power": 7.23744192377371, "ps_energy": 2.8384379674350515, "time": 354.82542201450894, "times": [354.83514404296875, 354.6020812988281, 354.9383239746094, 354.9828186035156, 354.8341064453125, 354.87213134765625, 354.7133483886719], "compile_time": 1089.5664839999881, "verification_time": 0, "benchmark_time": 2487.5736779999897, "GB/s": 6.92622300298288, "GB/s/W (Jetson)": 0.9954272927614848, "GPU (W) (Jetson)": 6.958040083237378, "GB/s/W (PS)": 0.8658283281846053, "GPU (W) (PS)": 7.999533830805919, "strategy_time": 0.04479200015339302, "framework_time": 4.315315999747327, "timestamp": "2023-11-03 11:17:42.353242+00:00"},
"4,160,1,1,4,0,0,0": {"block_size_x": 4, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4305943080357144, "tegra_power": 7.246727681065246, "ps_energy": 2.8083641458558435, "time": 350.4415849958147, "times": [350.44354248046875, 350.396728515625, 350.3843078613281, 350.4567565917969, 350.4666748046875, 350.4338073730469, 350.50927734375], "compile_time": 1081.7543800001204, "verification_time": 0, "benchmark_time": 2456.080352000072, "GB/s": 7.012866352688568, "GB/s/W (Jetson)": 1.01111073611709, "GPU (W) (Jetson)": 6.935804459578457, "GB/s/W (PS)": 0.8751001908447492, "GPU (W) (PS)": 8.013786793851487, "strategy_time": 0.04281299993635912, "framework_time": 6.730504999950426, "timestamp": "2023-11-03 11:17:45.898202+00:00"},
"4,200,1,1,3,0,0,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.498046875, "tegra_power": 7.145195428483583, "ps_energy": 2.9412494458130305, "time": 365.1432451520647, "times": [361.4440002441406, 363.751708984375, 362.2503662109375, 367.6820983886719, 372.9903564453125, 363.7743835449219, 364.10980224609375], "compile_time": 1062.6751519998834, "verification_time": 0, "benchmark_time": 2559.4442450001225, "GB/s": 6.730509279930748, "GB/s/W (Jetson)": 0.9838086004691164, "GPU (W) (Jetson)": 6.8412791641803015, "GB/s/W (PS)": 0.8355632683581047, "GPU (W) (PS)": 8.055056432957265, "strategy_time": 0.026563000119494973, "framework_time": 2.4733129998821823, "timestamp": "2023-11-03 11:17:49.523168+00:00"},
"4,184,1,3,3,0,0,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6532505580357144, "tegra_power": 7.100576565869308, "ps_energy": 3.0308389774056974, "time": 387.4373343331473, "times": [387.321044921875, 387.6098937988281, 387.54156494140625, 387.4717712402344, 387.2403564453125, 387.4440002441406, 387.4327087402344], "compile_time": 1086.9507570000678, "verification_time": 0, "benchmark_time": 2724.5374229999015, "GB/s": 6.343219360183738, "GB/s/W (Jetson)": 0.9262600520545783, "GPU (W) (Jetson)": 6.848205691386089, "GB/s/W (PS)": 0.8108645884261485, "GPU (W) (PS)": 7.822785025667035, "strategy_time": 0.02625000001899025, "framework_time": 2.4089890000595915, "timestamp": "2023-11-03 11:17:53.337433+00:00"},
"32,32,1,1,8,0,1,0": {"block_size_x": 32, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.49169921875, "tegra_power": 7.340193785175052, "ps_energy": 2.866080633247683, "time": 353.4878670828683, "times": [353.3155212402344, 353.5556335449219, 353.5595397949219, 353.4007263183594, 353.3886413574219, 353.6121826171875, 353.58282470703125], "compile_time": 921.0498359998383, "verification_time": 0, "benchmark_time": 2478.23616200003, "GB/s": 6.952430985202282, "GB/s/W (Jetson)": 0.9863148736037624, "GPU (W) (Jetson)": 7.048896018164804, "GB/s/W (PS)": 0.8574776199562761, "GPU (W) (PS)": 8.108002848583729, "strategy_time": 0.02817799986587488, "framework_time": 3.6070780001864478, "timestamp": "2023-11-03 11:17:56.740447+00:00"},
"4,248,1,2,8,1,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4679129464285716, "tegra_power": 7.095715440559382, "ps_energy": 2.8312093153433255, "time": 362.0732639857701, "times": [362.0146484375, 362.1423034667969, 362.0084228515625, 362.11474609375, 362.03912353515625, 362.11614990234375, 362.07745361328125], "compile_time": 958.6813979999533, "verification_time": 0, "benchmark_time": 2537.4899010000718, "GB/s": 6.787576561014973, "GB/s/W (Jetson)": 0.9958211871113621, "GPU (W) (Jetson)": 6.8160595987158095, "GB/s/W (PS)": 0.86803896366171, "GPU (W) (PS)": 7.819437657939293, "strategy_time": 0.025469000092925853, "framework_time": 2.72373399980097, "timestamp": "2023-11-03 11:18:00.239422+00:00"},
"2,192,1,3,8,1,0,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5361328125, "tegra_power": 7.328603641955541, "ps_energy": 2.9196280904257685, "time": 359.9576328822545, "times": [359.99322509765625, 361.18402099609375, 359.8595275878906, 359.5404052734375, 359.46209716796875, 359.8599853515625, 359.8041687011719], "compile_time": 1076.0092470000018, "verification_time": 0, "benchmark_time": 2524.6823420000055, "GB/s": 6.827470167312451, "GB/s/W (Jetson)": 0.9690344243357719, "GPU (W) (Jetson)": 7.045642544631337, "GB/s/W (PS)": 0.8417510463264548, "GPU (W) (PS)": 8.11103258749567, "strategy_time": 0.02734400004555937, "framework_time": 2.6192010000158916, "timestamp": "2023-11-03 11:18:03.842816+00:00"},
"1,40,1,3,6,0,1,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.8831612723214284, "tegra_power": 7.007154409423792, "ps_energy": 4.428786948981984, "time": 568.146990094866, "times": [568.3038330078125, 568.17822265625, 568.1192016601562, 568.1489868164062, 568.1229248046875, 568.04443359375, 568.111328125], "compile_time": 1066.3780609997957, "verification_time": 0, "benchmark_time": 3980.1299189998645, "GB/s": 4.325641150698772, "GB/s/W (Jetson)": 0.63288641074925, "GPU (W) (Jetson)": 6.834782793926339, "GB/s/W (PS)": 0.554914930049844, "GPU (W) (PS)": 7.795142852455295, "strategy_time": 0.030365000156962196, "framework_time": 3.055248000237043, "timestamp": "2023-11-03 11:18:08.892483+00:00"},
"2,240,1,3,4,1,1,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5018136160714284, "tegra_power": 7.1710913881664835, "ps_energy": 2.8848320080316108, "time": 363.0486973353795, "times": [362.7726135253906, 362.931396484375, 362.8816223144531, 363.2920227050781, 363.28936767578125, 363.1645812988281, 363.00927734375], "compile_time": 1075.757215000067, "verification_time": 0, "benchmark_time": 2548.957380000047, "GB/s": 6.769339810437888, "GB/s/W (Jetson)": 0.9823273741147605, "GPU (W) (Jetson)": 6.891124068020789, "GB/s/W (PS)": 0.8519040253151096, "GPU (W) (PS)": 7.946129621742292, "strategy_time": 0.028542000109155197, "framework_time": 3.448532999755116, "timestamp": "2023-11-03 11:18:12.520811+00:00"},
"8,32,1,3,7,0,1,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5219029017857144, "tegra_power": 7.334650783099236, "ps_energy": 2.9136982074526583, "time": 358.3840070452009, "times": [358.37750244140625, 358.4419860839844, 358.19744873046875, 358.4739685058594, 358.5466613769531, 358.3206787109375, 358.3298034667969], "compile_time": 1123.6484859998654, "verification_time": 0, "benchmark_time": 2511.676072, "GB/s": 6.857448858453209, "GB/s/W (Jetson)": 0.9745022293522154, "GPU (W) (Jetson)": 7.036873443595494, "GB/s/W (PS)": 0.8434641562101214, "GPU (W) (PS)": 8.130101093169513, "strategy_time": 0.024897000002965797, "framework_time": 2.9730580001796625, "timestamp": "2023-11-03 11:18:16.159189+00:00"},
"1,64,1,3,5,0,0,0": {"block_size_x": 1, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.142857142857143, "tegra_power": 7.244892256854351, "ps_energy": 3.6068828207296195, "time": 448.3167419433594, "times": [448.22381591796875, 448.1717834472656, 448.3429260253906, 448.301513671875, 448.35235595703125, 448.2654724121094, 448.559326171875], "compile_time": 1077.3691219999364, "verification_time": 0, "benchmark_time": 3141.4909100001296, "GB/s": 5.481838553132809, "GB/s/W (Jetson)": 0.7819636363636363, "GPU (W) (Jetson)": 7.01034971220016, "GB/s/W (PS)": 0.6813639705386557, "GPU (W) (PS)": 8.045389527713233, "strategy_time": 0.027708999823516933, "framework_time": 3.3244690000628907, "timestamp": "2023-11-03 11:18:20.381455+00:00"},
"4,184,1,3,8,0,1,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.550502232142857, "tegra_power": 7.091299103569191, "ps_energy": 2.9452403505487643, "time": 373.1000191824777, "times": [374.2909240722656, 371.6806640625, 374.67645263671875, 371.5177001953125, 374.1527099609375, 371.4027099609375, 373.9789733886719], "compile_time": 927.7404650001699, "verification_time": 0, "benchmark_time": 2615.1514100001805, "GB/s": 6.586973662946996, "GB/s/W (Jetson)": 0.9635749261568755, "GPU (W) (Jetson)": 6.835974540369681, "GB/s/W (PS)": 0.8344310506074976, "GPU (W) (PS)": 7.893969978887325, "strategy_time": 0.02734500003498397, "framework_time": 3.114882999625479, "timestamp": "2023-11-03 11:18:23.927544+00:00"},
"2,48,1,1,4,0,1,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4471261160714284, "tegra_power": 7.192796370383684, "ps_energy": 2.810364791997407, "time": 354.4430193219866, "times": [354.28936767578125, 354.3817138671875, 354.474365234375, 354.4291687011719, 354.5255126953125, 354.4789123535156, 354.5220947265625], "compile_time": 1064.8053259999415, "verification_time": 0, "benchmark_time": 2484.2386489999626, "GB/s": 6.933695590058844, "GB/s/W (Jetson)": 1.004280075252266, "GPU (W) (Jetson)": 6.904145328500281, "GB/s/W (PS)": 0.8744772233832722, "GPU (W) (PS)": 7.928960760387802, "strategy_time": 0.02531300015107263, "framework_time": 2.9717549998622417, "timestamp": "2023-11-03 11:18:27.479641+00:00"},
"32,32,1,3,5,1,0,0": {"block_size_x": 32, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5238560267857144, "tegra_power": 7.33356219980674, "ps_energy": 2.9230016575558175, "time": 358.02889578683033, "times": [357.9224548339844, 357.96728515625, 358.0881652832031, 357.9923400878906, 358.13165283203125, 358.0767822265625, 358.0235900878906], "compile_time": 1097.1267089998946, "verification_time": 0, "benchmark_time": 2509.959297999785, "GB/s": 6.864250424812777, "GB/s/W (Jetson)": 0.9737480957382122, "GPU (W) (Jetson)": 7.049308188488823, "GB/s/W (PS)": 0.8407795437430639, "GPU (W) (PS)": 8.164150134117014, "strategy_time": 0.02614599998196354, "framework_time": 3.8027560003683902, "timestamp": "2023-11-03 11:18:31.090612+00:00"},
"2,216,1,3,2,1,1,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.521484375, "tegra_power": 7.1922286338194725, "ps_energy": 2.935256165563, "time": 366.1398446219308, "times": [365.73480224609375, 365.79266357421875, 366.0328063964844, 366.44390869140625, 366.2021789550781, 366.39849853515625, 366.3740539550781], "compile_time": 971.5062340001168, "verification_time": 0, "benchmark_time": 2568.7039079998613, "GB/s": 6.7121894437292715, "GB/s/W (Jetson)": 0.9746639814097597, "GPU (W) (Jetson)": 6.886670249187541, "GB/s/W (PS)": 0.8372693425647287, "GPU (W) (PS)": 8.016762471164236, "strategy_time": 0.028594000013981713, "framework_time": 3.327699000010398, "timestamp": "2023-11-03 11:18:34.634507+00:00"},
"8,96,1,1,2,0,1,0": {"block_size_x": 8, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4331752232142856, "tegra_power": 7.183704237098328, "ps_energy": 2.8354914302167993, "time": 352.80701991489957, "times": [352.82281494140625, 352.87457275390625, 352.8169860839844, 352.7721862792969, 352.9185791015625, 352.79229736328125, 352.6517028808594], "compile_time": 1110.683821999828, "verification_time": 0, "benchmark_time": 2473.0222310001864, "GB/s": 6.965847790083079, "GB/s/W (Jetson)": 1.0100382317527665, "GPU (W) (Jetson)": 6.896617940882217, "GB/s/W (PS)": 0.8667280647757394, "GPU (W) (PS)": 8.036947311594727, "strategy_time": 0.02698000002965273, "framework_time": 2.94800500000747, "timestamp": "2023-11-03 11:18:38.221246+00:00"},
"2,136,1,2,3,1,1,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5945870535714284, "tegra_power": 7.172201710849597, "ps_energy": 2.9848806779724066, "time": 373.49043927873885, "times": [373.2919921875, 373.3240661621094, 374.4557189941406, 373.1661071777344, 373.17889404296875, 373.7976989746094, 373.2185974121094], "compile_time": 1135.243020999951, "verification_time": 0, "benchmark_time": 2629.326204000108, "GB/s": 6.580088113489495, "GB/s/W (Jetson)": 0.9472027529841919, "GPU (W) (Jetson)": 6.946863375089148, "GB/s/W (PS)": 0.8233494953873391, "GPU (W) (PS)": 7.991852974166138, "strategy_time": 0.026094000077137025, "framework_time": 2.8154530000392697, "timestamp": "2023-11-03 11:18:41.988714+00:00"},
"2,176,1,3,7,1,1,0": {"block_size_x": 2, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4711216517857144, "tegra_power": 7.252472792514639, "ps_energy": 2.877631232358908, "time": 356.38917323521207, "times": [356.1737976074219, 356.49639892578125, 356.5086364746094, 356.4761047363281, 356.334228515625, 356.34735107421875, 356.3876953125], "compile_time": 1073.9362340000298, "verification_time": 0, "benchmark_time": 2498.3599139998205, "GB/s": 6.8958323781009385, "GB/s/W (Jetson)": 0.9945281318805396, "GPU (W) (Jetson)": 6.93377306990975, "GB/s/W (PS)": 0.8540357681569253, "GPU (W) (PS)": 8.074406992323839, "strategy_time": 0.02770900005089061, "framework_time": 3.2951450000382465, "timestamp": "2023-11-03 11:18:45.564405+00:00"},
"4,128,1,2,4,1,0,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4474051339285716, "tegra_power": 7.29151142169674, "ps_energy": 2.8454307875391742, "time": 349.94189453125, "times": [349.8614196777344, 349.8760986328125, 349.7614440917969, 349.899169921875, 350.0069885253906, 350.2095947265625, 349.9785461425781], "compile_time": 1127.8267939999296, "verification_time": 0, "benchmark_time": 2453.2592499999737, "GB/s": 7.022880193558919, "GB/s/W (Jetson)": 1.0041655817135038, "GPU (W) (Jetson)": 6.993747168246004, "GB/s/W (PS)": 0.8637005021392266, "GPU (W) (PS)": 8.131152148417815, "strategy_time": 0.030365000156962196, "framework_time": 3.9265610000711604, "timestamp": "2023-11-03 11:18:49.149521+00:00"},
"16,56,1,4,7,1,1,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4974888392857144, "tegra_power": 7.260165355351668, "ps_energy": 2.890822647915359, "time": 358.9811575753348, "times": [358.9789733886719, 359.0068359375, 359.0257263183594, 358.93719482421875, 358.9429016113281, 359.04156494140625, 358.9349060058594], "compile_time": 1071.5371050000613, "verification_time": 0, "benchmark_time": 2516.114536000032, "GB/s": 6.846041771661105, "GB/s/W (Jetson)": 0.9840284214054295, "GPU (W) (Jetson)": 6.957158576663172, "GB/s/W (PS)": 0.8501386281072045, "GPU (W) (PS)": 8.052853435096239, "strategy_time": 0.041562999967936776, "framework_time": 4.1020319999915955, "timestamp": "2023-11-03 11:18:52.741372+00:00"},
"8,120,1,1,8,0,1,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.467075892857143, "tegra_power": 7.281327147249535, "ps_energy": 2.80962282978414, "time": 353.6695861816406, "times": [353.5243225097656, 353.5712585449219, 353.73944091796875, 353.5928649902344, 353.6506652832031, 353.7635498046875, 353.8450012207031], "compile_time": 1075.69995200015, "verification_time": 0, "benchmark_time": 2479.3696570000066, "GB/s": 6.9488587541078655, "GB/s/W (Jetson)": 0.996159059036417, "GPU (W) (Jetson)": 6.975651820934585, "GB/s/W (PS)": 0.8747081543997898, "GPU (W) (PS)": 7.944202553909032, "strategy_time": 0.026770999966174713, "framework_time": 2.9167569998662657, "timestamp": "2023-11-03 11:18:56.299439+00:00"},
"8,104,1,3,6,0,1,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5382254464285716, "tegra_power": 7.341543079255303, "ps_energy": 2.913631866560536, "time": 357.67247227260043, "times": [357.7161560058594, 357.7974853515625, 357.7477722167969, 357.8839111328125, 357.6668701171875, 357.4277648925781, 357.46734619140625], "compile_time": 1077.1849029999885, "verification_time": 0, "benchmark_time": 2507.4122639998677, "GB/s": 6.87109070593204, "GB/s/W (Jetson)": 0.9682355062108385, "GPU (W) (Jetson)": 7.096507680060043, "GB/s/W (PS)": 0.8434833611636499, "GPU (W) (PS)": 8.14608920850892, "strategy_time": 0.02734400004555937, "framework_time": 2.9449850001128652, "timestamp": "2023-11-03 11:18:59.887061+00:00"},
"1,48,1,4,6,1,1,0": {"block_size_x": 1, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3065011160714284, "tegra_power": 7.092301153826556, "ps_energy": 3.7784421994380994, "time": 480.440682547433, "times": [480.7646484375, 480.61187744140625, 480.2951965332031, 480.3911437988281, 480.3459777832031, 480.2107238769531, 480.4652099609375], "compile_time": 937.9821929999252, "verification_time": 0, "benchmark_time": 3377.3382880001463, "GB/s": 5.115303697782432, "GB/s/W (Jetson)": 0.7432630184380405, "GPU (W) (Jetson)": 6.882225498763801, "GB/s/W (PS)": 0.6504267818005725, "GPU (W) (PS)": 7.864534242611856, "strategy_time": 0.02677100019354839, "framework_time": 2.972379999846453, "timestamp": "2023-11-03 11:19:04.205700+00:00"},
"2,136,1,2,8,1,1,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6049107142857144, "tegra_power": 7.225702832939026, "ps_energy": 2.9926399032704336, "time": 376.51220703125, "times": [376.4789733886719, 376.42120361328125, 376.4014587402344, 376.6269226074219, 376.60870361328125, 376.4476013183594, 376.6005859375], "compile_time": 1116.6499969999677, "verification_time": 0, "benchmark_time": 2639.5754549998856, "GB/s": 6.527278409849862, "GB/s/W (Jetson)": 0.9434488431876605, "GPU (W) (Jetson)": 6.918529241920463, "GB/s/W (PS)": 0.8212147399739846, "GPU (W) (PS)": 7.948321056751418, "strategy_time": 0.025730000061230385, "framework_time": 2.3188310001387435, "timestamp": "2023-11-03 11:19:07.964683+00:00"},
"2,128,1,3,3,0,1,0": {"block_size_x": 2, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4970703125, "tegra_power": 7.326363207970634, "ps_energy": 2.860903547302379, "time": 355.2753383091518, "times": [355.16693115234375, 355.1380615234375, 355.1098937988281, 355.2862548828125, 355.62860107421875, 355.30120849609375, 355.2964172363281], "compile_time": 1069.96647699998, "verification_time": 0, "benchmark_time": 2490.4284350000125, "GB/s": 6.917451719830487, "GB/s/W (Jetson)": 0.9841933515838873, "GPU (W) (Jetson)": 7.028549531144522, "GB/s/W (PS)": 0.8590293099245989, "GPU (W) (PS)": 8.052637599103184, "strategy_time": 0.027188000103706145, "framework_time": 2.9237339999781398, "timestamp": "2023-11-03 11:19:11.528092+00:00"},
"4,96,1,2,6,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5396205357142856, "tegra_power": 7.26671489164268, "ps_energy": 2.9446805426112923, "time": 364.7936793736049, "times": [364.94561767578125, 364.7642822265625, 364.6954650878906, 364.7381286621094, 364.8447265625, 364.72332763671875, 364.8442077636719], "compile_time": 1113.3882560000075, "verification_time": 0, "benchmark_time": 2556.636104000063, "GB/s": 6.736958831688087, "GB/s/W (Jetson)": 0.9677036255767962, "GPU (W) (Jetson)": 6.9617997221748, "GB/s/W (PS)": 0.8345896827982033, "GPU (W) (PS)": 8.072180821958503, "strategy_time": 0.027030999945054646, "framework_time": 3.2664480002040364, "timestamp": "2023-11-03 11:19:15.201488+00:00"},
"8,104,1,3,2,1,0,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4711216517857144, "tegra_power": 7.267381390151649, "ps_energy": 2.873425192144818, "time": 352.13111659458707, "times": [352.1025085449219, 352.15875244140625, 352.16766357421875, 352.1259765625, 352.1820373535156, 352.0802001953125, 352.1006774902344], "compile_time": 1107.7194179999879, "verification_time": 0, "benchmark_time": 2473.672370000031, "GB/s": 6.979218490450718, "GB/s/W (Jetson)": 0.9945281318805396, "GPU (W) (Jetson)": 7.017617970498039, "GB/s/W (PS)": 0.8552858820610421, "GPU (W) (PS)": 8.160100192034514, "strategy_time": 0.027031999934479245, "framework_time": 3.1008190001102776, "timestamp": "2023-11-03 11:19:18.786062+00:00"},
"1,40,1,2,6,0,0,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 4.934849330357143, "tegra_power": 6.930440096962593, "ps_energy": 5.537926107704022, "time": 725.0995832170759, "times": [725.1263427734375, 725.1326904296875, 724.89990234375, 725.018798828125, 724.9800415039062, 725.2589721679688, 725.2803344726562], "compile_time": 1119.0775649999978, "verification_time": 0, "benchmark_time": 5079.428482000139, "GB/s": 3.3893275584248386, "GB/s/W (Jetson)": 0.49800912560427435, "GPU (W) (Jetson)": 6.805753919292735, "GB/s/W (PS)": 0.4437762353999519, "GPU (W) (PS)": 7.637469715723325, "strategy_time": 0.028436999855330214, "framework_time": 2.673367999932452, "timestamp": "2023-11-03 11:19:24.987325+00:00"},
"4,128,1,3,3,0,1,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4969308035714284, "tegra_power": 7.317950971546658, "ps_energy": 2.8806815656340143, "time": 353.84066336495533, "times": [353.5416564941406, 353.6428527832031, 355.1986389160156, 353.4705810546875, 353.76849365234375, 353.6680603027344, 353.5943603515625], "compile_time": 1087.635945999864, "verification_time": 0, "benchmark_time": 2484.1278720000446, "GB/s": 6.9454990747211065, "GB/s/W (Jetson)": 0.9842483405967147, "GPU (W) (Jetson)": 7.056653070413406, "GB/s/W (PS)": 0.8531314357403131, "GPU (W) (PS)": 8.141182921825031, "strategy_time": 0.022655999828202766, "framework_time": 2.9164430002310837, "timestamp": "2023-11-03 11:19:28.562081+00:00"},
"4,224,1,2,7,0,1,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.484375, "tegra_power": 7.27531166959786, "ps_energy": 2.8668938015666106, "time": 356.0786873953683, "times": [356.1893615722656, 355.8912353515625, 356.26849365234375, 356.0167236328125, 356.1776123046875, 355.91796875, 356.08941650390625], "compile_time": 1118.7849130001268, "verification_time": 0, "benchmark_time": 2495.8154840001043, "GB/s": 6.901845257790532, "GB/s/W (Jetson)": 0.9892226415094338, "GPU (W) (Jetson)": 6.97703931165501, "GB/s/W (PS)": 0.8572344042381504, "GPU (W) (PS)": 8.05129288286604, "strategy_time": 0.02901099992413947, "framework_time": 3.1083719998150627, "timestamp": "2023-11-03 11:19:32.179874+00:00"},
"4,96,1,4,5,1,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5556640625, "tegra_power": 7.330529802693222, "ps_energy": 2.9478018048737016, "time": 364.89552089146207, "times": [364.2242126464844, 364.5559387207031, 364.7668762207031, 364.2810974121094, 365.5723876953125, 364.7642822265625, 366.1038513183594], "compile_time": 1080.7559859999856, "verification_time": 0, "benchmark_time": 2557.9017439999916, "GB/s": 6.7350785616549445, "GB/s/W (Jetson)": 0.961628735192969, "GPU (W) (Jetson)": 7.003824152887261, "GB/s/W (PS)": 0.8337059825178089, "GPU (W) (PS)": 8.078481746424407, "strategy_time": 0.025104000087594613, "framework_time": 2.6089389998560364, "timestamp": "2023-11-03 11:19:35.821222+00:00"},
"2,72,1,4,8,1,1,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8353794642857144, "tegra_power": 7.235313194842273, "ps_energy": 3.2955286147555722, "time": 407.6160801478795, "times": [407.4892578125, 407.324951171875, 407.4809265136719, 408.3380126953125, 407.4664611816406, 407.5324401855469, 407.6805114746094], "compile_time": 1079.3676200000846, "verification_time": 0, "benchmark_time": 2858.865403999971, "GB/s": 6.029202771167429, "GB/s/W (Jetson)": 0.8667622908876205, "GPU (W) (Jetson)": 6.956004933017029, "GB/s/W (PS)": 0.7457377214071857, "GPU (W) (PS)": 8.08488373069086, "strategy_time": 0.02963599990835064, "framework_time": 2.831545000162805, "timestamp": "2023-11-03 11:19:39.762650+00:00"},
"2,208,1,1,4,0,1,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.448521205357143, "tegra_power": 7.2418321786697035, "ps_energy": 2.829205264916839, "time": 352.7058890206473, "times": [352.6401672363281, 352.86358642578125, 352.7620849609375, 352.6588134765625, 352.6180114746094, 352.7589111328125, 352.6396484375], "compile_time": 1066.8413549999514, "verification_time": 0, "benchmark_time": 2472.859571000072, "GB/s": 6.967845098430247, "GB/s/W (Jetson)": 1.0037078684975214, "GPU (W) (Jetson)": 6.942104687154251, "GB/s/W (PS)": 0.8686538338080739, "GPU (W) (PS)": 8.021429051759377, "strategy_time": 0.02755299988166371, "framework_time": 2.42924900021535, "timestamp": "2023-11-03 11:19:43.305140+00:00"},
"2,192,1,4,2,1,1,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4900948660714284, "tegra_power": 7.308764630707787, "ps_energy": 2.8600953136779674, "time": 354.74539620535717, "times": [354.81610107421875, 354.72869873046875, 354.74072265625, 354.64874267578125, 354.754638671875, 354.67657470703125, 354.852294921875], "compile_time": 1138.0109229999107, "verification_time": 0, "benchmark_time": 2487.269978999848, "GB/s": 6.9277854661074425, "GB/s/W (Jetson)": 0.9869503501596728, "GPU (W) (Jetson)": 7.019385995442058, "GB/s/W (PS)": 0.8592720628039577, "GPU (W) (PS)": 8.062388812573337, "strategy_time": 0.025311999934274354, "framework_time": 2.398625000296306, "timestamp": "2023-11-03 11:19:46.933177+00:00"},
"2,240,1,4,6,1,1,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5223214285714284, "tegra_power": 7.200964957872074, "ps_energy": 2.913257635262198, "time": 365.7777840750558, "times": [365.6249084472656, 365.8392639160156, 365.87286376953125, 365.8690185546875, 365.6969299316406, 365.8034362792969, 365.7380676269531], "compile_time": 942.3339979998673, "verification_time": 0, "benchmark_time": 2574.1722759998993, "GB/s": 6.718833420172156, "GB/s/W (Jetson)": 0.9743405309734513, "GPU (W) (Jetson)": 6.895775354289587, "GB/s/W (PS)": 0.8435917133634532, "GPU (W) (PS)": 7.964555973865301, "strategy_time": 0.02661500002432149, "framework_time": 2.3354460001883126, "timestamp": "2023-11-03 11:19:50.452377+00:00"},
"1,176,1,3,8,1,1,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.69921875, "tegra_power": 7.1681265364473274, "ps_energy": 3.08911633147935, "time": 389.38656180245533, "times": [389.3735046386719, 389.63525390625, 389.4078674316406, 389.3645324707031, 389.5609436035156, 389.33905029296875, 389.0247802734375], "compile_time": 1094.1437349999887, "verification_time": 0, "benchmark_time": 2729.800786999931, "GB/s": 6.3114658827050025, "GB/s/W (Jetson)": 0.9104856729377713, "GPU (W) (Jetson)": 6.931977152743589, "GB/s/W (PS)": 0.7955673196752281, "GPU (W) (PS)": 7.933289523860171, "strategy_time": 0.025312999923698953, "framework_time": 2.4617490003038256, "timestamp": "2023-11-03 11:19:54.279145+00:00"},
"4,200,1,3,2,1,1,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4736328125, "tegra_power": 7.196580579441391, "ps_energy": 2.8768308545516317, "time": 360.77855137416293, "times": [362.5111389160156, 358.9122009277344, 362.4936828613281, 359.59808349609375, 362.11614990234375, 357.66900634765625, 362.14959716796875], "compile_time": 1135.7948610000221, "verification_time": 0, "benchmark_time": 2529.0438370000174, "GB/s": 6.811934885373012, "GB/s/W (Jetson)": 0.993518515594157, "GPU (W) (Jetson)": 6.856374368925826, "GB/s/W (PS)": 0.8542733738105117, "GPU (W) (PS)": 7.973952009048549, "strategy_time": 0.027031999934479245, "framework_time": 2.5087799999710114, "timestamp": "2023-11-03 11:19:57.946578+00:00"},
"4,232,1,2,6,0,0,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.578404017857143, "tegra_power": 7.243740740813428, "ps_energy": 2.964302352729127, "time": 369.9002467564174, "times": [370.13677978515625, 368.9111328125, 371.1854553222656, 368.908447265625, 369.4485778808594, 369.8715515136719, 370.83978271484375], "compile_time": 1115.6039200000123, "verification_time": 0, "benchmark_time": 2595.2969149998353, "GB/s": 6.643953394327825, "GB/s/W (Jetson)": 0.953147754572016, "GPU (W) (Jetson)": 6.9705387884075805, "GB/s/W (PS)": 0.829065226000774, "GPU (W) (PS)": 8.013788524669858, "strategy_time": 0.04489600019041973, "framework_time": 3.973122999923362, "timestamp": "2023-11-03 11:20:01.661847+00:00"},
"2,40,1,4,4,0,0,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.1265345982142856, "tegra_power": 7.249584682882579, "ps_energy": 3.583380914480066, "time": 447.53111049107144, "times": [447.5022888183594, 447.48712158203125, 447.5527038574219, 447.6554260253906, 447.3645935058594, 447.5677185058594, 447.5879211425781], "compile_time": 1087.7054869999938, "verification_time": 0, "benchmark_time": 3142.8844320000735, "GB/s": 5.49146180542242, "GB/s/W (Jetson)": 0.7860459952701798, "GPU (W) (Jetson)": 6.98618380917378, "GB/s/W (PS)": 0.6858327536626364, "GPU (W) (PS)": 8.006998464415261, "strategy_time": 0.027084000066679437, "framework_time": 2.538938000043345, "timestamp": "2023-11-03 11:20:05.895063+00:00"},
"1,248,1,4,7,1,0,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3777901785714284, "tegra_power": 7.260083485312355, "ps_energy": 3.862751144703257, "time": 479.7480991908482, "times": [479.826416015625, 479.7108459472656, 479.814208984375, 479.8170166015625, 479.3765563964844, 479.6365051269531, 480.0551452636719], "compile_time": 933.8259670000753, "verification_time": 0, "benchmark_time": 3361.8874050000613, "GB/s": 5.12268835279396, "GB/s/W (Jetson)": 0.7275762762266644, "GPU (W) (Jetson)": 7.040757814920935, "GB/s/W (PS)": 0.6362304761387357, "GPU (W) (PS)": 8.051623656702846, "strategy_time": 0.026823000098374905, "framework_time": 3.366447999724187, "timestamp": "2023-11-03 11:20:10.194235+00:00"},
"2,120,1,2,3,0,1,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6014229910714284, "tegra_power": 7.227051156255803, "ps_energy": 2.9858030855450903, "time": 374.15026419503346, "times": [374.10272216796875, 374.200927734375, 374.4022521972656, 374.00860595703125, 374.0699462890625, 374.0683288574219, 374.1990661621094], "compile_time": 1121.7413450001459, "verification_time": 0, "benchmark_time": 2622.9441289999613, "GB/s": 6.568483935959286, "GB/s/W (Jetson)": 0.94471372338714, "GPU (W) (Jetson)": 6.952882945755141, "GB/s/W (PS)": 0.8230951370831404, "GPU (W) (PS)": 7.9802244479738755, "strategy_time": 0.025937999907910125, "framework_time": 2.812690999917322, "timestamp": "2023-11-03 11:20:13.941827+00:00"},
"4,136,1,1,6,0,1,0": {"block_size_x": 4, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4476841517857144, "tegra_power": 7.237454477971205, "ps_energy": 2.8347650597035163, "time": 354.5133797781808, "times": [354.5065002441406, 354.5673828125, 354.48077392578125, 354.5631103515625, 354.46490478515625, 354.4167785644531, 354.5942077636719], "compile_time": 1081.2259360000098, "verification_time": 0, "benchmark_time": 2488.5642639999332, "GB/s": 6.932319455862911, "GB/s/W (Jetson)": 1.0040511142775719, "GPU (W) (Jetson)": 6.904349148450283, "GB/s/W (PS)": 0.8669501522136852, "GPU (W) (PS)": 7.996214589918242, "strategy_time": 0.02890699988711276, "framework_time": 3.9563510001698887, "timestamp": "2023-11-03 11:20:17.515670+00:00"},
"8,32,1,4,1,0,0,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5736607142857144, "tegra_power": 7.370088212282589, "ps_energy": 2.9482382304779873, "time": 362.75579833984375, "times": [362.8413391113281, 362.9316711425781, 362.7255859375, 362.7903137207031, 362.55511474609375, 362.82989501953125, 362.6166687011719], "compile_time": 1069.4837470000493, "verification_time": 0, "benchmark_time": 2542.4105760000657, "GB/s": 6.7748055613369536, "GB/s/W (Jetson)": 0.9549044232437119, "GPU (W) (Jetson)": 7.0947472819569075, "GB/s/W (PS)": 0.833582569615332, "GPU (W) (PS)": 8.127335921219276, "strategy_time": 0.02588500001365901, "framework_time": 2.606856000056723, "timestamp": "2023-11-03 11:20:21.130520+00:00"},
"4,40,1,3,6,0,1,0": {"block_size_x": 4, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.514927455357143, "tegra_power": 7.3101591111794955, "ps_energy": 2.8641190046205987, "time": 357.7600315638951, "times": [357.8605651855469, 357.7276611328125, 357.6700439453125, 357.9532165527344, 357.44097900390625, 357.86956787109375, 357.7981872558594], "compile_time": 1079.825841999991, "verification_time": 0, "benchmark_time": 2512.1134549999624, "GB/s": 6.869409054043754, "GB/s/W (Jetson)": 0.977205125644866, "GPU (W) (Jetson)": 7.029649020220368, "GB/s/W (PS)": 0.8580649044384071, "GPU (W) (PS)": 8.00569865812155, "strategy_time": 0.024897000002965797, "framework_time": 2.8240440001354727, "timestamp": "2023-11-03 11:20:24.725656+00:00"},
"2,184,1,4,6,0,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8388671875, "tegra_power": 7.329366516115593, "ps_energy": 3.2879046129291964, "time": 403.68948800223217, "times": [403.5904235839844, 403.75244140625, 403.8378601074219, 403.4192199707031, 403.91839599609375, 403.75811767578125, 403.5499572753906], "compile_time": 930.7352460000402, "verification_time": 0, "benchmark_time": 2828.7861729997985, "GB/s": 6.087847400144367, "GB/s/W (Jetson)": 0.8656974200206398, "GPU (W) (Jetson)": 7.032303965973726, "GB/s/W (PS)": 0.7474669399884208, "GPU (W) (PS)": 8.144637674863151, "strategy_time": 0.02406299995527661, "framework_time": 2.304247000211035, "timestamp": "2023-11-03 11:20:28.487582+00:00"},
"4,128,1,3,6,0,1,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5059988839285716, "tegra_power": 7.3119100281381275, "ps_energy": 2.8765824474134467, "time": 356.6127711704799, "times": [356.5350646972656, 356.6131896972656, 356.61834716796875, 356.5807189941406, 356.4575500488281, 356.76055908203125, 356.7239685058594], "compile_time": 1076.8707800000357, "verification_time": 0, "benchmark_time": 2500.5422669999007, "GB/s": 6.89150865779043, "GB/s/W (Jetson)": 0.980686789511774, "GPU (W) (Jetson)": 7.027226971438358, "GB/s/W (PS)": 0.8543471445464093, "GPU (W) (PS)": 8.06640333707591, "strategy_time": 0.0257819999660569, "framework_time": 3.0664960002013686, "timestamp": "2023-11-03 11:20:32.068144+00:00"},
"1,40,1,4,5,1,1,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.9136439732142856, "tegra_power": 7.074325737376313, "ps_energy": 4.443320179149721, "time": 567.2513689313616, "times": [567.1835327148438, 567.0074462890625, 567.105712890625, 567.48828125, 567.3306884765625, 567.4146118164062, 567.2293090820312], "compile_time": 933.8220859999637, "verification_time": 0, "benchmark_time": 3974.2346860000453, "GB/s": 4.33247081382958, "GB/s/W (Jetson)": 0.6279569671692866, "GPU (W) (Jetson)": 6.8993116413049025, "GB/s/W (PS)": 0.5530999119830003, "GPU (W) (PS)": 7.833070879177323, "strategy_time": 0.05125099983160908, "framework_time": 4.02129900021464, "timestamp": "2023-11-03 11:20:36.980343+00:00"},
"4,176,1,4,3,0,1,0": {"block_size_x": 4, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4874441964285716, "tegra_power": 7.2590126572218905, "ps_energy": 2.873317204716971, "time": 358.75550624302457, "times": [358.64105224609375, 358.5738525390625, 358.60162353515625, 359.0888671875, 358.97296142578125, 358.7000427246094, 358.71014404296875], "compile_time": 1095.5791070000487, "verification_time": 0, "benchmark_time": 2515.567386999919, "GB/s": 6.850347819707601, "GB/s/W (Jetson)": 0.9880020639371844, "GPU (W) (Jetson)": 6.933535940612302, "GB/s/W (PS)": 0.8553180261356071, "GPU (W) (PS)": 8.009123636336769, "strategy_time": 0.02557300012995256, "framework_time": 2.606437999929767, "timestamp": "2023-11-03 11:20:40.594461+00:00"},
"4,40,1,1,6,0,1,0": {"block_size_x": 4, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.481166294642857, "tegra_power": 7.297803152308512, "ps_energy": 2.835592483425249, "time": 353.47095162527904, "times": [353.4057312011719, 353.3415222167969, 353.5651550292969, 353.4780578613281, 353.4864196777344, 353.53619384765625, 353.48358154296875], "compile_time": 1071.7277619999095, "verification_time": 0, "benchmark_time": 2477.499394000006, "GB/s": 6.952763695856247, "GB/s/W (Jetson)": 0.9905019285915095, "GPU (W) (Jetson)": 7.019434788726817, "GB/s/W (PS)": 0.8666971768211722, "GPU (W) (PS)": 8.022137237549613, "strategy_time": 0.02687599999262602, "framework_time": 2.5259160001951386, "timestamp": "2023-11-03 11:20:44.146573+00:00"},
"4,32,1,3,4,0,1,0": {"block_size_x": 4, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.504603794642857, "tegra_power": 7.31721943574795, "ps_energy": 2.9058685562166437, "time": 357.95846121651783, "times": [357.7970275878906, 357.9220275878906, 357.89984130859375, 357.910888671875, 358.02130126953125, 358.2276611328125, 357.93048095703125], "compile_time": 942.8177360000518, "verification_time": 0, "benchmark_time": 2509.066058000144, "GB/s": 6.8656010858016145, "GB/s/W (Jetson)": 0.9812330418314487, "GPU (W) (Jetson)": 6.9969118375662624, "GB/s/W (PS)": 0.8457368089627989, "GPU (W) (PS)": 8.11789319448151, "strategy_time": 0.025105000077019213, "framework_time": 8.556561999739642, "timestamp": "2023-11-03 11:20:47.607096+00:00"},
"1,248,1,3,4,1,1,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6817801339285716, "tegra_power": 7.293632658475484, "ps_energy": 3.075245255936482, "time": 383.28529139927457, "times": [383.28009033203125, 383.38311767578125, 383.3386535644531, 383.25543212890625, 383.26708984375, 383.2035827636719, 383.2690734863281], "compile_time": 1076.380922999988, "verification_time": 0, "benchmark_time": 2687.0553420001215, "GB/s": 6.411934021856, "GB/s/W (Jetson)": 0.9164062217135721, "GPU (W) (Jetson)": 6.996825065052959, "GB/s/W (PS)": 0.7991557731064948, "GPU (W) (PS)": 8.023384473506834, "strategy_time": 0.09776199999578239, "framework_time": 3.5790009999345784, "timestamp": "2023-11-03 11:20:51.374265+00:00"},
"4,88,1,2,3,1,1,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4365234375, "tegra_power": 7.293210230428591, "ps_energy": 2.806552439195262, "time": 350.31884765625, "times": [350.2417297363281, 350.3932800292969, 350.31427001953125, 350.3167724609375, 350.40521240234375, 350.3864440917969, 350.1742248535156], "compile_time": 1121.7730270000175, "verification_time": 0, "benchmark_time": 2455.723478999971, "GB/s": 7.015323373099004, "GB/s/W (Jetson)": 1.008650260521042, "GPU (W) (Jetson)": 6.95515943204642, "GB/s/W (PS)": 0.8756650920460552, "GPU (W) (PS)": 8.011422902227597, "strategy_time": 0.038438000046880916, "framework_time": 3.627024000024903, "timestamp": "2023-11-03 11:20:54.955481+00:00"},
"8,112,1,2,8,1,0,0": {"block_size_x": 8, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.481166294642857, "tegra_power": 7.299431353735818, "ps_energy": 2.861391558026818, "time": 353.8334306989397, "times": [353.8002624511719, 353.3016052246094, 355.22735595703125, 353.3832702636719, 353.6270751953125, 353.8912048339844, 353.6032409667969], "compile_time": 1118.486257000086, "verification_time": 0, "benchmark_time": 2482.183829000178, "GB/s": 6.94564104682086, "GB/s/W (Jetson)": 0.9905019285915095, "GPU (W) (Jetson)": 7.012243839542583, "GB/s/W (PS)": 0.8588828023574417, "GPU (W) (PS)": 8.086832135602931, "strategy_time": 0.026301999923816766, "framework_time": 3.4778039996581356, "timestamp": "2023-11-03 11:20:58.560009+00:00"},
"1,256,1,4,1,1,0,0": {"block_size_x": 1, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.511439732142857, "tegra_power": 7.293996294439517, "ps_energy": 2.9029459108387528, "time": 357.86167689732144, "times": [357.6794128417969, 358.1158752441406, 357.83062744140625, 358.1354675292969, 357.6734924316406, 357.8215026855469, 357.7753601074219], "compile_time": 1079.24852799988, "verification_time": 0, "benchmark_time": 2509.0446530000463, "GB/s": 6.867457899676529, "GB/s/W (Jetson)": 0.9785622041995333, "GPU (W) (Jetson)": 7.0179063428002815, "GB/s/W (PS)": 0.8465882849639185, "GPU (W) (PS)": 8.111921723520211, "strategy_time": 0.025261000018872437, "framework_time": 2.4876350000795355, "timestamp": "2023-11-03 11:21:02.150871+00:00"},
"8,104,1,1,4,0,0,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4380580357142856, "tegra_power": 7.275357790056818, "ps_energy": 2.8211403040877485, "time": 351.33314732142856, "times": [351.5801696777344, 350.47686767578125, 351.8141174316406, 351.0610046386719, 350.4305114746094, 352.70062255859375, 351.26873779296875], "compile_time": 1080.5221269999947, "verification_time": 0, "benchmark_time": 2463.4835540000495, "GB/s": 6.995070117171678, "GB/s/W (Jetson)": 1.0080153810940717, "GPU (W) (Jetson)": 6.939447798484408, "GB/s/W (PS)": 0.8711371059564142, "GPU (W) (PS)": 8.029815363555027, "strategy_time": 0.02614599998196354, "framework_time": 2.798835000021427, "timestamp": "2023-11-03 11:21:05.697777+00:00"},
"4,232,1,4,4,1,1,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.557896205357143, "tegra_power": 7.170082604526824, "ps_energy": 2.9122840865030803, "time": 370.6644199916295, "times": [369.543701171875, 372.18035888671875, 369.5787048339844, 372.0815124511719, 369.5757141113281, 372.18115234375, 369.5097961425781], "compile_time": 1084.9494619999405, "verification_time": 0, "benchmark_time": 2599.523050000016, "GB/s": 6.630256014471253, "GB/s/W (Jetson)": 0.9607895718571038, "GPU (W) (Jetson)": 6.90084094236751, "GB/s/W (PS)": 0.84387371801731, "GPU (W) (PS)": 7.856929150547676, "strategy_time": 0.07177199995567207, "framework_time": 3.954684000063935, "timestamp": "2023-11-03 11:21:09.386376+00:00"},
"4,232,1,2,6,1,1,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.530552455357143, "tegra_power": 7.176943046642038, "ps_energy": 2.9404391290338805, "time": 368.4852774483817, "times": [369.8577575683594, 366.5061340332031, 369.99102783203125, 366.54046630859375, 369.8027648925781, 366.72943115234375, 369.9693603515625], "compile_time": 1142.3339000000396, "verification_time": 0, "benchmark_time": 2584.5646139998735, "GB/s": 6.66946592009844, "GB/s/W (Jetson)": 0.9711713324880092, "GPU (W) (Jetson)": 6.867445214854286, "GB/s/W (PS)": 0.8357935302022308, "GPU (W) (PS)": 7.979800846848717, "strategy_time": 0.052345000085551874, "framework_time": 3.3024350000232516, "timestamp": "2023-11-03 11:21:13.116685+00:00"},
"1,152,1,4,8,1,1,0": {"block_size_x": 1, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7339564732142856, "tegra_power": 7.337103803983739, "ps_energy": 3.168275490798156, "time": 388.9315883091518, "times": [389.18756103515625, 388.6813659667969, 388.8411560058594, 389.13140869140625, 388.9114990234375, 389.0243225097656, 388.7438049316406], "compile_time": 920.3387939999175, "verification_time": 0, "benchmark_time": 2727.297834000183, "GB/s": 6.318849056936246, "GB/s/W (Jetson)": 0.8989170179109047, "GPU (W) (Jetson)": 7.029401970408054, "GB/s/W (PS)": 0.7756901213728981, "GPU (W) (PS)": 8.14609968959316, "strategy_time": 0.025936999918485526, "framework_time": 4.80500799994843, "timestamp": "2023-11-03 11:21:16.769229+00:00"},
"2,128,1,3,7,0,1,0": {"block_size_x": 2, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.504603794642857, "tegra_power": 7.327684690892363, "ps_energy": 2.897036544560511, "time": 358.7377275739397, "times": [358.58563232421875, 358.7775573730469, 358.7501525878906, 358.90020751953125, 358.7850646972656, 358.7452087402344, 358.6202697753906], "compile_time": 1088.8939060000666, "verification_time": 0, "benchmark_time": 2514.5163699999102, "GB/s": 6.850687315828698, "GB/s/W (Jetson)": 0.9812330418314487, "GPU (W) (Jetson)": 6.9817128284245795, "GB/s/W (PS)": 0.8483151531569048, "GPU (W) (PS)": 8.075639448776405, "strategy_time": 0.025990000040110317, "framework_time": 5.84152900000845, "timestamp": "2023-11-03 11:21:20.379396+00:00"},
"8,64,1,4,2,1,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4995814732142856, "tegra_power": 7.370464859375387, "ps_energy": 2.844177672091194, "time": 353.8033185686384, "times": [353.8617248535156, 353.8102111816406, 353.7491760253906, 353.6875915527344, 354.052490234375, 353.68963623046875, 353.77239990234375], "compile_time": 1117.2615839998343, "verification_time": 0, "benchmark_time": 2479.794675999983, "GB/s": 6.9462321889533705, "GB/s/W (Jetson)": 0.9832045989842049, "GPU (W) (Jetson)": 7.064889847067285, "GB/s/W (PS)": 0.8640810397027829, "GPU (W) (PS)": 8.03886657592054, "strategy_time": 0.025261000018872437, "framework_time": 2.6160740001159866, "timestamp": "2023-11-03 11:21:23.979148+00:00"},
"1,160,1,3,8,0,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6961495535714284, "tegra_power": 7.359505997003174, "ps_energy": 3.115645658319928, "time": 380.7501438685826, "times": [381.0842590332031, 380.5557861328125, 380.8559875488281, 381.12921142578125, 380.8317565917969, 380.3760986328125, 380.41790771484375], "compile_time": 1081.0811349999767, "verification_time": 0, "benchmark_time": 2668.3613669999886, "GB/s": 6.454626582749894, "GB/s/W (Jetson)": 0.9115221359826141, "GPU (W) (Jetson)": 7.081151765767986, "GB/s/W (PS)": 0.7887931650498501, "GPU (W) (PS)": 8.182913935799602, "strategy_time": 0.02651099998729478, "framework_time": 2.6636790000793553, "timestamp": "2023-11-03 11:21:27.731336+00:00"},
"2,152,1,1,8,0,1,0": {"block_size_x": 2, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6181640625, "tegra_power": 7.25165081913262, "ps_energy": 2.9830249219189033, "time": 376.63588169642856, "times": [376.63134765625, 376.7405700683594, 376.74285888671875, 376.5563049316406, 376.53826904296875, 376.582763671875, 376.6590576171875], "compile_time": 1073.5894720000942, "verification_time": 0, "benchmark_time": 2639.601723999931, "GB/s": 6.525135069262585, "GB/s/W (Jetson)": 0.9386730324505781, "GPU (W) (Jetson)": 6.951446183797912, "GB/s/W (PS)": 0.8238617055934916, "GPU (W) (PS)": 7.9201825075265795, "strategy_time": 0.02515699998184573, "framework_time": 2.6630009999735194, "timestamp": "2023-11-03 11:21:31.447270+00:00"},
"1,216,1,4,4,0,0,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.610072544642857, "tegra_power": 7.356240770065122, "ps_energy": 3.00669369393758, "time": 367.70858328683033, "times": [367.6636047363281, 367.86724853515625, 367.55780029296875, 367.5864562988281, 367.85906982421875, 367.7654724121094, 367.6604309082031], "compile_time": 1085.231530000101, "verification_time": 0, "benchmark_time": 2577.6220970001305, "GB/s": 6.683553530440583, "GB/s/W (Jetson)": 0.9415830242129455, "GPU (W) (Jetson)": 7.098209460633872, "GB/s/W (PS)": 0.8173762445290911, "GPU (W) (PS)": 8.176838481880678, "strategy_time": 0.025000000050567905, "framework_time": 2.5963859998228145, "timestamp": "2023-11-03 11:21:35.112799+00:00"},
"4,56,1,4,8,1,1,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5025111607142856, "tegra_power": 7.278381565743669, "ps_energy": 2.8973497255439207, "time": 358.91221400669644, "times": [358.9518737792969, 359.099365234375, 358.99249267578125, 358.8435363769531, 358.9234924316406, 358.77239990234375, 358.8023376464844], "compile_time": 1079.3636370001423, "verification_time": 0, "benchmark_time": 2516.7727440000363, "GB/s": 6.847356830141609, "GB/s/W (Jetson)": 0.9820535622700413, "GPU (W) (Jetson)": 6.972488154631581, "GB/s/W (PS)": 0.8482234568830428, "GPU (W) (PS)": 8.07258603210941, "strategy_time": 0.025261000018872437, "framework_time": 2.7013339997665753, "timestamp": "2023-11-03 11:21:38.711742+00:00"},
"1,40,1,4,4,1,1,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.9100167410714284, "tegra_power": 7.0828578499891615, "ps_energy": 4.47457042402935, "time": 567.7595650809152, "times": [567.6133422851562, 567.6387939453125, 567.9337768554688, 567.8532104492188, 567.462890625, 567.8583984375, 567.95654296875], "compile_time": 1085.2323449998948, "verification_time": 0, "benchmark_time": 3978.2611680000173, "GB/s": 4.328592860694035, "GB/s/W (Jetson)": 0.6285395083312519, "GPU (W) (Jetson)": 6.88674745711098, "GB/s/W (PS)": 0.549237081352478, "GPU (W) (PS)": 7.881100908254447, "strategy_time": 0.05312600001161627, "framework_time": 5.44261799996093, "timestamp": "2023-11-03 11:21:43.780834+00:00"},
"2,184,1,2,8,0,1,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.564174107142857, "tegra_power": 7.281875012098816, "ps_energy": 2.921214248479633, "time": 365.96908133370533, "times": [365.7590637207031, 365.7401123046875, 365.8172912597656, 366.07855224609375, 366.1628723144531, 366.0489196777344, 366.1767578125], "compile_time": 951.5216539998619, "verification_time": 0, "benchmark_time": 2565.385415999799, "GB/s": 6.715321390112356, "GB/s/W (Jetson)": 0.9584372578890097, "GPU (W) (Jetson)": 7.006532075874301, "GB/s/W (PS)": 0.8412939931670796, "GPU (W) (PS)": 7.98213400387218, "strategy_time": 0.024582999913036474, "framework_time": 2.654930000517197, "timestamp": "2023-11-03 11:21:47.300825+00:00"},
"8,32,1,3,3,0,1,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5345982142857144, "tegra_power": 7.4250352714842744, "ps_energy": 2.9254411001197047, "time": 358.0574384416853, "times": [357.8984375, 357.7717590332031, 357.8883972167969, 357.86358642578125, 359.3112487792969, 357.887451171875, 357.78118896484375], "compile_time": 1081.5305080000144, "verification_time": 0, "benchmark_time": 2513.9196180000454, "GB/s": 6.86370323905519, "GB/s/W (Jetson)": 0.969621136063408, "GPU (W) (Jetson)": 7.078747547646631, "GB/s/W (PS)": 0.8400784414697116, "GPU (W) (PS)": 8.170312318748698, "strategy_time": 0.02614599998196354, "framework_time": 2.303778999930728, "timestamp": "2023-11-03 11:21:50.898664+00:00"},
"1,232,1,4,5,0,0,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.183872767857143, "tegra_power": 7.282983992773185, "ps_energy": 3.6439050508293542, "time": 452.6871904645647, "times": [452.33245849609375, 452.1540222167969, 453.47662353515625, 451.5704040527344, 452.5078125, 454.20037841796875, 452.5686340332031], "compile_time": 1082.8143169999294, "verification_time": 0, "benchmark_time": 3174.8737670000082, "GB/s": 5.428914384517746, "GB/s/W (Jetson)": 0.7718901410919288, "GPU (W) (Jetson)": 7.033273383745921, "GB/s/W (PS)": 0.6744412836554698, "GPU (W) (PS)": 8.0494989201922, "strategy_time": 0.02625000001899025, "framework_time": 3.2473310000113997, "timestamp": "2023-11-03 11:21:55.159698+00:00"},
"2,192,1,2,5,0,0,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7202845982142856, "tegra_power": 7.336646028879618, "ps_energy": 3.1183190906730096, "time": 385.58963448660717, "times": [385.2889709472656, 385.39739990234375, 385.5520935058594, 385.56793212890625, 385.83563232421875, 385.7362060546875, 385.74920654296875], "compile_time": 1182.8258780001306, "verification_time": 0, "benchmark_time": 2702.77185000009, "GB/s": 6.373615315858188, "GB/s/W (Jetson)": 0.9034348838401969, "GPU (W) (Jetson)": 7.054869620227746, "GB/s/W (PS)": 0.7881169080325225, "GPU (W) (PS)": 8.087144497089222, "strategy_time": 0.02833400003510178, "framework_time": 3.533322999601296, "timestamp": "2023-11-03 11:21:59.048930+00:00"},
"2,120,1,2,2,0,1,0": {"block_size_x": 2, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6358816964285716, "tegra_power": 7.302402662044726, "ps_energy": 3.012335687099559, "time": 374.74346923828125, "times": [374.8616027832031, 374.7955322265625, 374.80902099609375, 374.5176696777344, 374.8106689453125, 374.6697998046875, 374.739990234375], "compile_time": 979.8801409999669, "verification_time": 0, "benchmark_time": 2626.7185159999826, "GB/s": 6.558086268975994, "GB/s/W (Jetson)": 0.9323635439822164, "GPU (W) (Jetson)": 7.033829573565009, "GB/s/W (PS)": 0.8158453290995304, "GPU (W) (PS)": 8.038394086553541, "strategy_time": 0.02588600000308361, "framework_time": 3.525874999922962, "timestamp": "2023-11-03 11:22:02.659161+00:00"},
"1,32,1,2,7,1,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2823660714285716, "tegra_power": 7.230663450655188, "ps_energy": 3.757141993856099, "time": 470.3465270996094, "times": [470.08203125, 470.06280517578125, 470.0218811035156, 470.35968017578125, 470.1941223144531, 471.3905334472656, 470.31463623046875], "compile_time": 1131.9698289998996, "verification_time": 0, "benchmark_time": 3298.2640770001126, "GB/s": 5.225083759318441, "GB/s/W (Jetson)": 0.7487281876912614, "GPU (W) (Jetson)": 6.978612325829794, "GB/s/W (PS)": 0.654114218738289, "GPU (W) (PS)": 7.988029627909672, "strategy_time": 0.026354000056016957, "framework_time": 2.716751999741973, "timestamp": "2023-11-03 11:22:07.092194+00:00"},
"4,80,1,4,7,1,1,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4995814732142856, "tegra_power": 7.31835897929447, "ps_energy": 2.8911999051706516, "time": 358.2423357282366, "times": [358.01239013671875, 358.4158935546875, 358.08160400390625, 358.18292236328125, 358.2452087402344, 358.2978515625, 358.4604797363281], "compile_time": 1094.5592120001493, "verification_time": 0, "benchmark_time": 2511.128331000009, "GB/s": 6.86016072054739, "GB/s/W (Jetson)": 0.9832045989842049, "GPU (W) (Jetson)": 6.977348079570566, "GB/s/W (PS)": 0.8500276980518721, "GPU (W) (PS)": 8.070514332967955, "strategy_time": 0.045417999899655115, "framework_time": 3.804835999972056, "timestamp": "2023-11-03 11:22:10.702090+00:00"},
"1,120,1,2,2,1,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8611886160714284, "tegra_power": 7.399674866886785, "ps_energy": 3.2663303029798305, "time": 401.6835196358817, "times": [401.7242126464844, 401.65802001953125, 401.5641784667969, 401.6668701171875, 401.75244140625, 401.6955871582031, 401.72332763671875], "compile_time": 960.8254600000237, "verification_time": 0, "benchmark_time": 2814.8019630000363, "GB/s": 6.1182495170022575, "GB/s/W (Jetson)": 0.8589437222682724, "GPU (W) (Jetson)": 7.122992296684316, "GB/s/W (PS)": 0.7524040045055956, "GPU (W) (PS)": 8.131601480540441, "strategy_time": 0.02791699989757035, "framework_time": 2.4771650000730006, "timestamp": "2023-11-03 11:22:14.480589+00:00"},
"8,128,1,4,3,0,1,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5414341517857144, "tegra_power": 7.435287834962777, "ps_energy": 2.9309251566688284, "time": 355.8899841308594, "times": [355.82672119140625, 355.8575439453125, 355.8489990234375, 355.9511413574219, 356.0304260253906, 355.8931884765625, 355.8218688964844], "compile_time": 1081.5124770001603, "verification_time": 0, "benchmark_time": 2494.6542410000347, "GB/s": 6.905504817737016, "GB/s/W (Jetson)": 0.967013053741011, "GPU (W) (Jetson)": 7.141066804653988, "GB/s/W (PS)": 0.838506569984615, "GPU (W) (PS)": 8.23548087150196, "strategy_time": 0.02515699998184573, "framework_time": 2.292527000008704, "timestamp": "2023-11-03 11:22:18.059412+00:00"},
"2,32,1,2,2,1,1,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5333426339285716, "tegra_power": 7.358553837580272, "ps_energy": 2.923785895286918, "time": 360.29288591657365, "times": [360.2198486328125, 360.3282775878906, 360.400634765625, 360.4646911621094, 360.2761535644531, 360.1888122558594, 360.1717834472656], "compile_time": 970.6048859998191, "verification_time": 0, "benchmark_time": 2526.02517299988, "GB/s": 6.821117196771575, "GB/s/W (Jetson)": 0.9701017016355524, "GPU (W) (Jetson)": 7.031342368817048, "GB/s/W (PS)": 0.8405540241375402, "GPU (W) (PS)": 8.11502532959789, "strategy_time": 0.025572999902578886, "framework_time": 2.206017000389693, "timestamp": "2023-11-03 11:22:21.558325+00:00"},
"8,128,1,4,4,1,0,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4776785714285716, "tegra_power": 7.353207002264819, "ps_energy": 2.8829806160442137, "time": 353.2947736467634, "times": [353.2706298828125, 353.27593994140625, 353.1174621582031, 353.28729248046875, 353.367919921875, 353.3872985839844, 353.35687255859375], "compile_time": 1091.766907000192, "verification_time": 0, "benchmark_time": 2476.48107100008, "GB/s": 6.956230839851583, "GB/s/W (Jetson)": 0.991896216216216, "GPU (W) (Jetson)": 7.013063187585792, "GB/s/W (PS)": 0.8524511008929758, "GPU (W) (PS)": 8.160269641935658, "strategy_time": 0.025469000092925853, "framework_time": 2.7245639996635873, "timestamp": "2023-11-03 11:22:25.129666+00:00"},
"1,136,1,3,6,0,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9331752232142856, "tegra_power": 7.398955556683509, "ps_energy": 3.3907985344776534, "time": 410.89259120396207, "times": [410.936767578125, 411.06329345703125, 410.9153137207031, 410.98974609375, 410.6014099121094, 410.8538513183594, 410.88775634765625], "compile_time": 1080.726506000019, "verification_time": 0, "benchmark_time": 2879.6944309999617, "GB/s": 5.981125122745465, "GB/s/W (Jetson)": 0.8378633436385255, "GPU (W) (Jetson)": 7.138544928784792, "GB/s/W (PS)": 0.7247850248285508, "GPU (W) (PS)": 8.252274699191407, "strategy_time": 0.02635499981806788, "framework_time": 2.507217000129458, "timestamp": "2023-11-03 11:22:29.092679+00:00"},
"2,88,1,4,1,1,0,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.727818080357143, "tegra_power": 7.2243918344536455, "ps_energy": 3.1056022015356057, "time": 392.098397391183, "times": [392.216552734375, 392.13629150390625, 392.0481872558594, 392.106201171875, 392.0924072265625, 392.0782165527344, 392.01092529296875], "compile_time": 941.0224279999966, "verification_time": 0, "benchmark_time": 2755.7415690000653, "GB/s": 6.26781444747436, "GB/s/W (Jetson)": 0.9009398455479977, "GPU (W) (Jetson)": 6.956973296770945, "GB/s/W (PS)": 0.7913441067194013, "GPU (W) (PS)": 7.920466449744893, "strategy_time": 0.02479199997651449, "framework_time": 3.4731660000488773, "timestamp": "2023-11-03 11:22:32.792995+00:00"},
"2,232,1,1,8,0,1,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5732421875, "tegra_power": 7.315374845684377, "ps_energy": 2.936970311208175, "time": 366.2870875767299, "times": [366.1993103027344, 366.4159851074219, 366.33056640625, 366.2532958984375, 366.3189697265625, 366.2728271484375, 366.2186584472656], "compile_time": 929.8588500000733, "verification_time": 0, "benchmark_time": 2568.021750000071, "GB/s": 6.709491225199636, "GB/s/W (Jetson)": 0.955059734345351, "GPU (W) (Jetson)": 7.025205842018542, "GB/s/W (PS)": 0.8367806751812287, "GPU (W) (PS)": 8.018219617400348, "strategy_time": 0.027656999918690417, "framework_time": 2.659718999893812, "timestamp": "2023-11-03 11:22:36.293621+00:00"},
"2,144,1,2,2,1,1,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4926060267857144, "tegra_power": 7.374774665286749, "ps_energy": 2.8754368304076445, "time": 352.9911629813058, "times": [352.9828796386719, 352.9902648925781, 353.0157775878906, 352.942138671875, 352.86993408203125, 353.20489501953125, 352.9322509765625], "compile_time": 1136.57569399993, "verification_time": 0, "benchmark_time": 2475.387863999913, "GB/s": 6.962213952450001, "GB/s/W (Jetson)": 0.9859560530587115, "GPU (W) (Jetson)": 7.061383649759303, "GB/s/W (PS)": 0.8546875292167664, "GPU (W) (PS)": 8.145917325867803, "strategy_time": 0.02463499981786299, "framework_time": 2.8227950003838487, "timestamp": "2023-11-03 11:22:39.908522+00:00"},
"4,184,1,4,1,1,0,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4617745535714284, "tegra_power": 7.251475137715912, "ps_energy": 2.859797109917573, "time": 354.97532871791293, "times": [354.0458984375, 357.3169860839844, 354.0675964355469, 356.3598327636719, 353.86151123046875, 354.95208740234375, 354.223388671875], "compile_time": 937.693409999838, "verification_time": 0, "benchmark_time": 2493.857704999982, "GB/s": 6.923298046870667, "GB/s/W (Jetson)": 0.9983042502550152, "GPU (W) (Jetson)": 6.935058169993889, "GB/s/W (PS)": 0.859361662922596, "GPU (W) (PS)": 8.056326393855272, "strategy_time": 0.027448000082586077, "framework_time": 2.9835250002179237, "timestamp": "2023-11-03 11:22:43.343209+00:00"},
"8,104,1,2,7,1,0,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.604213169642857, "tegra_power": 7.258926546303793, "ps_energy": 2.954560994890666, "time": 373.6774422781808, "times": [373.69921875, 373.457763671875, 373.74920654296875, 373.5776062011719, 373.65765380859375, 373.7499084472656, 373.8507385253906], "compile_time": 1118.6498389999997, "verification_time": 0, "benchmark_time": 2618.928350000033, "GB/s": 6.576795176655222, "GB/s/W (Jetson)": 0.9437015481866394, "GPU (W) (Jetson)": 6.969147384883281, "GB/s/W (PS)": 0.8317987018206553, "GPU (W) (PS)": 7.906714884574621, "strategy_time": 0.026041999944936833, "framework_time": 3.5584289998951135, "timestamp": "2023-11-03 11:22:47.084427+00:00"},
"16,64,1,2,6,0,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.496372767857143, "tegra_power": 7.367970214497407, "ps_energy": 2.900732637697729, "time": 354.2499564034598, "times": [354.19390869140625, 354.0845947265625, 354.2486877441406, 354.22271728515625, 354.1656799316406, 354.2861328125, 354.5479736328125], "compile_time": 1119.0887430000203, "verification_time": 0, "benchmark_time": 2483.0782189999354, "GB/s": 6.93747438941392, "GB/s/W (Jetson)": 0.9844683581088632, "GPU (W) (Jetson)": 7.046924700292672, "GB/s/W (PS)": 0.8472342359517018, "GPU (W) (PS)": 8.18837824892785, "strategy_time": 0.025937999907910125, "framework_time": 2.9479010001978168, "timestamp": "2023-11-03 11:22:50.689623+00:00"},
"1,240,1,4,5,1,0,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.194614955357143, "tegra_power": 7.321369198085487, "ps_energy": 3.6559500198964088, "time": 452.3459952218192, "times": [452.3118896484375, 451.9806213378906, 452.828857421875, 452.29150390625, 451.80712890625, 452.6796875, 452.52227783203125], "compile_time": 1090.3893310000967, "verification_time": 0, "benchmark_time": 3169.666611999901, "GB/s": 5.433009302524838, "GB/s/W (Jetson)": 0.7692945892833748, "GPU (W) (Jetson)": 7.06232615984714, "GB/s/W (PS)": 0.6722192553577732, "GPU (W) (PS)": 8.082198269719669, "strategy_time": 0.025208999886672245, "framework_time": 3.2895700001063233, "timestamp": "2023-11-03 11:22:54.953331+00:00"},
"2,56,1,3,4,0,0,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8370535714285716, "tegra_power": 7.341777379814938, "ps_energy": 3.24416069146147, "time": 400.8135332380022, "times": [401.07275390625, 400.5002746582031, 401.1432189941406, 400.4599914550781, 400.9564208984375, 400.7561340332031, 400.8059387207031], "compile_time": 1088.411486999803, "verification_time": 0, "benchmark_time": 2816.663730000073, "GB/s": 6.131529492395363, "GB/s/W (Jetson)": 0.8662508261211643, "GPU (W) (Jetson)": 7.0782379739257335, "GB/s/W (PS)": 0.7575457055713445, "GPU (W) (PS)": 8.093940005601294, "strategy_time": 0.026302999913241365, "framework_time": 2.497737000339839, "timestamp": "2023-11-03 11:22:58.861273+00:00"},
"1,152,1,1,8,0,1,0": {"block_size_x": 1, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6798270089285716, "tegra_power": 7.335347665363613, "ps_energy": 3.0960420352275833, "time": 381.6635001046317, "times": [381.44671630859375, 381.5705261230469, 381.71954345703125, 381.578857421875, 381.7139587402344, 381.76129150390625, 381.8536071777344], "compile_time": 1085.299931999998, "verification_time": 0, "benchmark_time": 2675.3932230001283, "GB/s": 6.439180061300747, "GB/s/W (Jetson)": 0.9170741215055441, "GPU (W) (Jetson)": 7.021439063976269, "GB/s/W (PS)": 0.793787672142942, "GPU (W) (PS)": 8.11196783129331, "strategy_time": 0.025833999870883417, "framework_time": 2.3047670001687948, "timestamp": "2023-11-03 11:23:02.624356+00:00"},
"2,184,1,2,8,1,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5359933035714284, "tegra_power": 7.413680916815942, "ps_energy": 2.915603551320341, "time": 355.60550798688615, "times": [355.5101013183594, 355.47186279296875, 355.7431640625, 355.6162414550781, 355.5965576171875, 355.58099365234375, 355.7196350097656], "compile_time": 1116.4139940001405, "verification_time": 0, "benchmark_time": 2493.6556749999, "GB/s": 6.91102906114331, "GB/s/W (Jetson)": 0.969087732423809, "GPU (W) (Jetson)": 7.131479256122629, "GB/s/W (PS)": 0.8429129532672806, "GPU (W) (PS)": 8.198983103005988, "strategy_time": 0.0274479998552124, "framework_time": 2.9158160000406497, "timestamp": "2023-11-03 11:23:06.237447+00:00"},
"4,48,1,1,6,0,0,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6294642857142856, "tegra_power": 7.2845482508106585, "ps_energy": 3.0108388078912998, "time": 375.67537580217635, "times": [375.7068786621094, 375.7050476074219, 375.5458984375, 375.18365478515625, 375.8671875, 375.42364501953125, 376.2953186035156], "compile_time": 1085.4524719998153, "verification_time": 0, "benchmark_time": 2633.5574839999936, "GB/s": 6.54181817147932, "GB/s/W (Jetson)": 0.9346390492359932, "GPU (W) (Jetson)": 6.999299009416344, "GB/s/W (PS)": 0.8162509376319712, "GPU (W) (PS)": 8.014469411156592, "strategy_time": 0.0241150000874768, "framework_time": 3.2716020000407298, "timestamp": "2023-11-03 11:23:09.959878+00:00"},
"4,240,1,2,5,0,0,0": {"block_size_x": 4, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.528041294642857, "tegra_power": 7.261774830850679, "ps_energy": 2.9355213843539656, "time": 364.2037876674107, "times": [366.4784851074219, 364.04254150390625, 362.95208740234375, 362.9876708984375, 365.88006591796875, 363.43280029296875, 363.6528625488281], "compile_time": 1135.0257119997877, "verification_time": 0, "benchmark_time": 2552.9690590001337, "GB/s": 6.747870514307416, "GB/s/W (Jetson)": 0.9721360189834997, "GPU (W) (Jetson)": 6.941282271757847, "GB/s/W (PS)": 0.837193696867194, "GPU (W) (PS)": 8.060106686849371, "strategy_time": 0.028957999802514678, "framework_time": 3.3232180003324174, "timestamp": "2023-11-03 11:23:13.651308+00:00"},
"1,136,1,3,8,1,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6820591517857144, "tegra_power": 7.4401735260203425, "ps_energy": 3.0875914299446907, "time": 377.9701232910156, "times": [378.0243835449219, 377.3314514160156, 377.8351135253906, 378.2307434082031, 378.0377197265625, 378.19842529296875, 378.1330261230469], "compile_time": 1093.6567230000946, "verification_time": 0, "benchmark_time": 2649.067063000075, "GB/s": 6.502101220597763, "GB/s/W (Jetson)": 0.9163108868660597, "GPU (W) (Jetson)": 7.095955438045775, "GB/s/W (PS)": 0.7959602349472851, "GPU (W) (PS)": 8.168876955302151, "strategy_time": 0.02541699996072566, "framework_time": 3.5079099998256424, "timestamp": "2023-11-03 11:23:17.397929+00:00"},
"8,104,1,1,6,0,1,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.468052455357143, "tegra_power": 7.305683536782992, "ps_energy": 2.8685056330401233, "time": 353.4893319266183, "times": [353.6063537597656, 353.4313659667969, 353.3722839355469, 353.553955078125, 353.2509460449219, 353.56573486328125, 353.6446838378906], "compile_time": 1087.4436819999573, "verification_time": 0, "benchmark_time": 2477.9576949999864, "GB/s": 6.952402174643785, "GB/s/W (Jetson)": 0.9957648974054604, "GPU (W) (Jetson)": 6.981971540429661, "GB/s/W (PS)": 0.856752718799916, "GPU (W) (PS)": 8.114829427541546, "strategy_time": 0.026823999633052154, "framework_time": 2.902644000641885, "timestamp": "2023-11-03 11:23:20.966601+00:00"},
"1,104,1,1,8,0,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.580775669642857, "tegra_power": 7.457694763515271, "ps_energy": 2.9998853543885553, "time": 362.05618722098217, "times": [361.99462890625, 361.9685974121094, 361.92718505859375, 362.08306884765625, 362.4876708984375, 361.9800109863281, 361.9521484375], "compile_time": 1064.559539000129, "verification_time": 0, "benchmark_time": 2538.4722599997076, "GB/s": 6.787896704275891, "GB/s/W (Jetson)": 0.952271841721174, "GPU (W) (Jetson)": 7.128108179705468, "GB/s/W (PS)": 0.8192313070913719, "GPU (W) (PS)": 8.2856900676512, "strategy_time": 0.024480000320181716, "framework_time": 2.7774840000347467, "timestamp": "2023-11-03 11:23:24.572493+00:00"},
"4,120,1,3,7,0,1,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.520786830357143, "tegra_power": 7.354765569338545, "ps_energy": 2.9292437085293517, "time": 359.0921194893973, "times": [359.1593322753906, 359.0098571777344, 359.1070861816406, 359.03125, 359.1573486328125, 359.07464599609375, 359.1053161621094], "compile_time": 1073.428278999927, "verification_time": 0, "benchmark_time": 2516.804595999929, "GB/s": 6.843926298061142, "GB/s/W (Jetson)": 0.9749336875311306, "GPU (W) (Jetson)": 7.019889029983496, "GB/s/W (PS)": 0.8389878905752967, "GPU (W) (PS)": 8.157360046482005, "strategy_time": 0.027293000130157452, "framework_time": 3.3907840002029843, "timestamp": "2023-11-03 11:23:28.166529+00:00"},
"1,80,1,2,3,0,1,0": {"block_size_x": 1, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9379185267857144, "tegra_power": 7.233143226407681, "ps_energy": 3.403429442408846, "time": 422.28226579938615, "times": [423.1905212402344, 422.3833923339844, 422.1986083984375, 422.2840576171875, 422.1501159667969, 421.8122253417969, 421.9569396972656], "compile_time": 943.24389600024, "verification_time": 0, "benchmark_time": 2961.0822859999644, "GB/s": 5.819803953518457, "GB/s/W (Jetson)": 0.8365106035424283, "GPU (W) (Jetson)": 6.957238711467539, "GB/s/W (PS)": 0.7220951812242018, "GPU (W) (PS)": 8.059607798035533, "strategy_time": 0.05916899999647285, "framework_time": 4.035074999592325, "timestamp": "2023-11-03 11:23:32.075304+00:00"},
"1,240,1,3,6,0,0,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9588448660714284, "tegra_power": 7.483297293019727, "ps_energy": 3.410692086862192, "time": 410.5165797642299, "times": [410.3851013183594, 410.5005798339844, 410.4732666015625, 410.60113525390625, 410.5431823730469, 410.62921142578125, 410.48358154296875], "compile_time": 1080.9607870000946, "verification_time": 0, "benchmark_time": 2877.7227650002715, "GB/s": 5.9866035165046485, "GB/s/W (Jetson)": 0.830594408034325, "GPU (W) (Jetson)": 7.207613557948788, "GB/s/W (PS)": 0.7205575693761822, "GPU (W) (PS)": 8.308293148162345, "strategy_time": 0.02817799986587488, "framework_time": 2.872433999527857, "timestamp": "2023-11-03 11:23:36.036948+00:00"},
"1,56,1,2,7,1,1,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0369698660714284, "tegra_power": 7.3188334663027375, "ps_energy": 3.480186171514236, "time": 431.0472106933594, "times": [430.5613098144531, 430.7763671875, 431.1478576660156, 431.27581787109375, 431.1717834472656, 431.3681335449219, 431.0292053222656], "compile_time": 1122.695066000233, "verification_time": 0, "benchmark_time": 3021.117710999988, "GB/s": 5.701463642571394, "GB/s/W (Jetson)": 0.8092276540033994, "GPU (W) (Jetson)": 7.045562042232733, "GB/s/W (PS)": 0.7061691182258486, "GPU (W) (PS)": 8.073793508409892, "strategy_time": 0.027241000225330936, "framework_time": 3.22983999922144, "timestamp": "2023-11-03 11:23:40.184086+00:00"},
"1,64,1,2,4,1,0,0": {"block_size_x": 1, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5439453125, "tegra_power": 7.396229358604613, "ps_energy": 2.9612907607165004, "time": 358.6677943638393, "times": [358.7033386230469, 358.5108337402344, 358.6948547363281, 358.6030578613281, 358.7007141113281, 358.76092529296875, 358.7008361816406], "compile_time": 961.5088669997931, "verification_time": 0, "benchmark_time": 2514.0920839999126, "GB/s": 6.852023065965507, "GB/s/W (Jetson)": 0.9660585028790786, "GPU (W) (Jetson)": 7.092762027915377, "GB/s/W (PS)": 0.8299083739434523, "GPU (W) (PS)": 8.256360920190431, "strategy_time": 0.02573000028860406, "framework_time": 2.801230999921245, "timestamp": "2023-11-03 11:23:43.662580+00:00"},
"8,96,1,2,6,1,1,0": {"block_size_x": 8, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4683314732142856, "tegra_power": 7.3014462524973265, "ps_energy": 2.8597731665696693, "time": 354.07210867745533, "times": [353.8826599121094, 353.9844665527344, 354.13677978515625, 354.0272521972656, 354.2572937011719, 354.2058410644531, 354.0104675292969], "compile_time": 1135.837582000022, "verification_time": 0, "benchmark_time": 2482.424809999884, "GB/s": 6.940959030011509, "GB/s/W (Jetson)": 0.9956523370824619, "GPU (W) (Jetson)": 6.97126775230644, "GB/s/W (PS)": 0.8593688578971874, "GPU (W) (PS)": 8.076810052199852, "strategy_time": 0.025677999929030193, "framework_time": 2.79649200001586, "timestamp": "2023-11-03 11:23:47.284006+00:00"},
"4,120,1,4,7,0,1,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.542271205357143, "tegra_power": 7.377892856378907, "ps_energy": 2.969082460395449, "time": 361.9374520438058, "times": [361.8176574707031, 362.33709716796875, 361.9416198730469, 361.80157470703125, 361.960205078125, 361.7367858886719, 361.96722412109375], "compile_time": 1082.6383560001887, "verification_time": 0, "benchmark_time": 2537.1132809996197, "GB/s": 6.790123503722275, "GB/s/W (Jetson)": 0.9666946605937551, "GPU (W) (Jetson)": 7.02406228203609, "GB/s/W (PS)": 0.8277304631251887, "GPU (W) (PS)": 8.203302652514934, "strategy_time": 0.025470000309724128, "framework_time": 2.740292999533267, "timestamp": "2023-11-03 11:23:50.906579+00:00"},
"4,200,1,2,4,0,0,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.475864955357143, "tegra_power": 7.352802284065196, "ps_energy": 2.8465240814561446, "time": 352.3367004394531, "times": [352.1205139160156, 352.46441650390625, 352.1504211425781, 352.4256286621094, 352.3222961425781, 352.6650390625, 352.2085876464844], "compile_time": 1133.5604149999199, "verification_time": 0, "benchmark_time": 2469.83642899977, "GB/s": 6.975146207973084, "GB/s/W (Jetson)": 0.9926227982194173, "GPU (W) (Jetson)": 7.026985699386728, "GB/s/W (PS)": 0.8633687717627915, "GPU (W) (PS)": 8.078988302682655, "strategy_time": 0.04057500018461724, "framework_time": 3.4360939998805407, "timestamp": "2023-11-03 11:23:54.513509+00:00"},
"1,40,1,3,3,1,0,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 4.350306919642857, "tegra_power": 7.0832963268054305, "ps_energy": 4.94886530578151, "time": 630.2999267578125, "times": [630.2476196289062, 630.177001953125, 630.29541015625, 630.4308471679688, 630.4224243164062, 630.4126586914062, 630.113525390625], "compile_time": 1082.4683529999675, "verification_time": 0, "benchmark_time": 4415.6783509997695, "GB/s": 3.899096121812357, "GB/s/W (Jetson)": 0.5649256582112048, "GPU (W) (Jetson)": 6.901963232044648, "GB/s/W (PS)": 0.4965986843749636, "GPU (W) (PS)": 7.851603809059413, "strategy_time": 0.02791699989757035, "framework_time": 2.877432000332192, "timestamp": "2023-11-03 11:24:00.014911+00:00"},
"4,96,1,4,4,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.547154017857143, "tegra_power": 7.407130460369588, "ps_energy": 2.934839030126958, "time": 358.1819501604353, "times": [358.1181335449219, 357.96197509765625, 357.90631103515625, 358.1330871582031, 358.4330749511719, 358.4100646972656, 358.3110046386719], "compile_time": 1078.7442939999892, "verification_time": 0, "benchmark_time": 2510.522401000344, "GB/s": 6.861317268776951, "GB/s/W (Jetson)": 0.9648415379559645, "GPU (W) (Jetson)": 7.111341084374108, "GB/s/W (PS)": 0.8373883455862609, "GPU (W) (PS)": 8.193710009151488, "strategy_time": 0.02687599999262602, "framework_time": 2.5690369993753848, "timestamp": "2023-11-03 11:24:03.606831+00:00"},
"4,152,1,1,5,0,0,0": {"block_size_x": 4, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.499720982142857, "tegra_power": 7.367654950770599, "ps_energy": 2.846956649150473, "time": 356.5896998814174, "times": [356.5526123046875, 356.59765625, 357.28057861328125, 356.4938049316406, 356.4888610839844, 356.45098876953125, 356.2633972167969], "compile_time": 1081.3759689999642, "verification_time": 0, "benchmark_time": 2501.4825169996584, "GB/s": 6.891954537153668, "GB/s/W (Jetson)": 0.9831497265319789, "GPU (W) (Jetson)": 7.010076238809281, "GB/s/W (PS)": 0.8632375911777032, "GPU (W) (PS)": 7.983844317705245, "strategy_time": 0.02526099979149876, "framework_time": 2.6366950005467515, "timestamp": "2023-11-03 11:24:07.192406+00:00"},
"2,176,1,2,8,1,0,0": {"block_size_x": 2, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.534458705357143, "tegra_power": 7.470316684676452, "ps_energy": 2.9237986440275563, "time": 355.03604561941967, "times": [355.0079040527344, 354.98553466796875, 355.0203552246094, 354.96234130859375, 355.2015075683594, 355.0150451660156, 355.05963134765625], "compile_time": 957.0774100002382, "verification_time": 0, "benchmark_time": 2488.9124329997685, "GB/s": 6.922114051017852, "GB/s/W (Jetson)": 0.9696745087246105, "GPU (W) (Jetson)": 7.138595465526202, "GB/s/W (PS)": 0.8405503590406745, "GPU (W) (PS)": 8.23521633958744, "strategy_time": 0.027656999918690417, "framework_time": 2.947744999801216, "timestamp": "2023-11-03 11:24:10.641429+00:00"},
"8,64,1,4,3,1,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5057198660714284, "tegra_power": 7.376890491447407, "ps_energy": 2.9125993632174607, "time": 356.0975864955357, "times": [355.7292175292969, 355.7104797363281, 356.25079345703125, 356.1389465332031, 356.7813415527344, 356.0247802734375, 356.04754638671875], "compile_time": 1087.6721650001855, "verification_time": 0, "benchmark_time": 2498.335767000299, "GB/s": 6.901478957456539, "GB/s/W (Jetson)": 0.9807959913145148, "GPU (W) (Jetson)": 7.036610078520826, "GB/s/W (PS)": 0.8437823722124155, "GPU (W) (PS)": 8.179216803689219, "strategy_time": 0.02541699996072566, "framework_time": 2.571221999460249, "timestamp": "2023-11-03 11:24:14.230087+00:00"},
"4,176,1,4,8,1,0,0": {"block_size_x": 4, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5167410714285716, "tegra_power": 7.379868947106475, "ps_energy": 2.9097420242326604, "time": 357.5943385532924, "times": [356.8811950683594, 357.9554748535156, 357.8194274902344, 358.39556884765625, 357.4800109863281, 357.0140075683594, 357.61468505859375], "compile_time": 1081.3181510002323, "verification_time": 0, "benchmark_time": 2506.6243769997527, "GB/s": 6.872592026883398, "GB/s/W (Jetson)": 0.976500931263858, "GPU (W) (Jetson)": 7.037977954602043, "GB/s/W (PS)": 0.8446109584742666, "GPU (W) (PS)": 8.136991306977922, "strategy_time": 0.026927999897452537, "framework_time": 2.8810759999942093, "timestamp": "2023-11-03 11:24:17.821368+00:00"},
"2,208,1,3,6,1,1,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.564732142857143, "tegra_power": 7.541213481539253, "ps_energy": 2.976126427665804, "time": 357.7664097377232, "times": [357.59912109375, 357.6689147949219, 357.7838134765625, 357.9473571777344, 357.8435363769531, 357.6094665527344, 357.91265869140625], "compile_time": 1077.0463919998292, "verification_time": 0, "benchmark_time": 2508.543575999738, "GB/s": 6.869286587865122, "GB/s/W (Jetson)": 0.9582287206266318, "GPU (W) (Jetson)": 7.168733768878233, "GB/s/W (PS)": 0.8257713708511745, "GPU (W) (PS)": 8.318630107973489, "strategy_time": 0.028230000225448748, "framework_time": 3.5328660005689017, "timestamp": "2023-11-03 11:24:21.410593+00:00"},
"4,240,1,2,7,1,1,0": {"block_size_x": 4, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.488560267857143, "tegra_power": 7.285125223831782, "ps_energy": 2.9011499159600396, "time": 359.29053170340404, "times": [359.1358337402344, 359.26812744140625, 359.434326171875, 359.34918212890625, 359.2724914550781, 359.23193359375, 359.3418273925781], "compile_time": 973.401370999909, "verification_time": 0, "benchmark_time": 2519.4095669999115, "GB/s": 6.84014685371325, "GB/s/W (Jetson)": 0.987558964009418, "GPU (W) (Jetson)": 6.926317417992692, "GB/s/W (PS)": 0.8471123765373353, "GPU (W) (PS)": 8.07466287020041, "strategy_time": 0.026927999897452537, "framework_time": 2.933575000042765, "timestamp": "2023-11-03 11:24:24.906433+00:00"},
"4,224,1,1,8,0,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4716796875, "tegra_power": 7.303122401971215, "ps_energy": 2.873176556784009, "time": 356.02538626534596, "times": [355.5128173828125, 356.19207763671875, 357.4478759765625, 355.587646484375, 355.8506164550781, 355.1640625, 356.422607421875], "compile_time": 1083.943391000048, "verification_time": 0, "benchmark_time": 2495.637901000009, "GB/s": 6.902878544083227, "GB/s/W (Jetson)": 0.9943035954168312, "GPU (W) (Jetson)": 6.942425407995641, "GB/s/W (PS)": 0.8553598957214205, "GPU (W) (PS)": 8.07014518521617, "strategy_time": 0.04213700003674603, "framework_time": 3.9385009999932663, "timestamp": "2023-11-03 11:24:28.490067+00:00"},
"4,256,1,2,2,0,0,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4857700892857144, "tegra_power": 7.409821771838447, "ps_energy": 2.889434768696966, "time": 350.7676086425781, "times": [350.6783752441406, 350.79693603515625, 350.8250427246094, 350.5295715332031, 351.0321350097656, 350.786865234375, 350.7243347167969], "compile_time": 1130.0302519998695, "verification_time": 0, "benchmark_time": 2459.59396499984, "GB/s": 7.006348190217934, "GB/s/W (Jetson)": 0.9886674598720394, "GPU (W) (Jetson)": 7.086658026678402, "GB/s/W (PS)": 0.8505469743164651, "GPU (W) (PS)": 8.237461776697902, "strategy_time": 0.02791699989757035, "framework_time": 2.984360000482411, "timestamp": "2023-11-03 11:24:32.083129+00:00"},
"1,240,1,2,4,1,0,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.530552455357143, "tegra_power": 7.395911731805769, "ps_energy": 2.942375455723387, "time": 359.3326154436384, "times": [359.24639892578125, 359.42657470703125, 359.2825622558594, 359.2872009277344, 359.3840637207031, 359.3450012207031, 359.35650634765625], "compile_time": 1115.8487210000203, "verification_time": 0, "benchmark_time": 2518.9122529995984, "GB/s": 6.839345760378037, "GB/s/W (Jetson)": 0.9711713324880092, "GPU (W) (Jetson)": 7.042367841374148, "GB/s/W (PS)": 0.8352435088525422, "GPU (W) (PS)": 8.188445271216692, "strategy_time": 0.025781999738683226, "framework_time": 3.2477000004291767, "timestamp": "2023-11-03 11:24:35.721262+00:00"},
"1,232,1,3,8,0,1,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8738839285714284, "tegra_power": 7.304463223184986, "ps_energy": 3.286488749461049, "time": 407.90894862583707, "times": [407.83306884765625, 407.9579162597656, 407.942138671875, 407.9046325683594, 407.9855651855469, 407.9932861328125, 407.74603271484375], "compile_time": 1076.571148000312, "verification_time": 0, "benchmark_time": 2859.1501850000896, "GB/s": 6.024873953560368, "GB/s/W (Jetson)": 0.8551493592233009, "GPU (W) (Jetson)": 7.045405447105202, "GB/s/W (PS)": 0.7477889587794941, "GPU (W) (PS)": 8.056917507038193, "strategy_time": 0.02937499994004611, "framework_time": 3.990013999555231, "timestamp": "2023-11-03 11:24:39.661086+00:00"},
"4,56,1,1,3,0,1,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.437779017857143, "tegra_power": 7.331336986775684, "ps_energy": 2.8445573613810535, "time": 352.2164742606027, "times": [352.1955871582031, 352.2676086425781, 352.16363525390625, 352.0984802246094, 352.1713562011719, 352.2449035644531, 352.3737487792969], "compile_time": 1093.1470239997907, "verification_time": 0, "benchmark_time": 2469.1735669998707, "GB/s": 6.977527116410907, "GB/s/W (Jetson)": 1.0081307542634772, "GPU (W) (Jetson)": 6.921252116258042, "GB/s/W (PS)": 0.8639657028420116, "GPU (W) (PS)": 8.07616215951439, "strategy_time": 0.04234500011079945, "framework_time": 3.367285999956948, "timestamp": "2023-11-03 11:24:43.226883+00:00"},
"4,248,1,4,3,1,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.565708705357143, "tegra_power": 7.364292220136794, "ps_energy": 2.9972696351968415, "time": 365.9976893833705, "times": [365.86822509765625, 366.0474548339844, 366.4258728027344, 366.02581787109375, 365.7803039550781, 365.9806213378906, 365.85552978515625], "compile_time": 1078.2422549996227, "verification_time": 0, "benchmark_time": 2566.2336169998525, "GB/s": 6.714796489946538, "GB/s/W (Jetson)": 0.9578639986950138, "GPU (W) (Jetson)": 7.010177331118743, "GB/s/W (PS)": 0.8199462507945503, "GPU (W) (PS)": 8.189312998796833, "strategy_time": 0.027135999971505953, "framework_time": 2.873676000490377, "timestamp": "2023-11-03 11:24:46.874316+00:00"},
"16,32,1,3,8,0,1,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5888671875, "tegra_power": 7.518104753127278, "ps_energy": 2.983807826032197, "time": 360.63209751674106, "times": [360.49041748046875, 360.8669738769531, 360.6358947753906, 360.5169372558594, 360.5272521972656, 360.77459716796875, 360.61260986328125], "compile_time": 1084.7538900002291, "verification_time": 0, "benchmark_time": 2528.1571299997267, "GB/s": 6.814701234090552, "GB/s/W (Jetson)": 0.9492955111278761, "GPU (W) (Jetson)": 7.178693203756831, "GB/s/W (PS)": 0.8236455372757914, "GPU (W) (PS)": 8.273827666972112, "strategy_time": 0.03151199962303508, "framework_time": 20.9987840003123, "timestamp": "2023-11-03 11:24:50.508332+00:00"},
"1,192,1,2,2,0,1,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5126953125, "tegra_power": 7.354314353984165, "ps_energy": 2.9002286114186324, "time": 357.18870326450894, "times": [357.1768798828125, 357.2174987792969, 357.2145690917969, 357.2144775390625, 357.2421875, 357.1573486328125, 357.09796142578125], "compile_time": 1120.015830000284, "verification_time": 0, "benchmark_time": 2503.8373630000024, "GB/s": 6.880396769379554, "GB/s/W (Jetson)": 0.9780732219199377, "GPU (W) (Jetson)": 7.034643843815166, "GB/s/W (PS)": 0.8473814754892295, "GPU (W) (PS)": 8.11959780617957, "strategy_time": 0.025470000309724128, "framework_time": 2.7251819997218263, "timestamp": "2023-11-03 11:24:54.135334+00:00"},
"1,256,1,4,7,0,1,0": {"block_size_x": 1, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5230189732142856, "tegra_power": 7.362551909093141, "ps_energy": 2.9235092481456895, "time": 361.44201224190846, "times": [361.4579162597656, 361.43218994140625, 361.4846496582031, 361.5211486816406, 361.3404235839844, 361.3823547363281, 361.47540283203125], "compile_time": 946.4382279998063, "verification_time": 0, "benchmark_time": 2533.1702890002816, "GB/s": 6.79943093708531, "GB/s/W (Jetson)": 0.9740711528891346, "GPU (W) (Jetson)": 6.9804253179225375, "GB/s/W (PS)": 0.8406335644598338, "GPU (W) (PS)": 8.088459971800463, "strategy_time": 0.02458400012983475, "framework_time": 2.3732979998385417, "timestamp": "2023-11-03 11:24:57.617397+00:00"},
"8,88,1,1,6,0,0,0": {"block_size_x": 8, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.545619419642857, "tegra_power": 7.3334592116932145, "ps_energy": 2.955246374912739, "time": 362.9795139857701, "times": [363.01446533203125, 363.1194152832031, 362.9949951171875, 362.9370422363281, 362.9156799316406, 362.9696960449219, 362.9053039550781], "compile_time": 1082.8501589999178, "verification_time": 0, "benchmark_time": 2549.2945999999392, "GB/s": 6.770630036427745, "GB/s/W (Jetson)": 0.9654231818929138, "GPU (W) (Jetson)": 7.013121461567258, "GB/s/W (PS)": 0.8316057912675949, "GPU (W) (PS)": 8.141634062104655, "strategy_time": 0.02572999983385671, "framework_time": 2.60309600025721, "timestamp": "2023-11-03 11:25:01.252227+00:00"},
"1,160,1,2,8,1,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.607421875, "tegra_power": 7.4838676836692075, "ps_energy": 3.0123527562373056, "time": 366.2401384626116, "times": [366.23394775390625, 366.41522216796875, 366.0897521972656, 366.49151611328125, 366.0345764160156, 366.219482421875, 366.19647216796875], "compile_time": 955.3085970001121, "verification_time": 0, "benchmark_time": 2567.316572999971, "GB/s": 6.710351329366618, "GB/s/W (Jetson)": 0.942540224719101, "GPU (W) (Jetson)": 7.119432310028421, "GB/s/W (PS)": 0.8158407062092419, "GPU (W) (PS)": 8.225075407852458, "strategy_time": 0.0272929996754101, "framework_time": 2.924875000189786, "timestamp": "2023-11-03 11:25:04.778224+00:00"},
"2,216,1,2,7,0,0,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.911411830357143, "tegra_power": 7.2308275089367635, "ps_energy": 3.3755427189444163, "time": 418.64427403041293, "times": [420.8137512207031, 417.5939025878906, 417.7508239746094, 420.6018371582031, 416.459228515625, 416.53729248046875, 420.7530822753906], "compile_time": 1137.6771700001882, "verification_time": 0, "benchmark_time": 2934.122051000031, "GB/s": 5.870377674917069, "GB/s/W (Jetson)": 0.8441265417605059, "GPU (W) (Jetson)": 6.954381108161627, "GB/s/W (PS)": 0.7280607015302502, "GPU (W) (PS)": 8.063033291837632, "strategy_time": 0.03557400032150326, "framework_time": 3.060660999835818, "timestamp": "2023-11-03 11:25:08.853487+00:00"},
"16,40,1,2,4,0,1,0": {"block_size_x": 16, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5015345982142856, "tegra_power": 7.434133596588421, "ps_energy": 2.881756344389682, "time": 354.0388401576451, "times": [353.82452392578125, 353.8580322265625, 353.90057373046875, 354.10589599609375, 354.2541809082031, 354.2167053222656, 354.1119689941406], "compile_time": 1129.8821310001586, "verification_time": 0, "benchmark_time": 2484.2778249999355, "GB/s": 6.941611261932981, "GB/s/W (Jetson)": 0.982436941609503, "GPU (W) (Jetson)": 7.065706680940463, "GB/s/W (PS)": 0.852813252162888, "GPU (W) (PS)": 8.139661578109633, "strategy_time": 0.030262000109360088, "framework_time": 2.621842999360524, "timestamp": "2023-11-03 11:25:12.470642+00:00"},
"4,112,1,3,7,1,0,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.734095982142857, "tegra_power": 7.3444432825072505, "ps_energy": 3.1538564016432895, "time": 388.3882577078683, "times": [387.9716796875, 388.0746765136719, 390.0825500488281, 388.1236877441406, 388.20465087890625, 388.22259521484375, 388.0379638671875], "compile_time": 1084.487973999785, "verification_time": 0, "benchmark_time": 2724.4577659998868, "GB/s": 6.327688727007081, "GB/s/W (Jetson)": 0.8988711501173589, "GPU (W) (Jetson)": 7.039594858707973, "GB/s/W (PS)": 0.7792364924159162, "GPU (W) (PS)": 8.120370116893458, "strategy_time": 0.027448000309959752, "framework_time": 2.6373659998171206, "timestamp": "2023-11-03 11:25:16.282604+00:00"},
"4,72,1,1,2,0,0,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4764229910714284, "tegra_power": 7.373849507364893, "ps_energy": 2.8552219243665604, "time": 351.7309875488281, "times": [351.7437438964844, 351.6877746582031, 351.71954345703125, 351.7426452636719, 351.84100341796875, 351.7250671386719, 351.6571350097656], "compile_time": 1116.7520430003606, "verification_time": 0, "benchmark_time": 2465.198860000328, "GB/s": 6.987158046911718, "GB/s/W (Jetson)": 0.9923991211762717, "GPU (W) (Jetson)": 7.040673351896939, "GB/s/W (PS)": 0.8607386974114896, "GPU (W) (PS)": 8.1176297381822, "strategy_time": 0.026979999802279053, "framework_time": 2.640283999426174, "timestamp": "2023-11-03 11:25:19.867281+00:00"},
"4,208,1,1,5,0,1,0": {"block_size_x": 4, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.454380580357143, "tegra_power": 7.281889722899453, "ps_energy": 2.830889200927621, "time": 351.7425013950893, "times": [351.7636413574219, 351.6991271972656, 351.6815185546875, 351.6982727050781, 351.6395263671875, 351.8652038574219, 351.8502197265625], "compile_time": 1078.0872590003128, "verification_time": 0, "benchmark_time": 2465.8149840001897, "GB/s": 6.986929331123221, "GB/s/W (Jetson)": 1.0013117035184447, "GPU (W) (Jetson)": 6.977776557062401, "GB/s/W (PS)": 0.8681371207303689, "GPU (W) (PS)": 8.04818635706428, "strategy_time": 0.030209000215108972, "framework_time": 2.869663999263139, "timestamp": "2023-11-03 11:25:23.414137+00:00"},
"2,208,1,1,1,0,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4568917410714284, "tegra_power": 7.356658465016414, "ps_energy": 2.795961526501612, "time": 351.4511064801897, "times": [351.38885498046875, 351.3408203125, 351.46490478515625, 351.3736877441406, 351.4427490234375, 351.57244873046875, 351.57427978515625], "compile_time": 1072.2453739999764, "verification_time": 0, "benchmark_time": 2463.8806319999276, "GB/s": 6.992722329467264, "GB/s/W (Jetson)": 1.0002882743739707, "GPU (W) (Jetson)": 6.990707087757928, "GB/s/W (PS)": 0.878982052043835, "GPU (W) (PS)": 7.955477945434245, "strategy_time": 0.02599099980216124, "framework_time": 2.6828350005416723, "timestamp": "2023-11-03 11:25:26.953027+00:00"},
"16,64,1,2,7,0,0,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.610072544642857, "tegra_power": 7.380263434234425, "ps_energy": 3.021216955917615, "time": 372.1904296875, "times": [372.54290771484375, 372.8083801269531, 370.85589599609375, 372.1556396484375, 372.79254150390625, 371.2427978515625, 372.9348449707031], "compile_time": 979.4285240000136, "verification_time": 0, "benchmark_time": 2609.082386999944, "GB/s": 6.603071449374611, "GB/s/W (Jetson)": 0.9415830242129455, "GPU (W) (Jetson)": 7.012734171682858, "GB/s/W (PS)": 0.8134470433135671, "GPU (W) (PS)": 8.117395598952669, "strategy_time": 0.025990000267483993, "framework_time": 2.5689779999993334, "timestamp": "2023-11-03 11:25:30.544486+00:00"},
"16,48,1,4,5,1,1,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.489536830357143, "tegra_power": 7.353726700266721, "ps_energy": 2.906157901282963, "time": 355.9357169015067, "times": [355.7886047363281, 355.8530578613281, 355.85479736328125, 356.0097961425781, 356.0801696777344, 355.93780517578125, 356.0257873535156], "compile_time": 1077.4507250002898, "verification_time": 0, "benchmark_time": 2494.699908000257, "GB/s": 6.9046175567709565, "GB/s/W (Jetson)": 0.9871715774726814, "GPU (W) (Jetson)": 6.9943439563443395, "GB/s/W (PS)": 0.845652605082146, "GPU (W) (PS)": 8.164839220356031, "strategy_time": 0.028542000109155197, "framework_time": 3.0264909992183675, "timestamp": "2023-11-03 11:25:34.120034+00:00"},
"4,48,1,4,2,1,1,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.498046875, "tegra_power": 7.404365444020115, "ps_energy": 2.901468573276101, "time": 355.55479213169644, "times": [355.55780029296875, 355.6019287109375, 355.5857238769531, 355.5433349609375, 355.55816650390625, 355.5315246582031, 355.50506591796875], "compile_time": 1133.6811290002515, "verification_time": 0, "benchmark_time": 2492.814245000318, "GB/s": 6.912014840991686, "GB/s/W (Jetson)": 0.9838086004691164, "GPU (W) (Jetson)": 7.0257719211803815, "GB/s/W (PS)": 0.8470193413899634, "GPU (W) (PS)": 8.160397883770909, "strategy_time": 0.026824000087799504, "framework_time": 2.7842429994962004, "timestamp": "2023-11-03 11:25:37.749697+00:00"},
"1,56,1,2,6,0,1,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0546875, "tegra_power": 7.3564220539329686, "ps_energy": 3.502303929934247, "time": 432.12708827427457, "times": [431.81854248046875, 432.2577209472656, 432.3208312988281, 432.26025390625, 432.3760986328125, 431.5971984863281, 432.25897216796875], "compile_time": 1003.6906230002387, "verification_time": 0, "benchmark_time": 3028.1812910002373, "GB/s": 5.687215790647544, "GB/s/W (Jetson)": 0.8045340153452685, "GPU (W) (Jetson)": 7.068956292925485, "GB/s/W (PS)": 0.7017095172680058, "GPU (W) (PS)": 8.104800705553792, "strategy_time": 0.027239999781158986, "framework_time": 2.59496799981207, "timestamp": "2023-11-03 11:25:41.784252+00:00"},
"4,240,1,2,2,1,0,0": {"block_size_x": 4, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.605747767857143, "tegra_power": 7.258735022795508, "ps_energy": 3.003342495390825, "time": 375.3044215611049, "times": [375.2241516113281, 374.5559387207031, 375.1329040527344, 375.5601501464844, 375.46087646484375, 376.1123046875, 375.0846252441406], "compile_time": 1071.3119499996537, "verification_time": 0, "benchmark_time": 2630.2965019999647, "GB/s": 6.5482841629668025, "GB/s/W (Jetson)": 0.9431457757789913, "GPU (W) (Jetson)": 6.9430244307230735, "GB/s/W (PS)": 0.8182882917188544, "GPU (W) (PS)": 8.002417032280656, "strategy_time": 0.0276050000138639, "framework_time": 3.290871000444895, "timestamp": "2023-11-03 11:25:45.489236+00:00"},
"2,72,1,2,6,1,1,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7759486607142856, "tegra_power": 7.300513366605642, "ps_energy": 3.2000038797385577, "time": 397.73975045340404, "times": [397.9131164550781, 397.640625, 397.80938720703125, 397.60589599609375, 397.7825622558594, 397.7551574707031, 397.6715087890625], "compile_time": 1114.043061999837, "verification_time": 0, "benchmark_time": 2787.370256000031, "GB/s": 6.178914723002805, "GB/s/W (Jetson)": 0.8853189667303246, "GPU (W) (Jetson)": 6.979309102371182, "GB/s/W (PS)": 0.767999068863875, "GPU (W) (PS)": 8.045471633375112, "strategy_time": 0.027709999812941533, "framework_time": 3.2371180004702182, "timestamp": "2023-11-03 11:25:49.393971+00:00"},
"8,120,1,2,1,0,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5142299107142856, "tegra_power": 7.372540674242317, "ps_energy": 2.8891727028954586, "time": 356.5997532435826, "times": [356.6514587402344, 356.6855773925781, 356.59014892578125, 356.5917663574219, 356.54443359375, 356.5480651855469, 356.5868225097656], "compile_time": 1122.4240080000527, "verification_time": 0, "benchmark_time": 2499.7817600001326, "GB/s": 6.891760237201529, "GB/s/W (Jetson)": 0.9774762401509266, "GPU (W) (Jetson)": 7.050565480893337, "GB/s/W (PS)": 0.8506241241781957, "GPU (W) (PS)": 8.102004212330318, "strategy_time": 0.026824000087799504, "framework_time": 3.2919639997999184, "timestamp": "2023-11-03 11:25:53.019554+00:00"},
"4,176,1,2,6,0,1,0": {"block_size_x": 4, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.474330357142857, "tegra_power": 7.30504198555785, "ps_energy": 2.854862377244769, "time": 354.2009800502232, "times": [354.10009765625, 354.1067199707031, 354.22686767578125, 354.1805114746094, 354.2143249511719, 354.3598937988281, 354.21844482421875], "compile_time": 1113.922212000034, "verification_time": 0, "benchmark_time": 2482.859551999809, "GB/s": 6.9384336532652435, "GB/s/W (Jetson)": 0.9932384303112313, "GPU (W) (Jetson)": 6.98566773246086, "GB/s/W (PS)": 0.8608471005778683, "GPU (W) (PS)": 8.060006996140919, "strategy_time": 0.028385999939928297, "framework_time": 3.353685000547557, "timestamp": "2023-11-03 11:25:56.619775+00:00"},
"4,120,1,2,6,0,0,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.584263392857143, "tegra_power": 7.429442229192624, "ps_energy": 2.9814128112650775, "time": 364.6450456891741, "times": [364.5182189941406, 364.6109313964844, 364.6808776855469, 364.7005615234375, 364.65838623046875, 364.6566162109375, 364.6897277832031], "compile_time": 962.8890229996614, "verification_time": 0, "benchmark_time": 2555.59842699995, "GB/s": 6.739704896730928, "GB/s/W (Jetson)": 0.9509866551500755, "GPU (W) (Jetson)": 7.087065691439522, "GB/s/W (PS)": 0.8243071844040233, "GPU (W) (PS)": 8.17620545380028, "strategy_time": 0.02515699998184573, "framework_time": 3.0051330004425836, "timestamp": "2023-11-03 11:26:00.141346+00:00"},
"2,88,1,1,6,0,0,0": {"block_size_x": 2, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.810546875, "tegra_power": 7.384664972079294, "ps_energy": 3.256205665660673, "time": 396.87855311802457, "times": [396.82818603515625, 396.8930358886719, 396.8371276855469, 396.71453857421875, 396.7864990234375, 397.0148010253906, 397.07568359375], "compile_time": 1066.7018310000458, "verification_time": 0, "benchmark_time": 2781.575138000335, "GB/s": 6.19232251451278, "GB/s/W (Jetson)": 0.8744205698401667, "GPU (W) (Jetson)": 7.081629513409846, "GB/s/W (PS)": 0.7547434813216447, "GPU (W) (PS)": 8.204539247784286, "strategy_time": 0.028022000151395332, "framework_time": 2.8354929995657585, "timestamp": "2023-11-03 11:26:03.992568+00:00"},
"1,64,1,2,2,0,1,0": {"block_size_x": 1, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5357142857142856, "tegra_power": 7.401919112554035, "ps_energy": 2.899730856345611, "time": 359.8993181501116, "times": [359.8150939941406, 359.6787109375, 359.8484802246094, 359.9494934082031, 359.8954772949219, 359.9678649902344, 360.1401062011719], "compile_time": 976.7438980002225, "verification_time": 0, "benchmark_time": 2522.7336240000113, "GB/s": 6.828576426963253, "GB/s/W (Jetson)": 0.969194366197183, "GPU (W) (Jetson)": 7.045621255266331, "GB/s/W (PS)": 0.8475269332744878, "GPU (W) (PS)": 8.057061267162926, "strategy_time": 0.02573000028860406, "framework_time": 2.560067999183957, "timestamp": "2023-11-03 11:26:07.494687+00:00"},
"2,48,1,2,2,0,1,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6192801339285716, "tegra_power": 7.6727115618512425, "ps_energy": 3.0168157619417406, "time": 357.7365417480469, "times": [357.6123962402344, 357.4205627441406, 357.435791015625, 357.44964599609375, 358.3200988769531, 357.74542236328125, 358.171875], "compile_time": 1139.6758730002148, "verification_time": 0, "benchmark_time": 2523.188198000298, "GB/s": 6.8698601154669925, "GB/s/W (Jetson)": 0.938273065246338, "GPU (W) (Jetson)": 7.321813201217016, "GB/s/W (PS)": 0.8146337708134329, "GPU (W) (PS)": 8.433065705841361, "strategy_time": 0.026927999897452537, "framework_time": 3.1157589992290013, "timestamp": "2023-11-03 11:26:11.161329+00:00"},
"1,232,1,3,3,0,0,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.874720982142857, "tegra_power": 7.429233080651089, "ps_energy": 3.3258628718225998, "time": 404.9622715541295, "times": [404.4370422363281, 404.9262390136719, 404.8370361328125, 405.0401611328125, 405.2383728027344, 405.2118835449219, 405.045166015625], "compile_time": 1133.5056530001566, "verification_time": 0, "benchmark_time": 2838.133044999722, "GB/s": 6.068713489205879, "GB/s/W (Jetson)": 0.8549003591187032, "GPU (W) (Jetson)": 7.098737793796197, "GB/s/W (PS)": 0.7389360580140861, "GPU (W) (PS)": 8.212772165315274, "strategy_time": 0.058229999922332354, "framework_time": 6.725753000409895, "timestamp": "2023-11-03 11:26:15.139904+00:00"},
"1,176,1,1,6,0,0,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0272042410714284, "tegra_power": 7.230079980938581, "ps_energy": 3.502614462755186, "time": 434.847647530692, "times": [434.4754638671875, 434.6432800292969, 435.0361022949219, 435.01495361328125, 434.8240661621094, 434.7138977050781, 435.22576904296875], "compile_time": 1078.2677219999641, "verification_time": 0, "benchmark_time": 3052.8100579999773, "GB/s": 5.65163457582357, "GB/s/W (Jetson)": 0.8118381860915249, "GPU (W) (Jetson)": 6.961528384163019, "GB/s/W (PS)": 0.7016473055007119, "GPU (W) (PS)": 8.054808351028202, "strategy_time": 0.026250999781041173, "framework_time": 2.7533540005606483, "timestamp": "2023-11-03 11:26:19.273817+00:00"},
"1,232,1,2,7,1,1,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8243582589285716, "tegra_power": 7.3139006881719775, "ps_energy": 3.2466032028135356, "time": 403.03648594447543, "times": [402.8612060546875, 402.9106750488281, 402.89306640625, 403.1808776855469, 403.2061462402344, 403.149169921875, 403.05426025390625], "compile_time": 1121.7888129999665, "verification_time": 0, "benchmark_time": 2825.238695999815, "GB/s": 6.097710965896454, "GB/s/W (Jetson)": 0.8701445690293899, "GPU (W) (Jetson)": 7.007698700801175, "GB/s/W (PS)": 0.7569757825256321, "GPU (W) (PS)": 8.055358053267678, "strategy_time": 0.026772000182972988, "framework_time": 3.072996999890165, "timestamp": "2023-11-03 11:26:23.224012+00:00"},
"8,72,1,2,8,1,1,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4898158482142856, "tegra_power": 7.3499867096493645, "ps_energy": 2.8765927124477457, "time": 354.4285103934152, "times": [354.4199523925781, 354.455322265625, 354.5148010253906, 354.4779052734375, 354.5374450683594, 354.25030517578125, 354.3438415527344], "compile_time": 1137.7613639997435, "verification_time": 0, "benchmark_time": 2484.598227999868, "GB/s": 6.933979428664096, "GB/s/W (Jetson)": 0.9870609514204067, "GPU (W) (Jetson)": 7.024874622672406, "GB/s/W (PS)": 0.8543440958344022, "GPU (W) (PS)": 8.116143673810923, "strategy_time": 0.028594000013981713, "framework_time": 3.175292000378249, "timestamp": "2023-11-03 11:26:26.849672+00:00"},
"4,80,1,4,5,0,1,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.529296875, "tegra_power": 7.374039141936473, "ps_energy": 2.9382980414185504, "time": 358.6733616420201, "times": [358.6180725097656, 358.57769775390625, 358.6855773925781, 358.8161926269531, 358.7315673828125, 358.63946533203125, 358.64495849609375], "compile_time": 1083.9818320000632, "verification_time": 0, "benchmark_time": 2515.996017999896, "GB/s": 6.851916709813673, "GB/s/W (Jetson)": 0.9716534362934363, "GPU (W) (Jetson)": 7.05181132889486, "GB/s/W (PS)": 0.8364025586776488, "GPU (W) (PS)": 8.192127868004784, "strategy_time": 0.024792000203888165, "framework_time": 2.884138999888819, "timestamp": "2023-11-03 11:26:30.452629+00:00"},
"1,224,1,3,6,0,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9457310267857144, "tegra_power": 7.504432794948554, "ps_energy": 3.414578208353435, "time": 410.47058541434154, "times": [411.8772888183594, 410.2033996582031, 410.1770324707031, 410.3005065917969, 410.1936340332031, 410.3335876464844, 410.2086486816406], "compile_time": 955.791459000011, "verification_time": 0, "benchmark_time": 2878.543284999978, "GB/s": 5.987274331775134, "GB/s/W (Jetson)": 0.8342920577788301, "GPU (W) (Jetson)": 7.176472886144091, "GB/s/W (PS)": 0.7197375049098946, "GPU (W) (PS)": 8.3186915937147, "strategy_time": 0.025053000172192696, "framework_time": 2.7232479997110204, "timestamp": "2023-11-03 11:26:34.289767+00:00"},
"2,240,1,2,4,1,1,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.495814732142857, "tegra_power": 7.350008828019116, "ps_energy": 2.8835818279985688, "time": 356.93526349748885, "times": [356.9251708984375, 356.5895690917969, 356.6322937011719, 356.672607421875, 357.8096923828125, 356.8604736328125, 357.0570373535156], "compile_time": 969.4563089997246, "verification_time": 0, "benchmark_time": 2506.431161000364, "GB/s": 6.885282154301041, "GB/s/W (Jetson)": 0.9846884740078254, "GPU (W) (Jetson)": 6.992345636256856, "GB/s/W (PS)": 0.852273369230436, "GPU (W) (PS)": 8.078724975905486, "strategy_time": 0.02734500003498397, "framework_time": 2.5725139998939994, "timestamp": "2023-11-03 11:26:37.768306+00:00"},
"1,224,1,2,2,1,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5445033482142856, "tegra_power": 7.453343953908791, "ps_energy": 2.940299206461662, "time": 358.0334211077009, "times": [357.97308349609375, 357.9447937011719, 358.0328674316406, 358.2374572753906, 357.97515869140625, 358.129638671875, 357.9409484863281], "compile_time": 1143.2695450002939, "verification_time": 0, "benchmark_time": 2509.732587999679, "GB/s": 6.864163664935411, "GB/s/W (Jetson)": 0.965846636328746, "GPU (W) (Jetson)": 7.106887788134357, "GB/s/W (PS)": 0.8358333038349048, "GPU (W) (PS)": 8.212359609795152, "strategy_time": 0.026094000077137025, "framework_time": 2.6088700001309917, "timestamp": "2023-11-03 11:26:41.423995+00:00"},
"4,48,1,1,8,0,0,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4945591517857144, "tegra_power": 7.4442987608494535, "ps_energy": 2.88086739411483, "time": 353.53025599888394, "times": [353.29754638671875, 353.4234313964844, 354.16156005859375, 353.39019775390625, 353.4337463378906, 353.4272766113281, 353.5780334472656], "compile_time": 1082.4943820002773, "verification_time": 0, "benchmark_time": 2479.446023000037, "GB/s": 6.951597376174101, "GB/s/W (Jetson)": 0.9851840948492813, "GPU (W) (Jetson)": 7.056140484319932, "GB/s/W (PS)": 0.8530764050509577, "GPU (W) (PS)": 8.148856696791249, "strategy_time": 0.02630200015119044, "framework_time": 3.5872809994543786, "timestamp": "2023-11-03 11:26:44.989604+00:00"},
"2,176,1,3,7,0,1,0": {"block_size_x": 2, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5369698660714284, "tegra_power": 7.382677157466669, "ps_energy": 2.9146088887903585, "time": 357.8783046177455, "times": [357.82391357421875, 357.7520446777344, 357.8243713378906, 357.99249267578125, 357.8348388671875, 357.92974853515625, 357.99072265625], "compile_time": 1083.0497209999521, "verification_time": 0, "benchmark_time": 2510.7719290003843, "GB/s": 6.867138824257577, "GB/s/W (Jetson)": 0.9687146989276877, "GPU (W) (Jetson)": 7.08891775035427, "GB/s/W (PS)": 0.8432006124224682, "GPU (W) (PS)": 8.144134056696984, "strategy_time": 0.02630299968586769, "framework_time": 2.7439249997769366, "timestamp": "2023-11-03 11:26:48.586252+00:00"},
"1,224,1,4,1,1,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.537388392857143, "tegra_power": 7.367240778525236, "ps_energy": 2.9344050672368343, "time": 359.9642769949777, "times": [360.0610046386719, 360.0306396484375, 359.8542175292969, 359.96954345703125, 360.0381164550781, 359.8926086425781, 359.90380859375], "compile_time": 1094.1783019998184, "verification_time": 0, "benchmark_time": 2523.344020999957, "GB/s": 6.82734414791468, "GB/s/W (Jetson)": 0.9685549153287881, "GPU (W) (Jetson)": 7.049000567610617, "GB/s/W (PS)": 0.8375121851579219, "GPU (W) (PS)": 8.151934107833084, "strategy_time": 0.04552199970930815, "framework_time": 4.30844500033345, "timestamp": "2023-11-03 11:26:52.208209+00:00"},
"2,240,1,2,1,1,0,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4722377232142856, "tegra_power": 7.399534258303805, "ps_energy": 2.838339512566693, "time": 352.4408961704799, "times": [352.31640625, 353.04656982421875, 352.1990661621094, 352.256103515625, 352.35662841796875, 352.5594787597656, 352.3520202636719], "compile_time": 1113.0260360000648, "verification_time": 0, "benchmark_time": 2471.945358999619, "GB/s": 6.97308407368034, "GB/s/W (Jetson)": 0.9940791603182664, "GPU (W) (Jetson)": 7.014616493366407, "GB/s/W (PS)": 0.8658583615945251, "GPU (W) (PS)": 8.053377299306815, "strategy_time": 0.04651200015359791, "framework_time": 3.377377000560955, "timestamp": "2023-11-03 11:26:55.796674+00:00"},
"2,200,1,1,1,0,0,0": {"block_size_x": 2, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.545619419642857, "tegra_power": 7.338905897558766, "ps_energy": 2.9423542580773625, "time": 362.8342023577009, "times": [362.2945251464844, 362.6567077636719, 362.4330139160156, 362.4287109375, 365.2483825683594, 362.3360290527344, 362.4420471191406], "compile_time": 1085.1233570001568, "verification_time": 0, "benchmark_time": 2550.167199000043, "GB/s": 6.7733416090062235, "GB/s/W (Jetson)": 0.9654231818929138, "GPU (W) (Jetson)": 7.015930149642433, "GB/s/W (PS)": 0.8352495262096284, "GPU (W) (PS)": 8.109363006458349, "strategy_time": 0.02515699998184573, "framework_time": 3.390867999769398, "timestamp": "2023-11-03 11:26:59.435435+00:00"},
"4,112,1,3,4,0,1,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4893973214285716, "tegra_power": 7.359482874412227, "ps_energy": 2.895999280996745, "time": 355.28332955496654, "times": [355.23040771484375, 355.3162536621094, 355.2503662109375, 355.2931213378906, 355.21514892578125, 355.18426513671875, 355.4937438964844], "compile_time": 1093.7508810002328, "verification_time": 0, "benchmark_time": 2490.770638000413, "GB/s": 6.917296128356003, "GB/s/W (Jetson)": 0.9872268997982514, "GPU (W) (Jetson)": 7.006794618106145, "GB/s/W (PS)": 0.8486189952209321, "GPU (W) (PS)": 8.151238856673402, "strategy_time": 0.045001000216871034, "framework_time": 3.27596899933269, "timestamp": "2023-11-03 11:27:03.023334+00:00"},
"4,200,1,1,5,0,1,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5528738839285716, "tegra_power": 7.256171064076395, "ps_energy": 2.912254663174411, "time": 365.2564435686384, "times": [366.382080078125, 364.192138671875, 366.3627014160156, 363.8361511230469, 366.29754638671875, 363.7564697265625, 365.968017578125], "compile_time": 1068.2504040000822, "verification_time": 0, "benchmark_time": 2560.3355270000066, "GB/s": 6.7284233947762555, "GB/s/W (Jetson)": 0.9626797529919666, "GPU (W) (Jetson)": 6.989264471247691, "GB/s/W (PS)": 0.8438822439110358, "GPU (W) (PS)": 7.973178062845439, "strategy_time": 0.027084000066679437, "framework_time": 3.4250879998580785, "timestamp": "2023-11-03 11:27:06.655441+00:00"},
"16,40,1,2,3,1,0,0": {"block_size_x": 16, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5050223214285716, "tegra_power": 7.4246371637347, "ps_energy": 2.9031879978444652, "time": 354.14978463309154, "times": [353.61468505859375, 353.810302734375, 353.8760986328125, 353.7715148925781, 355.7598571777344, 354.15594482421875, 354.0600891113281], "compile_time": 1130.807212000036, "verification_time": 0, "benchmark_time": 2484.2402169997513, "GB/s": 6.9394366639136535, "GB/s/W (Jetson)": 0.9810691022499441, "GPU (W) (Jetson)": 7.073341366065888, "GB/s/W (PS)": 0.846517690836659, "GPU (W) (PS)": 8.197627455434553, "strategy_time": 0.03848999995170743, "framework_time": 4.068490000008751, "timestamp": "2023-11-03 11:27:10.274946+00:00"},
"16,48,1,3,7,1,1,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5170200892857144, "tegra_power": 7.393868304489949, "ps_energy": 2.9027715334650566, "time": 356.5139726911272, "times": [356.5039978027344, 356.5491638183594, 356.4370422363281, 356.5090026855469, 356.4182434082031, 356.6094665527344, 356.5708923339844], "compile_time": 1087.1295080000891, "verification_time": 0, "benchmark_time": 2511.0016300000098, "GB/s": 6.893418458325584, "GB/s/W (Jetson)": 0.9763926837379446, "GPU (W) (Jetson)": 7.060088193139021, "GB/s/W (PS)": 0.8466391418226247, "GPU (W) (PS)": 8.14209752160241, "strategy_time": 0.02484400010871468, "framework_time": 9.34096499986481, "timestamp": "2023-11-03 11:27:13.882525+00:00"},
"1,128,1,4,7,1,1,0": {"block_size_x": 1, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5902622767857144, "tegra_power": 7.419299501654403, "ps_energy": 2.9922487864579517, "time": 366.72493634905135, "times": [366.7629699707031, 366.868896484375, 366.7903137207031, 366.6943664550781, 366.6343078613281, 366.6315002441406, 366.69219970703125], "compile_time": 953.9830530002291, "verification_time": 0, "benchmark_time": 2571.384093999768, "GB/s": 6.701480473258134, "GB/s/W (Jetson)": 0.9487842300856357, "GPU (W) (Jetson)": 7.063229194538014, "GB/s/W (PS)": 0.8213220809454024, "GPU (W) (PS)": 8.15938184146253, "strategy_time": 0.05302199997458956, "framework_time": 6.67225100005453, "timestamp": "2023-11-03 11:27:17.414701+00:00"},
"1,96,1,3,8,1,1,0": {"block_size_x": 1, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6017020089285716, "tegra_power": 7.415109033047206, "ps_energy": 2.997209875937967, "time": 368.14515904017856, "times": [368.11968994140625, 368.0761413574219, 368.46588134765625, 368.1893615722656, 368.0517578125, 368.0105285644531, 368.1027526855469], "compile_time": 944.3459139997685, "verification_time": 0, "benchmark_time": 2583.7442580000243, "GB/s": 6.675627642116523, "GB/s/W (Jetson)": 0.9446124081720197, "GPU (W) (Jetson)": 7.0670547881484636, "GB/s/W (PS)": 0.8199625991259294, "GPU (W) (PS)": 8.141380654718477, "strategy_time": 0.04385500005810172, "framework_time": 4.441153000243503, "timestamp": "2023-11-03 11:27:20.947348+00:00"},
"2,216,1,3,7,1,0,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9100167410714284, "tegra_power": 7.278686219000979, "ps_energy": 3.3560005897202894, "time": 414.9607587541853, "times": [416.4903259277344, 414.23681640625, 416.4688415527344, 417.5599060058594, 413.035888671875, 412.64697265625, 414.28656005859375], "compile_time": 1089.8554649998005, "verification_time": 0, "benchmark_time": 2908.6029759996563, "GB/s": 5.922487724811189, "GB/s/W (Jetson)": 0.8445312239321157, "GPU (W) (Jetson)": 7.01275163899357, "GB/s/W (PS)": 0.7323002288878715, "GPU (W) (PS)": 8.087513141714489, "strategy_time": 0.027084000066679437, "framework_time": 3.467951000402536, "timestamp": "2023-11-03 11:27:24.949358+00:00"},
"2,184,1,4,6,0,1,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6181640625, "tegra_power": 7.384173811823476, "ps_energy": 3.0495485196619745, "time": 370.29022216796875, "times": [370.3736572265625, 370.2989196777344, 370.3870849609375, 370.2536315917969, 370.2215576171875, 370.23541259765625, 370.26129150390625], "compile_time": 1083.0101480000849, "verification_time": 0, "benchmark_time": 2595.289419999972, "GB/s": 6.6369562383021785, "GB/s/W (Jetson)": 0.9386730324505781, "GPU (W) (Jetson)": 7.070573041791972, "GB/s/W (PS)": 0.8058897847188249, "GPU (W) (PS)": 8.2355631801659, "strategy_time": 0.02515699998184573, "framework_time": 2.906112999880861, "timestamp": "2023-11-03 11:27:28.630645+00:00"},
"8,104,1,1,3,0,0,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.492466517857143, "tegra_power": 7.387737893355174, "ps_energy": 2.931261731406786, "time": 354.65379551478793, "times": [353.76202392578125, 353.7051696777344, 354.4141540527344, 354.6291809082031, 358.63922119140625, 353.6454772949219, 353.7813415527344], "compile_time": 1068.3903230001306, "verification_time": 0, "benchmark_time": 2486.8711679996522, "GB/s": 6.9295747883728085, "GB/s/W (Jetson)": 0.9860112392253442, "GPU (W) (Jetson)": 7.0278862072779225, "GB/s/W (PS)": 0.8384102905817749, "GPU (W) (PS)": 8.265135657584022, "strategy_time": 0.026927999897452537, "framework_time": 2.6838170001610706, "timestamp": "2023-11-03 11:27:32.188672+00:00"},
"2,48,1,3,8,0,1,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5511997767857144, "tegra_power": 7.393687688840797, "ps_energy": 2.970688628401279, "time": 361.3416835239955, "times": [361.2877502441406, 361.410888671875, 361.4043884277344, 361.259521484375, 361.21600341796875, 361.25390625, 361.559326171875], "compile_time": 1097.018812999977, "verification_time": 0, "benchmark_time": 2535.314671999913, "GB/s": 6.801318840473046, "GB/s/W (Jetson)": 0.963311467162465, "GPU (W) (Jetson)": 7.060352827011439, "GB/s/W (PS)": 0.8272829324837704, "GPU (W) (PS)": 8.221273005177675, "strategy_time": 0.02541699996072566, "framework_time": 3.1184110002868692, "timestamp": "2023-11-03 11:27:35.824208+00:00"},
"16,32,1,4,5,0,0,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.698939732142857, "tegra_power": 7.657751706854714, "ps_energy": 3.1460868306569734, "time": 370.5835527692522, "times": [369.3322448730469, 370.116455078125, 371.43572998046875, 371.2829284667969, 371.930419921875, 370.4666748046875, 369.5204162597656], "compile_time": 1114.925263999794, "verification_time": 0, "benchmark_time": 2597.9211160001796, "GB/s": 6.6317028417347235, "GB/s/W (Jetson)": 0.9105797994417449, "GPU (W) (Jetson)": 7.282945268279029, "GB/s/W (PS)": 0.7811608936066134, "GPU (W) (PS)": 8.489547922856463, "strategy_time": 0.0978670000222337, "framework_time": 6.46974399978717, "timestamp": "2023-11-03 11:27:39.543795+00:00"},
"4,56,1,3,7,1,0,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7818080357142856, "tegra_power": 7.451254034715883, "ps_energy": 3.198603918682108, "time": 389.3009338378906, "times": [389.24285888671875, 389.30084228515625, 389.3435363769531, 389.3065185546875, 389.2654724121094, 389.29229736328125, 389.3550109863281], "compile_time": 1077.1997689998898, "verification_time": 0, "benchmark_time": 2728.376666999793, "GB/s": 6.312854109472475, "GB/s/W (Jetson)": 0.8834542026078235, "GPU (W) (Jetson)": 7.145649532072951, "GB/s/W (PS)": 0.7683352057583243, "GPU (W) (PS)": 8.216275997976526, "strategy_time": 0.04317799994169036, "framework_time": 4.395577000650519, "timestamp": "2023-11-03 11:27:43.353882+00:00"},
"8,56,1,1,1,0,0,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5005580357142856, "tegra_power": 7.38674746410703, "ps_energy": 2.8997594521489582, "time": 357.79567173549106, "times": [357.9122009277344, 357.8478698730469, 357.61712646484375, 357.7029724121094, 357.70819091796875, 357.81915283203125, 357.9621887207031], "compile_time": 1084.3254820001675, "verification_time": 0, "benchmark_time": 2509.574018999956, "GB/s": 6.868724789429088, "GB/s/W (Jetson)": 0.9828206203972327, "GPU (W) (Jetson)": 6.988787828498055, "GB/s/W (PS)": 0.8475185754386343, "GPU (W) (PS)": 8.104512382957708, "strategy_time": 0.039168000057543395, "framework_time": 4.134787999646505, "timestamp": "2023-11-03 11:27:46.952330+00:00"},
"1,152,1,4,2,1,1,0": {"block_size_x": 1, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7061941964285716, "tegra_power": 7.442736482664886, "ps_energy": 3.1370411733358714, "time": 382.19270978655135, "times": [382.0523986816406, 382.1221923828125, 382.1987609863281, 382.2967834472656, 382.280517578125, 382.1957702636719, 382.2025451660156], "compile_time": 975.9218670001246, "verification_time": 0, "benchmark_time": 2678.9921790000335, "GB/s": 6.430263940336619, "GB/s/W (Jetson)": 0.9081388184348901, "GPU (W) (Jetson)": 7.080705955746615, "GB/s/W (PS)": 0.7834133708186666, "GPU (W) (PS)": 8.208008925884169, "strategy_time": 0.044271999740885803, "framework_time": 3.4851380000873178, "timestamp": "2023-11-03 11:27:50.610850+00:00"},
"4,96,1,2,7,1,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.708286830357143, "tegra_power": 7.375947125164496, "ps_energy": 3.123482383460214, "time": 384.8852059500558, "times": [384.9793701171875, 384.92010498046875, 384.9302978515625, 384.9344177246094, 384.79620361328125, 384.8385925292969, 384.7974548339844], "compile_time": 1121.1112659998435, "verification_time": 0, "benchmark_time": 2697.897533000287, "GB/s": 6.385280499242954, "GB/s/W (Jetson)": 0.9074371194560346, "GPU (W) (Jetson)": 7.036609327895499, "GB/s/W (PS)": 0.7868141062724531, "GPU (W) (PS)": 8.115360983413659, "strategy_time": 0.028385999939928297, "framework_time": 3.597952999825793, "timestamp": "2023-11-03 11:27:54.433963+00:00"},
"2,224,1,4,5,1,1,0": {"block_size_x": 2, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5184151785714284, "tegra_power": 7.4023470553899005, "ps_energy": 2.9157427618299283, "time": 358.95081874302457, "times": [358.9183349609375, 359.0672302246094, 359.0770263671875, 358.9794921875, 358.8933410644531, 358.83233642578125, 358.8879699707031], "compile_time": 1074.7711459998754, "verification_time": 0, "benchmark_time": 2519.8547869999857, "GB/s": 6.846620405007108, "GB/s/W (Jetson)": 0.9758518058940837, "GPU (W) (Jetson)": 7.016045227004704, "GB/s/W (PS)": 0.8428727088591323, "GPU (W) (PS)": 8.122958939166898, "strategy_time": 0.04479299968807027, "framework_time": 4.449274000307923, "timestamp": "2023-11-03 11:27:58.033453+00:00"},
"1,168,1,2,8,0,1,0": {"block_size_x": 1, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.022181919642857, "tegra_power": 7.241691308103798, "ps_energy": 3.4712959067107607, "time": 433.23856026785717, "times": [433.0335388183594, 433.3393249511719, 433.4192199707031, 433.3889465332031, 433.24212646484375, 433.1471252441406, 433.0996398925781], "compile_time": 950.2750870001364, "verification_time": 0, "benchmark_time": 3036.108889999923, "GB/s": 5.672625258657831, "GB/s/W (Jetson)": 0.8131873147763466, "GPU (W) (Jetson)": 6.975791623382603, "GB/s/W (PS)": 0.7079776734818057, "GPU (W) (PS)": 8.012435237908123, "strategy_time": 0.025676999939605594, "framework_time": 2.284014999986539, "timestamp": "2023-11-03 11:28:02.022206+00:00"},
"1,224,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8325892857142856, "tegra_power": 7.405833137878014, "ps_energy": 3.2579947517811627, "time": 396.3460170200893, "times": [396.3833923339844, 396.24365234375, 396.2185363769531, 396.0169677734375, 396.4998474121094, 396.2383728027344, 396.82135009765625], "compile_time": 1082.3363179997614, "verification_time": 0, "benchmark_time": 2778.6467669998274, "GB/s": 6.200642606370467, "GB/s/W (Jetson)": 0.8676160756501181, "GPU (W) (Jetson)": 7.146758549539587, "GB/s/W (PS)": 0.7543290235984625, "GPU (W) (PS)": 8.220076932464865, "strategy_time": 0.027084000066679437, "framework_time": 3.428676000567066, "timestamp": "2023-11-03 11:28:05.887071+00:00"},
"2,104,1,4,8,0,1,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.681361607142857, "tegra_power": 7.3208818471333865, "ps_energy": 3.126780913964467, "time": 385.5933837890625, "times": [385.5347900390625, 385.481201171875, 385.50750732421875, 385.5758972167969, 385.5604248046875, 385.696044921875, 385.7978210449219], "compile_time": 1094.8836719999235, "verification_time": 0, "benchmark_time": 2702.692226999716, "GB/s": 6.373553342254496, "GB/s/W (Jetson)": 0.9165492611862642, "GPU (W) (Jetson)": 6.9538579235832705, "GB/s/W (PS)": 0.7859840735959949, "GPU (W) (PS)": 8.10901080106437, "strategy_time": 0.05354300037652138, "framework_time": 3.913167000064277, "timestamp": "2023-11-03 11:28:09.688683+00:00"},
"4,168,1,3,2,1,0,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4764229910714284, "tegra_power": 7.421727501917199, "ps_energy": 2.883694891612322, "time": 352.1950204031808, "times": [352.0418701171875, 352.253173828125, 352.3049011230469, 351.97259521484375, 352.2040100097656, 352.53509521484375, 352.0534973144531], "compile_time": 1146.2396110000554, "verification_time": 0, "benchmark_time": 2468.919817999904, "GB/s": 6.9779521504495525, "GB/s/W (Jetson)": 0.9923991211762717, "GPU (W) (Jetson)": 7.031396946602209, "GB/s/W (PS)": 0.8522399533835269, "GPU (W) (PS)": 8.187778715074296, "strategy_time": 0.03833399978248053, "framework_time": 4.140880000250036, "timestamp": "2023-11-03 11:28:13.308092+00:00"},
"4,232,1,3,1,1,0,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5294363839285716, "tegra_power": 7.296812346400353, "ps_energy": 2.9091777576881475, "time": 362.2377014160156, "times": [363.1113586425781, 361.8396301269531, 361.1622314453125, 362.96600341796875, 362.1845703125, 362.0250549316406, 362.37506103515625], "compile_time": 1080.8647879998716, "verification_time": 0, "benchmark_time": 2539.2047069999535, "GB/s": 6.784495347648929, "GB/s/W (Jetson)": 0.9715998455683634, "GPU (W) (Jetson)": 6.982808178278534, "GB/s/W (PS)": 0.8447747799202874, "GPU (W) (PS)": 8.031129135139558, "strategy_time": 0.041510999835736584, "framework_time": 4.233540000313951, "timestamp": "2023-11-03 11:28:16.932509+00:00"},
"4,40,1,4,7,0,0,0": {"block_size_x": 4, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8113839285714284, "tegra_power": 7.478048104965, "ps_energy": 3.230223173788545, "time": 392.99300275530135, "times": [392.9433898925781, 392.9436950683594, 392.9902038574219, 393.0644836425781, 393.0741271972656, 393.12933349609375, 392.8057861328125], "compile_time": 1098.5227360001772, "verification_time": 0, "benchmark_time": 2754.2536420000943, "GB/s": 6.253546456984208, "GB/s/W (Jetson)": 0.8741602223104407, "GPU (W) (Jetson)": 7.153776044002361, "GB/s/W (PS)": 0.7608143053217034, "GPU (W) (PS)": 8.219543735235042, "strategy_time": 0.024947999918367714, "framework_time": 2.5643330000093556, "timestamp": "2023-11-03 11:28:20.787974+00:00"},
"1,216,1,2,3,1,1,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6748046875, "tegra_power": 7.383158463288816, "ps_energy": 3.079096079943286, "time": 378.7235325404576, "times": [378.69488525390625, 378.5589599609375, 378.6780090332031, 378.8030700683594, 378.7295837402344, 378.7381286621094, 378.8620910644531], "compile_time": 1126.8497849996493, "verification_time": 0, "benchmark_time": 2654.34518200027, "GB/s": 6.489166341247791, "GB/s/W (Jetson)": 0.918796056955093, "GPU (W) (Jetson)": 7.062684142064135, "GB/s/W (PS)": 0.7981563212685674, "GPU (W) (PS)": 8.13019476051269, "strategy_time": 0.02588600000308361, "framework_time": 2.7079800001956755, "timestamp": "2023-11-03 11:28:24.571958+00:00"},
"1,136,1,3,2,1,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8443080357142856, "tegra_power": 7.399576311949405, "ps_energy": 3.2644558622601574, "time": 401.30452619280135, "times": [401.4495849609375, 401.3200988769531, 401.325927734375, 401.2263488769531, 401.5572814941406, 401.16766357421875, 401.08477783203125], "compile_time": 977.1206880000136, "verification_time": 0, "benchmark_time": 2813.211300000148, "GB/s": 6.124027613930473, "GB/s/W (Jetson)": 0.8640414361389052, "GPU (W) (Jetson)": 7.087655010269623, "GB/s/W (PS)": 0.7528360326178439, "GPU (W) (PS)": 8.134610125707363, "strategy_time": 0.02718799987633247, "framework_time": 2.768348000245169, "timestamp": "2023-11-03 11:28:28.365142+00:00"},
"4,192,1,4,2,0,0,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5152064732142856, "tegra_power": 7.422329876815224, "ps_energy": 2.909665261745041, "time": 357.3775721958705, "times": [356.6507263183594, 357.77880859375, 357.6366271972656, 357.0666809082031, 358.06243896484375, 357.42791748046875, 357.0198059082031], "compile_time": 1131.6184280003654, "verification_time": 0, "benchmark_time": 2507.3577949997343, "GB/s": 6.876760578173734, "GB/s/W (Jetson)": 0.9770967219479727, "GPU (W) (Jetson)": 7.037952767320715, "GB/s/W (PS)": 0.8446332409131077, "GPU (W) (PS)": 8.141711982279402, "strategy_time": 0.044687999888992636, "framework_time": 4.9339719998897635, "timestamp": "2023-11-03 11:28:32.009178+00:00"},
"1,104,1,4,5,0,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2230747767857144, "tegra_power": 7.393645639908896, "ps_energy": 3.722097960276577, "time": 453.27099609375, "times": [453.18182373046875, 453.3581848144531, 453.1968688964844, 452.8548889160156, 453.72265625, 453.3864440917969, 453.19610595703125], "compile_time": 1089.6963730001517, "verification_time": 0, "benchmark_time": 3176.2305040001593, "GB/s": 5.4219220315868055, "GB/s/W (Jetson)": 0.762501701077782, "GPU (W) (Jetson)": 7.11070155505623, "GB/s/W (PS)": 0.6602727886875346, "GPU (W) (PS)": 8.21163937766434, "strategy_time": 0.05192800017539412, "framework_time": 4.489169999487785, "timestamp": "2023-11-03 11:28:36.279773+00:00"},
"8,56,1,2,6,1,1,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.487583705357143, "tegra_power": 7.378158223442378, "ps_energy": 2.9019333114590284, "time": 354.4561505998884, "times": [354.37353515625, 354.5474548339844, 354.3645935058594, 354.1809997558594, 354.6092224121094, 354.6365051269531, 354.4807434082031], "compile_time": 1128.6274060003052, "verification_time": 0, "benchmark_time": 2484.7091260003253, "GB/s": 6.933438722506889, "GB/s/W (Jetson)": 0.9879466547024843, "GPU (W) (Jetson)": 7.0180294548341395, "GB/s/W (PS)": 0.8468836931212497, "GPU (W) (PS)": 8.187002275310332, "strategy_time": 0.024896000013541197, "framework_time": 3.007674999480514, "timestamp": "2023-11-03 11:28:39.896495+00:00"},
"4,192,1,3,2,0,1,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.489955357142857, "tegra_power": 7.36932362590973, "ps_energy": 2.886223857390308, "time": 353.74159022739957, "times": [353.46063232421875, 353.4837951660156, 353.50213623046875, 355.5126953125, 353.48968505859375, 353.43475341796875, 353.30743408203125], "compile_time": 1122.972978999769, "verification_time": 0, "benchmark_time": 2479.706234000332, "GB/s": 6.947444314987542, "GB/s/W (Jetson)": 0.987005647691618, "GPU (W) (Jetson)": 7.038910396547411, "GB/s/W (PS)": 0.8514932040725819, "GPU (W) (PS)": 8.159130668053267, "strategy_time": 0.027397000394557836, "framework_time": 2.9224109994174796, "timestamp": "2023-11-03 11:28:43.502531+00:00"},
"8,104,1,1,5,0,0,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5121372767857144, "tegra_power": 7.401910425498746, "ps_energy": 2.8957237605237816, "time": 357.0519234793527, "times": [356.9678039550781, 357.0338134765625, 357.24212646484375, 356.95306396484375, 356.96978759765625, 356.96514892578125, 357.2317199707031], "compile_time": 935.7222879998517, "verification_time": 0, "benchmark_time": 2503.228657999898, "GB/s": 6.883032518216123, "GB/s/W (Jetson)": 0.9782904870328204, "GPU (W) (Jetson)": 7.035775783829335, "GB/s/W (PS)": 0.8486997390785185, "GPU (W) (PS)": 8.110091474388131, "strategy_time": 0.02484400010871468, "framework_time": 2.336669000214897, "timestamp": "2023-11-03 11:28:46.943901+00:00"},
"4,120,1,3,3,0,0,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6029575892857144, "tegra_power": 7.450203878673522, "ps_energy": 3.016127516519191, "time": 365.35538591657365, "times": [365.2760925292969, 365.324951171875, 365.426513671875, 365.3858337402344, 365.4320983886719, 365.3809509277344, 365.2612609863281], "compile_time": 1098.064388000239, "verification_time": 0, "benchmark_time": 2560.754977000215, "GB/s": 6.726601262041271, "GB/s/W (Jetson)": 0.9441567584950155, "GPU (W) (Jetson)": 7.124453859508948, "GB/s/W (PS)": 0.8148196608199879, "GPU (W) (PS)": 8.255325178668373, "strategy_time": 0.026927999897452537, "framework_time": 3.14715599961346, "timestamp": "2023-11-03 11:28:50.605952+00:00"},
"1,248,1,3,2,1,1,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7075892857142856, "tegra_power": 7.392368972794611, "ps_energy": 3.0850081005056773, "time": 380.90053013392856, "times": [380.7307434082031, 380.8572998046875, 380.7386474609375, 381.05462646484375, 381.1682434082031, 380.9306640625, 380.823486328125], "compile_time": 1141.1707810002554, "verification_time": 0, "benchmark_time": 2670.5915630000163, "GB/s": 6.452078182027949, "GB/s/W (Jetson)": 0.907670898598516, "GPU (W) (Jetson)": 7.108389386494866, "GB/s/W (PS)": 0.7966267575106736, "GPU (W) (PS)": 8.099248639588286, "strategy_time": 0.025834000098257093, "framework_time": 3.0882999994901184, "timestamp": "2023-11-03 11:28:54.421182+00:00"},
"1,240,1,3,7,0,0,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.378627232142857, "tegra_power": 7.397691899794233, "ps_energy": 3.866081403601129, "time": 474.6445966448103, "times": [474.5619812011719, 474.5333251953125, 474.5317687988281, 474.7900085449219, 474.7378234863281, 474.7822265625, 474.5750427246094], "compile_time": 1092.842656999892, "verification_time": 0, "benchmark_time": 3325.9515380000266, "GB/s": 5.177768834560419, "GB/s/W (Jetson)": 0.7273960194896357, "GPU (W) (Jetson)": 7.118225417556323, "GB/s/W (PS)": 0.6356824245115029, "GPU (W) (PS)": 8.145213136165173, "strategy_time": 0.04088600007889909, "framework_time": 3.4515390002525237, "timestamp": "2023-11-03 11:28:58.843526+00:00"},
"2,64,1,4,8,1,1,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.556919642857143, "tegra_power": 7.408065642995706, "ps_energy": 2.987361350680398, "time": 365.2594691685268, "times": [365.366455078125, 365.30853271484375, 365.4404296875, 365.0270690917969, 365.12139892578125, 365.2250061035156, 365.327392578125], "compile_time": 1099.8683040002106, "verification_time": 0, "benchmark_time": 2560.833796999759, "GB/s": 6.72836766037704, "GB/s/W (Jetson)": 0.961156525534701, "GPU (W) (Jetson)": 7.000282973300298, "GB/s/W (PS)": 0.8226657948293599, "GPU (W) (PS)": 8.178737590241807, "strategy_time": 0.025468999865552178, "framework_time": 2.9875180002818524, "timestamp": "2023-11-03 11:29:02.507296+00:00"},
"2,224,1,4,6,0,1,0": {"block_size_x": 2, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.530552455357143, "tegra_power": 7.379818581793553, "ps_energy": 2.9145061478518204, "time": 361.9403773716518, "times": [361.9296875, 361.96405029296875, 361.9223937988281, 361.8909912109375, 361.9689025878906, 361.9629211425781, 361.9436950683594], "compile_time": 1096.7971709997073, "verification_time": 0, "benchmark_time": 2537.0539720001943, "GB/s": 6.7900686235856424, "GB/s/W (Jetson)": 0.9711713324880092, "GPU (W) (Jetson)": 6.991627940860248, "GB/s/W (PS)": 0.8432303365739715, "GPU (W) (PS)": 8.052448220937542, "strategy_time": 0.02734500003498397, "framework_time": 2.932358000180102, "timestamp": "2023-11-03 11:29:06.144164+00:00"},
"2,32,1,1,3,0,1,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5230189732142856, "tegra_power": 7.382509071599162, "ps_energy": 2.916864655335303, "time": 357.88492693219865, "times": [357.8335876464844, 357.77838134765625, 357.757080078125, 357.8595886230469, 357.9988098144531, 357.99896240234375, 357.96807861328125], "compile_time": 1098.0318659999284, "verification_time": 0, "benchmark_time": 2509.2712430000574, "GB/s": 6.867011754495021, "GB/s/W (Jetson)": 0.9740711528891346, "GPU (W) (Jetson)": 7.049805072378116, "GB/s/W (PS)": 0.8425485205509101, "GPU (W) (PS)": 8.150286407250405, "strategy_time": 0.0277610001830908, "framework_time": 3.8802459998805716, "timestamp": "2023-11-03 11:29:09.755808+00:00"},
"2,152,1,3,3,0,1,0": {"block_size_x": 2, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6847098214285716, "tegra_power": 7.393317419553236, "ps_energy": 3.075298520720805, "time": 377.5779942103795, "times": [377.5299072265625, 377.4373474121094, 377.5066223144531, 377.6225891113281, 377.6868896484375, 377.6668701171875, 377.5957336425781], "compile_time": 1114.5954570001777, "verification_time": 0, "benchmark_time": 2646.639314999902, "GB/s": 6.508853899548686, "GB/s/W (Jetson)": 0.9154061941384326, "GPU (W) (Jetson)": 7.110345048161628, "GB/s/W (PS)": 0.7991419315689634, "GPU (W) (PS)": 8.144803372749804, "strategy_time": 0.04187599961369415, "framework_time": 3.8160770004651567, "timestamp": "2023-11-03 11:29:13.520984+00:00"},
"8,48,1,2,2,0,0,0": {"block_size_x": 8, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.520786830357143, "tegra_power": 7.493589861652596, "ps_energy": 2.927332961386128, "time": 354.18878173828125, "times": [354.1130065917969, 354.1056823730469, 354.2998046875, 354.2208251953125, 354.2652587890625, 354.119384765625, 354.197509765625], "compile_time": 1139.9903350002205, "verification_time": 0, "benchmark_time": 2482.745156999954, "GB/s": 6.938672613905599, "GB/s/W (Jetson)": 0.9749336875311306, "GPU (W) (Jetson)": 7.1170713481823755, "GB/s/W (PS)": 0.8395355200169291, "GPU (W) (PS)": 8.26489463336308, "strategy_time": 0.025521000225126045, "framework_time": 2.6301119996787747, "timestamp": "2023-11-03 11:29:17.146430+00:00"},
"1,144,1,1,6,0,1,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8013392857142856, "tegra_power": 7.31519413138666, "ps_energy": 3.2405116693823532, "time": 401.56024169921875, "times": [401.4696960449219, 401.48443603515625, 401.40594482421875, 401.4735412597656, 401.6221923828125, 401.56597900390625, 401.89990234375], "compile_time": 1086.2420619996556, "verification_time": 0, "benchmark_time": 2814.539029000116, "GB/s": 6.120127803491113, "GB/s/W (Jetson)": 0.8772946613545817, "GPU (W) (Jetson)": 6.9761370644172915, "GB/s/W (PS)": 0.7583987501789871, "GPU (W) (PS)": 8.069802069223773, "strategy_time": 0.028125999961048365, "framework_time": 3.516850000323757, "timestamp": "2023-11-03 11:29:21.050814+00:00"},
"1,136,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.814174107142857, "tegra_power": 7.392540083192854, "ps_energy": 3.220843453751513, "time": 396.212646484375, "times": [396.08349609375, 397.2832336425781, 395.51422119140625, 396.69842529296875, 396.447021484375, 395.76068115234375, 395.7014465332031], "compile_time": 1084.4337710000218, "verification_time": 0, "benchmark_time": 2776.82168299998, "GB/s": 6.202729826537522, "GB/s/W (Jetson)": 0.8732935157644258, "GPU (W) (Jetson)": 7.10268622698755, "GB/s/W (PS)": 0.763029943953806, "GPU (W) (PS)": 8.129077863441015, "strategy_time": 0.028439000288926763, "framework_time": 3.861179999603337, "timestamp": "2023-11-03 11:29:24.916311+00:00"},
"2,104,1,4,1,1,0,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6577845982142856, "tegra_power": 7.35452669548379, "ps_energy": 3.0974976031661106, "time": 378.06154087611606, "times": [377.95703125, 378.02984619140625, 377.9514465332031, 377.99688720703125, 378.31927490234375, 378.00640869140625, 378.1698913574219], "compile_time": 1080.33730499983, "verification_time": 0, "benchmark_time": 2653.7108080001417, "GB/s": 6.500528972888334, "GB/s/W (Jetson)": 0.9246799013175161, "GPU (W) (Jetson)": 7.0300316505486435, "GB/s/W (PS)": 0.793414657524823, "GPU (W) (PS)": 8.193104212578726, "strategy_time": 0.02734400004555937, "framework_time": 2.4337009999726433, "timestamp": "2023-11-03 11:29:28.652888+00:00"},
"4,120,1,4,6,0,1,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5682198660714284, "tegra_power": 7.4269730896897785, "ps_energy": 2.955027794107861, "time": 361.4963073730469, "times": [361.35272216796875, 361.3761901855469, 361.4966125488281, 361.50396728515625, 361.5329284667969, 361.457763671875, 361.75396728515625], "compile_time": 1093.6321179997321, "verification_time": 0, "benchmark_time": 2534.2755090000537, "GB/s": 6.798409692920803, "GB/s/W (Jetson)": 0.9569274159378565, "GPU (W) (Jetson)": 7.104415214457912, "GB/s/W (PS)": 0.8316673044159852, "GPU (W) (PS)": 8.174434244105331, "strategy_time": 0.042240000311721815, "framework_time": 4.0402999998150335, "timestamp": "2023-11-03 11:29:32.285228+00:00"},
"16,48,1,2,2,0,0,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5337611607142856, "tegra_power": 7.463682964810653, "ps_energy": 2.938479830360458, "time": 357.50753348214283, "times": [357.2082214355469, 357.81915283203125, 356.85406494140625, 358.0474853515625, 357.47760009765625, 357.849853515625, 357.2963562011719], "compile_time": 989.4510149997586, "verification_time": 0, "benchmark_time": 2506.386295000084, "GB/s": 6.8742607353272875, "GB/s/W (Jetson)": 0.9699414601916088, "GPU (W) (Jetson)": 7.087294457924604, "GB/s/W (PS)": 0.8363508146654628, "GPU (W) (PS)": 8.219350797281122, "strategy_time": 0.02515699998184573, "framework_time": 2.7310499999657623, "timestamp": "2023-11-03 11:29:35.783890+00:00"},
"2,152,1,3,2,0,1,0": {"block_size_x": 2, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6693638392857144, "tegra_power": 7.395506533634327, "ps_energy": 3.061068369355001, "time": 376.3887503487723, "times": [376.336669921875, 376.4522399902344, 376.2918701171875, 376.43853759765625, 376.2880859375, 376.49530029296875, 376.4185485839844], "compile_time": 1151.4337479998176, "verification_time": 0, "benchmark_time": 2648.5554599998977, "GB/s": 6.529419377499246, "GB/s/W (Jetson)": 0.9206687989965505, "GPU (W) (Jetson)": 7.092039378998994, "GB/s/W (PS)": 0.8028569451775563, "GPU (W) (PS)": 8.132730764451727, "strategy_time": 0.0380739998036006, "framework_time": 4.817347000425798, "timestamp": "2023-11-03 11:29:39.588805+00:00"},
"4,80,1,3,4,1,1,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4940011160714284, "tegra_power": 7.41122471600037, "ps_energy": 2.873774969842998, "time": 353.5907418387277, "times": [353.6007385253906, 353.5083312988281, 353.5464172363281, 353.7729797363281, 353.72515869140625, 353.4962463378906, 353.4853210449219], "compile_time": 1082.5850019996324, "verification_time": 0, "benchmark_time": 2478.931101999933, "GB/s": 6.9504082239825955, "GB/s/W (Jetson)": 0.9854045309615708, "GPU (W) (Jetson)": 7.0533552521828735, "GB/s/W (PS)": 0.855181782077483, "GPU (W) (PS)": 8.127404453235723, "strategy_time": 0.0276050000138639, "framework_time": 2.8503250005087466, "timestamp": "2023-11-03 11:29:43.153266+00:00"},
"16,56,1,2,3,0,1,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5330636160714284, "tegra_power": 7.447856175963092, "ps_energy": 2.9281226891330983, "time": 357.49361310686385, "times": [357.93115234375, 358.7895202636719, 357.236572265625, 357.4493713378906, 357.132080078125, 358.3614501953125, 355.5551452636719], "compile_time": 1147.0473610002045, "verification_time": 0, "benchmark_time": 2506.32864399995, "GB/s": 6.874528410848451, "GB/s/W (Jetson)": 0.9702085586826017, "GPU (W) (Jetson)": 7.0856192200396935, "GB/s/W (PS)": 0.839309093543344, "GPU (W) (PS)": 8.190699307004985, "strategy_time": 0.04489699995247065, "framework_time": 4.650885000046401, "timestamp": "2023-11-03 11:29:46.811406+00:00"},
"8,72,1,3,7,1,1,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5166015625, "tegra_power": 7.3854656254083535, "ps_energy": 2.8986167825912292, "time": 357.80211094447543, "times": [356.4248046875, 357.2494812011719, 357.79193115234375, 357.9159240722656, 360.3198547363281, 358.21099853515625, 356.7017822265625], "compile_time": 1084.917893000238, "verification_time": 0, "benchmark_time": 2508.62718999997, "GB/s": 6.868601175976225, "GB/s/W (Jetson)": 0.9765550640279393, "GPU (W) (Jetson)": 7.033501160339806, "GB/s/W (PS)": 0.8478526774425901, "GPU (W) (PS)": 8.10117294987408, "strategy_time": 0.0276040000244393, "framework_time": 3.4263269999428303, "timestamp": "2023-11-03 11:29:50.408461+00:00"},
"1,40,1,2,4,0,1,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.9439174107142856, "tegra_power": 7.1945814042328236, "ps_energy": 4.495660330860899, "time": 563.8365129743304, "times": [563.783935546875, 563.802490234375, 563.6234130859375, 564.0387573242188, 563.77490234375, 563.80517578125, 564.0269165039062], "compile_time": 1122.1475580000515, "verification_time": 0, "benchmark_time": 3950.68394000009, "GB/s": 4.358710270528164, "GB/s/W (Jetson)": 0.6231367810399717, "GPU (W) (Jetson)": 6.99478895027474, "GB/s/W (PS)": 0.5466605168387756, "GPU (W) (PS)": 7.973340192435483, "strategy_time": 0.026198999876214657, "framework_time": 3.4801300002982316, "timestamp": "2023-11-03 11:29:55.485163+00:00"},
"4,112,1,3,4,1,0,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5107421875, "tegra_power": 7.454284819256747, "ps_energy": 2.9014323022381308, "time": 353.42237636021207, "times": [353.1953125, 354.0535888671875, 353.0664978027344, 353.3357238769531, 353.3172912597656, 353.53411865234375, 353.4541015625], "compile_time": 1087.3862309999822, "verification_time": 0, "benchmark_time": 2479.0869700000258, "GB/s": 6.953719301279289, "GB/s/W (Jetson)": 0.9788340723453908, "GPU (W) (Jetson)": 7.104083825583877, "GB/s/W (PS)": 0.8470299300467, "GPU (W) (PS)": 8.209531983003131, "strategy_time": 0.025365000055899145, "framework_time": 2.317758999652142, "timestamp": "2023-11-03 11:29:59.054037+00:00"},
"1,248,1,4,3,0,1,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7188895089285716, "tegra_power": 7.404467616395159, "ps_energy": 3.1372006506239165, "time": 384.7875061035156, "times": [384.782958984375, 384.7019348144531, 384.7306823730469, 384.70703125, 384.8716735839844, 384.8900451660156, 384.8282165527344], "compile_time": 1105.427293000048, "verification_time": 0, "benchmark_time": 2696.9003569997767, "GB/s": 6.386901760107709, "GB/s/W (Jetson)": 0.9038984452768227, "GPU (W) (Jetson)": 7.065950598191032, "GB/s/W (PS)": 0.7833735465760662, "GPU (W) (PS)": 8.153073062044655, "strategy_time": 0.05895999993299483, "framework_time": 4.3950960002803185, "timestamp": "2023-11-03 11:30:02.861177+00:00"},
"8,64,1,2,4,1,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.489955357142857, "tegra_power": 7.435211434849002, "ps_energy": 2.891370898366534, "time": 351.0551103864397, "times": [350.9705810546875, 350.93328857421875, 351.0718078613281, 351.08905029296875, 351.17266845703125, 351.13885498046875, 351.009521484375], "compile_time": 1142.0407380001052, "verification_time": 0, "benchmark_time": 2469.2431729999953, "GB/s": 7.000610238360256, "GB/s/W (Jetson)": 0.987005647691618, "GPU (W) (Jetson)": 7.092776272084251, "GB/s/W (PS)": 0.8499774281426188, "GPU (W) (PS)": 8.236230759278016, "strategy_time": 0.026980000257026404, "framework_time": 8.19549299967548, "timestamp": "2023-11-03 11:30:06.480748+00:00"},
"2,184,1,2,4,1,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.508091517857143, "tegra_power": 7.4698984199307885, "ps_energy": 2.884348240008486, "time": 353.01953560965404, "times": [353.0004577636719, 353.15911865234375, 352.9831848144531, 353.1403503417969, 353.00897216796875, 352.8445739746094, 353.0000915527344], "compile_time": 959.012396000162, "verification_time": 0, "benchmark_time": 2474.5789389999118, "GB/s": 6.961654390473885, "GB/s/W (Jetson)": 0.9798685504505507, "GPU (W) (Jetson)": 7.1046819364422555, "GB/s/W (PS)": 0.8520469081752657, "GPU (W) (PS)": 8.170506017541788, "strategy_time": 0.04385500005810172, "framework_time": 4.915629999686644, "timestamp": "2023-11-03 11:30:09.919662+00:00"},
"2,232,1,3,2,0,1,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5966796875, "tegra_power": 7.433532479100618, "ps_energy": 2.9715504954692733, "time": 365.86924525669644, "times": [366.0205078125, 365.88067626953125, 365.8564453125, 365.83282470703125, 365.8382263183594, 365.86334228515625, 365.7926940917969], "compile_time": 985.8838690001903, "verification_time": 0, "benchmark_time": 2571.2439290000475, "GB/s": 6.717153824382616, "GB/s/W (Jetson)": 0.9464394133132756, "GPU (W) (Jetson)": 7.097288775059929, "GB/s/W (PS)": 0.8270429877422933, "GPU (W) (PS)": 8.121891998285925, "strategy_time": 0.026926999908027938, "framework_time": 2.4743769995438925, "timestamp": "2023-11-03 11:30:13.479638+00:00"},
"2,56,1,3,7,1,0,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3203125, "tegra_power": 7.347567756145321, "ps_energy": 3.786818251911297, "time": 467.3698468889509, "times": [466.9863586425781, 467.4827575683594, 467.4971923828125, 467.4178771972656, 467.3769836425781, 467.4841613769531, 467.3435974121094], "compile_time": 1101.7180530002406, "verification_time": 0, "benchmark_time": 3275.445016000049, "GB/s": 5.258362336293245, "GB/s/W (Jetson)": 0.740171294117647, "GPU (W) (Jetson)": 7.104250567514512, "GB/s/W (PS)": 0.6489881046600509, "GPU (W) (PS)": 8.102401721288325, "strategy_time": 0.02937599992947071, "framework_time": 2.428386999781651, "timestamp": "2023-11-03 11:30:17.859608+00:00"},
"2,112,1,1,8,0,1,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5203683035714284, "tegra_power": 7.400970705306252, "ps_energy": 2.9005916262709173, "time": 355.3978707449777, "times": [355.0867614746094, 355.0735778808594, 355.12359619140625, 355.1247253417969, 356.86614990234375, 355.3393859863281, 355.1708984375], "compile_time": 1076.1662259997138, "verification_time": 0, "benchmark_time": 2494.739761999881, "GB/s": 6.915066752787318, "GB/s/W (Jetson)": 0.9750955828628363, "GPU (W) (Jetson)": 7.091680932945052, "GB/s/W (PS)": 0.8472754240001582, "GPU (W) (PS)": 8.161533495377327, "strategy_time": 0.03390699976080214, "framework_time": 2.504481000414671, "timestamp": "2023-11-03 11:30:21.433130+00:00"},
"2,136,1,4,6,1,0,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8888113839285716, "tegra_power": 7.456641799139279, "ps_energy": 3.2933255220281614, "time": 402.8179016113281, "times": [402.8250427246094, 402.7703552246094, 402.68994140625, 402.7594299316406, 402.8372802734375, 402.92822265625, 402.9150390625], "compile_time": 1079.8448390000885, "verification_time": 0, "benchmark_time": 2822.7378060000774, "GB/s": 6.101019816073851, "GB/s/W (Jetson)": 0.8507305162505432, "GPU (W) (Jetson)": 7.171506957294898, "GB/s/W (PS)": 0.7462365877778494, "GPU (W) (PS)": 8.175717883575674, "strategy_time": 0.02526099979149876, "framework_time": 3.3477290003247617, "timestamp": "2023-11-03 11:30:25.339457+00:00"},
"8,56,1,3,2,0,1,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.533900669642857, "tegra_power": 7.507417353477332, "ps_energy": 2.950484607875166, "time": 358.13133457728793, "times": [358.2635803222656, 358.28631591796875, 358.2377624511719, 358.2161560058594, 357.9205322265625, 357.9241638183594, 358.0708312988281], "compile_time": 1161.3600750001751, "verification_time": 0, "benchmark_time": 2510.9702940003444, "GB/s": 6.862286995637429, "GB/s/W (Jetson)": 0.969888058140175, "GPU (W) (Jetson)": 7.0753391982125455, "GB/s/W (PS)": 0.8329479141970091, "GPU (W) (PS)": 8.23855475075283, "strategy_time": 0.02734400004555937, "framework_time": 2.497918999324611, "timestamp": "2023-11-03 11:30:29.014910+00:00"},
"8,48,1,4,4,0,0,0": {"block_size_x": 8, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.58203125, "tegra_power": 7.537447573565521, "ps_energy": 2.958895304240806, "time": 358.4770202636719, "times": [358.4766540527344, 358.42730712890625, 358.7314147949219, 358.4223937988281, 358.5094299316406, 358.4792785644531, 358.29266357421875], "compile_time": 952.1939969999949, "verification_time": 0, "benchmark_time": 2520.0722810000116, "GB/s": 6.855669571768791, "GB/s/W (Jetson)": 0.9518087745839636, "GPU (W) (Jetson)": 7.20278038492071, "GB/s/W (PS)": 0.8305802494862424, "GPU (W) (PS)": 8.254072470431826, "strategy_time": 0.025103999632847263, "framework_time": 2.4478130003444676, "timestamp": "2023-11-03 11:30:32.489732+00:00"},
"4,176,1,3,7,1,1,0": {"block_size_x": 4, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4771205357142856, "tegra_power": 7.335161953497135, "ps_energy": 2.8868400422506966, "time": 355.8490251813616, "times": [355.7529602050781, 355.84027099609375, 355.8779602050781, 355.7940673828125, 355.83770751953125, 355.9273986816406, 355.9128112792969], "compile_time": 949.2379460002667, "verification_time": 0, "benchmark_time": 2494.0564370003813, "GB/s": 6.90629965544366, "GB/s/W (Jetson)": 0.9921196665915747, "GPU (W) (Jetson)": 6.9611558847233015, "GB/s/W (PS)": 0.8513114561359472, "GPU (W) (PS)": 8.11254166223834, "strategy_time": 0.026824000087799504, "framework_time": 3.211422999356728, "timestamp": "2023-11-03 11:30:35.936702+00:00"},
"2,72,1,2,6,1,0,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8349609375, "tegra_power": 7.454440551253287, "ps_energy": 3.280724810668679, "time": 397.9583958217076, "times": [397.95233154296875, 397.8108825683594, 397.8369140625, 397.9332275390625, 397.9954833984375, 397.9546813964844, 398.2252502441406], "compile_time": 1119.488107000052, "verification_time": 0, "benchmark_time": 2789.822885000376, "GB/s": 6.17551991817016, "GB/s/W (Jetson)": 0.8668902514640027, "GPU (W) (Jetson)": 7.123762099920898, "GB/s/W (PS)": 0.7491027568079051, "GPU (W) (PS)": 8.243888921842226, "strategy_time": 0.02937600038421806, "framework_time": 3.0346999992616475, "timestamp": "2023-11-03 11:30:39.849181+00:00"},
"1,96,1,4,5,1,1,0": {"block_size_x": 1, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6053292410714284, "tegra_power": 7.426308456761373, "ps_energy": 3.0338558712082886, "time": 368.87540544782365, "times": [368.72906494140625, 368.88983154296875, 368.89453125, 368.90338134765625, 368.6961975097656, 369.0733337402344, 368.9414978027344], "compile_time": 1083.2577370001673, "verification_time": 0, "benchmark_time": 2586.0037930001454, "GB/s": 6.662412195837275, "GB/s/W (Jetson)": 0.9432972851405622, "GPU (W) (Jetson)": 7.062897668410546, "GB/s/W (PS)": 0.8100582573229543, "GPU (W) (PS)": 8.224608706360117, "strategy_time": 0.02677100019354839, "framework_time": 3.3918959998118225, "timestamp": "2023-11-03 11:30:43.522230+00:00"},
"2,72,1,3,1,1,0,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8194754464285716, "tegra_power": 7.3319971902742935, "ps_energy": 3.246582623627546, "time": 402.17124720982144, "times": [402.10302734375, 402.08770751953125, 402.1007385253906, 402.35626220703125, 402.03619384765625, 402.2828674316406, 402.23193359375], "compile_time": 1099.6532879998995, "verification_time": 0, "benchmark_time": 2819.7349280003436, "GB/s": 6.110829695186579, "GB/s/W (Jetson)": 0.8716514992577931, "GPU (W) (Jetson)": 7.010634066929181, "GB/s/W (PS)": 0.7569805807849787, "GPU (W) (PS)": 8.072637330867499, "strategy_time": 0.027135999971505953, "framework_time": 2.4614049998490373, "timestamp": "2023-11-03 11:30:47.444166+00:00"},
"1,104,1,2,7,0,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3267299107142856, "tegra_power": 7.408402602507459, "ps_energy": 3.8257973762933295, "time": 467.7550789969308, "times": [467.6097412109375, 467.74896240234375, 468.1021728515625, 467.5997009277344, 467.8523864746094, 467.7185363769531, 467.654052734375], "compile_time": 1132.0325060000869, "verification_time": 0, "benchmark_time": 3278.5438189998786, "GB/s": 5.254031672451654, "GB/s/W (Jetson)": 0.7387434706030361, "GPU (W) (Jetson)": 7.112119269443816, "GB/s/W (PS)": 0.6423758914229472, "GPU (W) (PS)": 8.179061111420733, "strategy_time": 0.02703199970710557, "framework_time": 3.4292899999854853, "timestamp": "2023-11-03 11:30:51.858255+00:00"},
"4,56,1,3,6,1,1,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5203683035714284, "tegra_power": 7.385768412207327, "ps_energy": 2.9088225546087676, "time": 355.5758841378348, "times": [355.52490234375, 355.4361877441406, 355.63671875, 355.65277099609375, 355.64202880859375, 355.4949951171875, 355.6435852050781], "compile_time": 1085.2935779998916, "verification_time": 0, "benchmark_time": 2503.6987849998695, "GB/s": 6.911604834953711, "GB/s/W (Jetson)": 0.9750955828628363, "GPU (W) (Jetson)": 7.088130596040189, "GB/s/W (PS)": 0.8448779373310874, "GPU (W) (PS)": 8.18059571633153, "strategy_time": 0.02791699989757035, "framework_time": 3.749091000372573, "timestamp": "2023-11-03 11:30:55.451094+00:00"},
"1,208,1,3,2,0,0,0": {"block_size_x": 1, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8662109375, "tegra_power": 7.458500601169321, "ps_energy": 3.281720407004936, "time": 401.08446829659596, "times": [400.9352722167969, 400.8981628417969, 401.1233215332031, 401.1151428222656, 401.1675109863281, 401.1538391113281, 401.1980285644531], "compile_time": 982.554317999984, "verification_time": 0, "benchmark_time": 2810.8847769999556, "GB/s": 6.127387606000842, "GB/s/W (Jetson)": 0.8574386371379897, "GPU (W) (Jetson)": 7.1461529030849436, "GB/s/W (PS)": 0.748875496752915, "GPU (W) (PS)": 8.182117898861526, "strategy_time": 0.027136000426253304, "framework_time": 9.895834999952058, "timestamp": "2023-11-03 11:30:59.254566+00:00"},
"4,104,1,4,5,0,1,0": {"block_size_x": 4, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5623604910714284, "tegra_power": 7.465051017722051, "ps_energy": 2.947880270118081, "time": 359.5146963936942, "times": [359.6180114746094, 359.2699890136719, 359.73193359375, 359.32733154296875, 359.6553039550781, 359.2548522949219, 359.7454528808594], "compile_time": 1095.4424769997786, "verification_time": 0, "benchmark_time": 2521.972343000016, "GB/s": 6.835881883695661, "GB/s/W (Jetson)": 0.9591156312952578, "GPU (W) (Jetson)": 7.1272760662486565, "GB/s/W (PS)": 0.833683791337142, "GPU (W) (PS)": 8.199609917726264, "strategy_time": 0.08307500002047163, "framework_time": 3.7684650001210684, "timestamp": "2023-11-03 11:31:02.875886+00:00"},
"1,32,1,3,3,1,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8755580357142856, "tegra_power": 7.3993429904092825, "ps_energy": 3.2856744396150526, "time": 406.05364990234375, "times": [406.00213623046875, 405.9281921386719, 406.1868896484375, 406.147705078125, 406.1639709472656, 406.05743408203125, 405.88922119140625], "compile_time": 1088.7508749997323, "verification_time": 0, "benchmark_time": 2847.057212999971, "GB/s": 6.052402190181161, "GB/s/W (Jetson)": 0.8546515039782651, "GPU (W) (Jetson)": 7.081719463440015, "GB/s/W (PS)": 0.747974288130607, "GPU (W) (PS)": 8.091724924539552, "strategy_time": 0.02614699997138814, "framework_time": 2.9099570001562824, "timestamp": "2023-11-03 11:31:06.814688+00:00"},
"2,48,1,2,7,1,0,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.770228794642857, "tegra_power": 7.497436748821138, "ps_energy": 3.2133038640058658, "time": 387.18103463309154, "times": [387.1249084472656, 387.0072021484375, 387.26239013671875, 387.228759765625, 387.3377990722656, 387.17498779296875, 387.1311950683594], "compile_time": 963.8118910002049, "verification_time": 0, "benchmark_time": 2714.263186000153, "GB/s": 6.347418339663566, "GB/s/W (Jetson)": 0.8871469406254721, "GPU (W) (Jetson)": 7.154866966219144, "GB/s/W (PS)": 0.7648202921388929, "GPU (W) (PS)": 8.299228465699315, "strategy_time": 0.0772409998717194, "framework_time": 6.451592999837885, "timestamp": "2023-11-03 11:31:10.499413+00:00"},
"1,48,1,3,7,0,1,0": {"block_size_x": 1, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.369140625, "tegra_power": 7.292320384985451, "ps_energy": 3.8326623291790645, "time": 479.9820338657924, "times": [479.2764587402344, 479.92620849609375, 479.594482421875, 479.8226623535156, 479.8254699707031, 479.8985900878906, 481.5303649902344], "compile_time": 953.8673100000779, "verification_time": 0, "benchmark_time": 3364.8128299996642, "GB/s": 5.120191645938082, "GB/s/W (Jetson)": 0.7294441739130434, "GPU (W) (Jetson)": 7.019305697475427, "GB/s/W (PS)": 0.6412252864776649, "GPU (W) (PS)": 7.985012060369563, "strategy_time": 0.025105000077019213, "framework_time": 3.0255840001700562, "timestamp": "2023-11-03 11:31:14.821501+00:00"},
"2,104,1,3,7,1,0,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8136160714285716, "tegra_power": 7.509348538450361, "ps_energy": 3.2536299686409103, "time": 392.14361572265625, "times": [391.89019775390625, 392.4199523925781, 392.18328857421875, 392.21307373046875, 392.2099609375, 391.975830078125, 392.1130065917969], "compile_time": 1104.0342400001464, "verification_time": 0, "benchmark_time": 2749.2667310002616, "GB/s": 6.267091701776265, "GB/s/W (Jetson)": 0.8734667195557317, "GPU (W) (Jetson)": 7.174963351739233, "GB/s/W (PS)": 0.7553409649182006, "GPU (W) (PS)": 8.29703669316407, "strategy_time": 0.02807400005622185, "framework_time": 2.984019999530574, "timestamp": "2023-11-03 11:31:18.677887+00:00"},
"4,32,1,3,8,1,1,0": {"block_size_x": 4, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5126953125, "tegra_power": 7.419595721233613, "ps_energy": 2.8787506810814585, "time": 357.09378487723217, "times": [356.8215637207031, 357.21380615234375, 357.0276184082031, 356.94708251953125, 357.2008361816406, 357.1987609863281, 357.246826171875], "compile_time": 1096.8870009996863, "verification_time": 0, "benchmark_time": 2503.0613670001003, "GB/s": 6.882225633932318, "GB/s/W (Jetson)": 0.9780732219199377, "GPU (W) (Jetson)": 7.036513708475374, "GB/s/W (PS)": 0.853703662547378, "GPU (W) (PS)": 8.061609591080295, "strategy_time": 0.0276050000138639, "framework_time": 4.078418000062811, "timestamp": "2023-11-03 11:31:22.282020+00:00"},
"2,216,1,2,5,1,1,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6142578125, "tegra_power": 7.325998423928551, "ps_energy": 3.022174446776262, "time": 369.7717851911272, "times": [369.72119140625, 369.7579650878906, 369.7028503417969, 369.8063659667969, 369.77886962890625, 369.7864990234375, 369.8487548828125], "compile_time": 980.4014030000872, "verification_time": 0, "benchmark_time": 2610.7643660002395, "GB/s": 6.646261554893158, "GB/s/W (Jetson)": 0.9400756070227866, "GPU (W) (Jetson)": 7.069922360757584, "GB/s/W (PS)": 0.8131893255273563, "GPU (W) (PS)": 8.173080174881823, "strategy_time": 0.024948999907792313, "framework_time": 2.5582819998817286, "timestamp": "2023-11-03 11:31:25.876118+00:00"},
"2,72,1,3,4,1,0,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8374720982142856, "tegra_power": 7.403908555002283, "ps_energy": 3.2764281534616333, "time": 398.95887538364957, "times": [398.810791015625, 398.9364013671875, 398.7772521972656, 398.9039001464844, 399.1012878417969, 399.1293640136719, 399.0531311035156], "compile_time": 958.7131969997245, "verification_time": 0, "benchmark_time": 2802.58539200031, "GB/s": 6.160033406041427, "GB/s/W (Jetson)": 0.8661230542307881, "GPU (W) (Jetson)": 7.112191940800155, "GB/s/W (PS)": 0.7500851185775217, "GPU (W) (PS)": 8.212445832445592, "strategy_time": 0.02541699996072566, "framework_time": 2.596928000002663, "timestamp": "2023-11-03 11:31:29.640123+00:00"},
"2,248,1,4,8,1,1,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6268136160714284, "tegra_power": 7.421888906399068, "ps_energy": 3.041400202105381, "time": 372.2371826171875, "times": [372.0849914550781, 372.27764892578125, 372.2508850097656, 372.1833190917969, 372.09051513671875, 372.4400634765625, 372.3328552246094], "compile_time": 1092.041060000156, "verification_time": 0, "benchmark_time": 2609.1446930004167, "GB/s": 6.602242104672871, "GB/s/W (Jetson)": 0.935582176429975, "GPU (W) (Jetson)": 7.056827578594882, "GB/s/W (PS)": 0.8080488711412424, "GPU (W) (PS)": 8.170597522583304, "strategy_time": 0.05651100036629941, "framework_time": 6.585916999028996, "timestamp": "2023-11-03 11:31:33.348082+00:00"},
"2,128,1,1,5,0,1,0": {"block_size_x": 2, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4765625, "tegra_power": 7.418165941503583, "ps_energy": 2.880529794873447, "time": 352.3623482840402, "times": [352.41729736328125, 352.3331298828125, 352.55548095703125, 352.2601013183594, 352.3144226074219, 352.4057922363281, 352.2502136230469], "compile_time": 1084.9454939998395, "verification_time": 0, "benchmark_time": 2470.340562000274, "GB/s": 6.974638499170525, "GB/s/W (Jetson)": 0.9923432176656151, "GPU (W) (Jetson)": 7.028453840373537, "GB/s/W (PS)": 0.8531763859460345, "GPU (W) (PS)": 8.174908042534229, "strategy_time": 0.0276050000138639, "framework_time": 2.799537000100827, "timestamp": "2023-11-03 11:31:36.906252+00:00"},
"2,32,1,4,7,0,1,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6156529017857144, "tegra_power": 7.446312197139814, "ps_energy": 3.038547910563596, "time": 367.6282435825893, "times": [367.4853515625, 367.6006774902344, 367.7255859375, 367.7668151855469, 367.6148986816406, 367.6230163574219, 367.58135986328125], "compile_time": 1095.4184180000084, "verification_time": 0, "benchmark_time": 2577.1850840001207, "GB/s": 6.685014122011791, "GB/s/W (Jetson)": 0.9395742066243532, "GPU (W) (Jetson)": 7.114940017382252, "GB/s/W (PS)": 0.8088073883765615, "GPU (W) (PS)": 8.26527331238894, "strategy_time": 0.025782000193430576, "framework_time": 3.197045999513648, "timestamp": "2023-11-03 11:31:40.582509+00:00"},
"8,32,1,4,4,1,0,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5107421875, "tegra_power": 7.449170693057544, "ps_energy": 2.885083468920649, "time": 355.44459751674106, "times": [355.3183288574219, 355.4070739746094, 355.29473876953125, 355.4672546386719, 355.51739501953125, 355.70489501953125, 355.4024963378906], "compile_time": 1104.1026580001017, "verification_time": 0, "benchmark_time": 2491.4704970001367, "GB/s": 6.9141576976261385, "GB/s/W (Jetson)": 0.9788340723453908, "GPU (W) (Jetson)": 7.063666757184984, "GB/s/W (PS)": 0.851829774241999, "GPU (W) (PS)": 8.116830271375173, "strategy_time": 0.03895899999406538, "framework_time": 3.3686099995975383, "timestamp": "2023-11-03 11:31:44.181573+00:00"},
"2,80,1,2,7,0,1,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5258091517857144, "tegra_power": 7.459154145271094, "ps_energy": 2.9472625811098885, "time": 356.34202793666293, "times": [356.37359619140625, 356.34197998046875, 356.3273010253906, 356.4088439941406, 356.3403625488281, 356.2682189941406, 356.3338928222656], "compile_time": 1124.9066240002321, "verification_time": 0, "benchmark_time": 2497.6471710001533, "GB/s": 6.8967447208804105, "GB/s/W (Jetson)": 0.9729951284175641, "GPU (W) (Jetson)": 7.088159559541649, "GB/s/W (PS)": 0.8338585152716559, "GPU (W) (PS)": 8.270881204149577, "strategy_time": 0.0276050000138639, "framework_time": 3.460539999196044, "timestamp": "2023-11-03 11:31:47.807974+00:00"},
"16,64,1,4,4,0,0,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.616489955357143, "tegra_power": 7.62896937671817, "ps_energy": 3.0324010843108096, "time": 359.30332728794644, "times": [359.39453125, 359.20391845703125, 359.40240478515625, 359.29656982421875, 359.3297424316406, 359.3342590332031, 359.161865234375], "compile_time": 952.371901999868, "verification_time": 0, "benchmark_time": 2518.3338870001535, "GB/s": 6.839903260986152, "GB/s/W (Jetson)": 0.9392736230338575, "GPU (W) (Jetson)": 7.282120026849298, "GB/s/W (PS)": 0.810446880762329, "GPU (W) (PS)": 8.439668809080182, "strategy_time": 0.026823999633052154, "framework_time": 2.6476060002096347, "timestamp": "2023-11-03 11:31:51.281704+00:00"},
"4,232,1,3,3,0,1,0": {"block_size_x": 4, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5982142857142856, "tegra_power": 7.347507606096094, "ps_energy": 3.025814791007828, "time": 370.80123029436385, "times": [371.6504821777344, 369.3315124511719, 371.85943603515625, 369.4295349121094, 371.8620300292969, 369.5179748535156, 371.9576416015625], "compile_time": 1094.1332369998236, "verification_time": 0, "benchmark_time": 2599.6380800002044, "GB/s": 6.6278097244958225, "GB/s/W (Jetson)": 0.945880412371134, "GPU (W) (Jetson)": 7.007027144035283, "GB/s/W (PS)": 0.812210981089636, "GPU (W) (PS)": 8.160206989080804, "strategy_time": 0.023489999875891954, "framework_time": 2.6286479996997514, "timestamp": "2023-11-03 11:31:54.978479+00:00"},
"4,224,1,3,2,0,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6498325892857144, "tegra_power": 7.331799982312683, "ps_energy": 3.0752991964465246, "time": 379.39569091796875, "times": [381.2348327636719, 376.5411376953125, 380.779541015625, 374.10760498046875, 380.5980224609375, 378.2537536621094, 384.25494384765625], "compile_time": 1137.797873999716, "verification_time": 0, "benchmark_time": 2659.448958000212, "GB/s": 6.477669775462397, "GB/s/W (Jetson)": 0.9274548173107295, "GPU (W) (Jetson)": 6.984350778666723, "GB/s/W (PS)": 0.7991417559760463, "GPU (W) (PS)": 8.105783144256776, "strategy_time": 0.024062999727902934, "framework_time": 2.78297500062763, "timestamp": "2023-11-03 11:31:58.778963+00:00"},
"4,176,1,1,7,0,0,0": {"block_size_x": 4, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.704799107142857, "tegra_power": 7.413608434497749, "ps_energy": 3.1381611042330144, "time": 383.7105800083705, "times": [384.0025634765625, 383.8986511230469, 383.4785461425781, 383.44390869140625, 383.8782958984375, 383.568603515625, 383.7034912109375], "compile_time": 941.0586210001384, "verification_time": 0, "benchmark_time": 2689.644343999589, "GB/s": 6.404827304856665, "GB/s/W (Jetson)": 0.9086072209614193, "GPU (W) (Jetson)": 7.049060536938681, "GB/s/W (PS)": 0.7831337902585636, "GPU (W) (PS)": 8.178458629325666, "strategy_time": 0.05911600010222173, "framework_time": 4.022686000098474, "timestamp": "2023-11-03 11:32:02.413843+00:00"},
"4,184,1,4,4,0,0,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5736607142857144, "tegra_power": 7.532444361725376, "ps_energy": 2.984007653021763, "time": 358.47498866489957, "times": [358.2208251953125, 358.3529052734375, 358.46527099609375, 358.6358337402344, 358.58917236328125, 358.5231628417969, 358.5377502441406], "compile_time": 1091.4520900000753, "verification_time": 0, "benchmark_time": 2512.7353309999307, "GB/s": 6.855708425162545, "GB/s/W (Jetson)": 0.9549044232437119, "GPU (W) (Jetson)": 7.179470801773449, "GB/s/W (PS)": 0.823590381047215, "GPU (W) (PS)": 8.324172529122238, "strategy_time": 0.04489699995247065, "framework_time": 4.396443000132422, "timestamp": "2023-11-03 11:32:06.022528+00:00"},
"2,56,1,4,5,1,1,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9093191964285716, "tegra_power": 7.364379719961758, "ps_energy": 3.34288506762979, "time": 412.4762878417969, "times": [412.5081787109375, 412.5557861328125, 412.8908996582031, 412.39410400390625, 412.40985107421875, 412.1513977050781, 412.4237976074219], "compile_time": 1097.2754389999864, "verification_time": 0, "benchmark_time": 2891.6502480001327, "GB/s": 5.958160680845245, "GB/s/W (Jetson)": 0.8447337105591253, "GPU (W) (Jetson)": 7.053300473709718, "GB/s/W (PS)": 0.7351733458615479, "GPU (W) (PS)": 8.104429675511279, "strategy_time": 0.025990000267483993, "framework_time": 3.0731339998055773, "timestamp": "2023-11-03 11:32:10.014631+00:00"},
"2,80,1,4,4,1,0,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5385044642857144, "tegra_power": 7.4784488049899505, "ps_energy": 2.9617533183923763, "time": 357.817626953125, "times": [357.6356201171875, 357.80462646484375, 357.860107421875, 357.9798889160156, 357.884521484375, 357.8735046386719, 357.68511962890625], "compile_time": 981.481647000237, "verification_time": 0, "benchmark_time": 2510.2269679996425, "GB/s": 6.868303333535749, "GB/s/W (Jetson)": 0.9681290833150141, "GPU (W) (Jetson)": 7.094408640238019, "GB/s/W (PS)": 0.8297787613635466, "GPU (W) (PS)": 8.277270585052461, "strategy_time": 0.04276099980415893, "framework_time": 4.859474000113551, "timestamp": "2023-11-03 11:32:13.511318+00:00"},
"4,256,1,4,7,1,1,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.495396205357143, "tegra_power": 7.411076430099657, "ps_energy": 2.8598674679170863, "time": 353.12146432059154, "times": [353.117919921875, 353.08062744140625, 353.0321960449219, 353.19097900390625, 353.08660888671875, 353.0370178222656, 353.3049011230469], "compile_time": 957.0666859999619, "verification_time": 0, "benchmark_time": 2475.341736000246, "GB/s": 6.959644904985998, "GB/s/W (Jetson)": 0.9848536255381002, "GPU (W) (Jetson)": 7.066679478570651, "GB/s/W (PS)": 0.8593405210451699, "GPU (W) (PS)": 8.098820821950016, "strategy_time": 0.027395999950385885, "framework_time": 3.6648659997808863, "timestamp": "2023-11-03 11:32:16.947475+00:00"},
"2,192,1,3,6,1,0,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.840122767857143, "tegra_power": 7.471971654221632, "ps_energy": 3.272977271595924, "time": 400.0099618094308, "times": [400.00775146484375, 399.910888671875, 400.1223449707031, 399.9969787597656, 400.1197509765625, 400.05072021484375, 399.8612976074219], "compile_time": 1094.7014889998172, "verification_time": 0, "benchmark_time": 2805.1388529997894, "GB/s": 6.143846990417773, "GB/s/W (Jetson)": 0.8653147067491894, "GPU (W) (Jetson)": 7.100130094285523, "GB/s/W (PS)": 0.750875975011479, "GPU (W) (PS)": 8.182239404215654, "strategy_time": 0.025209000341419596, "framework_time": 2.851150999958918, "timestamp": "2023-11-03 11:32:20.850260+00:00"},
"4,208,1,4,2,1,0,0": {"block_size_x": 4, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5232979910714284, "tegra_power": 7.464799094487504, "ps_energy": 2.937868854567309, "time": 355.68028477260043, "times": [355.5865478515625, 355.56103515625, 355.80975341796875, 356.0921325683594, 355.9737548828125, 355.486572265625, 355.252197265625], "compile_time": 1143.4573080000519, "verification_time": 0, "benchmark_time": 2493.5822859997643, "GB/s": 6.90957611432198, "GB/s/W (Jetson)": 0.9739634433571073, "GPU (W) (Jetson)": 7.094286917490145, "GB/s/W (PS)": 0.8365247469026171, "GPU (W) (PS)": 8.259858587454733, "strategy_time": 0.04770999976244639, "framework_time": 8.10432900016167, "timestamp": "2023-11-03 11:32:24.495522+00:00"},
"16,64,1,4,2,0,0,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.608119419642857, "tegra_power": 7.65744198194159, "ps_energy": 2.961340221547029, "time": 357.5692400251116, "times": [357.5844421386719, 357.6039123535156, 357.6244201660156, 357.56951904296875, 357.49072265625, 357.5228576660156, 357.58880615234375], "compile_time": 1133.793625999715, "verification_time": 0, "benchmark_time": 2509.3662959998255, "GB/s": 6.8730744284027505, "GB/s/W (Jetson)": 0.9422881412142283, "GPU (W) (Jetson)": 7.294026240790994, "GB/s/W (PS)": 0.829894512666339, "GPU (W) (PS)": 8.281865132859465, "strategy_time": 0.02484400010871468, "framework_time": 2.651302000231226, "timestamp": "2023-11-03 11:32:28.141710+00:00"},
"1,256,1,4,2,1,0,0": {"block_size_x": 1, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5771484375, "tegra_power": 7.520818986727451, "ps_energy": 2.994202835145448, "time": 360.24068341936385, "times": [360.00714111328125, 360.2796936035156, 360.2469177246094, 360.2373046875, 360.4454040527344, 360.2652587890625, 360.20306396484375], "compile_time": 1135.615331000281, "verification_time": 0, "benchmark_time": 2530.3794149999703, "GB/s": 6.822105645239007, "GB/s/W (Jetson)": 0.9536121258052291, "GPU (W) (Jetson)": 7.153962770217952, "GB/s/W (PS)": 0.8207860774003369, "GPU (W) (PS)": 8.311673203383952, "strategy_time": 0.024948999907792313, "framework_time": 2.2873359998811793, "timestamp": "2023-11-03 11:32:31.810371+00:00"},
"2,48,1,3,8,1,1,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.565150669642857, "tegra_power": 7.480128205547167, "ps_energy": 2.9488636951230416, "time": 359.95650373186385, "times": [359.74261474609375, 359.95208740234375, 359.7877197265625, 359.98406982421875, 360.123291015625, 360.031982421875, 360.0737609863281], "compile_time": 1097.192017999987, "verification_time": 0, "benchmark_time": 2523.266090999641, "GB/s": 6.827491584457374, "GB/s/W (Jetson)": 0.958072377223038, "GPU (W) (Jetson)": 7.126279545024336, "GB/s/W (PS)": 0.833405763740279, "GPU (W) (PS)": 8.192277857326028, "strategy_time": 0.02598999981273664, "framework_time": 2.708856000481319, "timestamp": "2023-11-03 11:32:35.433620+00:00"},
"1,144,1,1,5,0,1,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8270089285714284, "tegra_power": 7.375768668102829, "ps_energy": 3.2158072600614105, "time": 400.7584751674107, "times": [400.69927978515625, 400.871826171875, 400.79266357421875, 400.7135925292969, 400.7806701660156, 400.71514892578125, 400.73614501953125], "compile_time": 1067.8352429999904, "verification_time": 0, "benchmark_time": 2808.5575169998265, "GB/s": 6.132371870547154, "GB/s/W (Jetson)": 0.8693287011448875, "GPU (W) (Jetson)": 7.0541463343738116, "GB/s/W (PS)": 0.7642249056782925, "GPU (W) (PS)": 8.024302564575974, "strategy_time": 0.025520999770378694, "framework_time": 2.6268220003657916, "timestamp": "2023-11-03 11:32:39.313018+00:00"},
"1,200,1,2,5,1,0,0": {"block_size_x": 1, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.171595982142857, "tegra_power": 7.441155001858874, "ps_energy": 3.624021252411954, "time": 444.4332711356027, "times": [444.3206787109375, 444.6087951660156, 444.53204345703125, 444.41717529296875, 444.31927490234375, 444.4649963378906, 444.36993408203125], "compile_time": 1122.352937999949, "verification_time": 0, "benchmark_time": 3116.630344999976, "GB/s": 5.5297390173341725, "GB/s/W (Jetson)": 0.7748780153074689, "GPU (W) (Jetson)": 7.136270365265159, "GB/s/W (PS)": 0.6781417185024379, "GPU (W) (PS)": 8.154252815393326, "strategy_time": 0.025365000055899145, "framework_time": 2.290617999733513, "timestamp": "2023-11-03 11:32:43.554374+00:00"},
"4,168,1,2,7,1,1,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5093470982142856, "tegra_power": 7.459260061131033, "ps_energy": 2.887884261492997, "time": 353.4871346609933, "times": [353.5091552734375, 353.6517639160156, 353.51495361328125, 353.5010986328125, 353.3453674316406, 353.4338684082031, 353.4537353515625], "compile_time": 1126.2652000000344, "verification_time": 0, "benchmark_time": 2478.0424020000282, "GB/s": 6.952445390571075, "GB/s/W (Jetson)": 0.9793782620781676, "GPU (W) (Jetson)": 7.098835720346197, "GB/s/W (PS)": 0.8510036336184241, "GPU (W) (PS)": 8.169701180956928, "strategy_time": 0.02864699990823283, "framework_time": 3.471995999916544, "timestamp": "2023-11-03 11:32:47.162625+00:00"},
"4,88,1,3,5,1,0,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5552455357142856, "tegra_power": 7.451510014575538, "ps_energy": 2.948275731018709, "time": 360.95833478655135, "times": [361.83740234375, 360.53759765625, 361.91943359375, 361.25750732421875, 360.13739013671875, 360.16058349609375, 360.8584289550781], "compile_time": 945.761389999916, "verification_time": 0, "benchmark_time": 2530.2449960004196, "GB/s": 6.808542048082291, "GB/s/W (Jetson)": 0.9617862415374535, "GPU (W) (Jetson)": 7.079059518670766, "GB/s/W (PS)": 0.8335719668766641, "GPU (W) (PS)": 8.167911492505468, "strategy_time": 0.1343769999948563, "framework_time": 4.195812999569171, "timestamp": "2023-11-03 11:32:50.643031+00:00"},
"2,144,1,1,4,0,1,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.48046875, "tegra_power": 7.425513716473721, "ps_energy": 2.9088355593342254, "time": 352.4720546177455, "times": [352.43719482421875, 352.45281982421875, 352.3825378417969, 352.3866271972656, 352.46484375, 352.57818603515625, 352.6021728515625], "compile_time": 1077.448366000226, "verification_time": 0, "benchmark_time": 2471.5336879999086, "GB/s": 6.9724676546776365, "GB/s/W (Jetson)": 0.9907804724409448, "GPU (W) (Jetson)": 7.0373486848200155, "GB/s/W (PS)": 0.8448741600788514, "GPU (W) (PS)": 8.252670023695483, "strategy_time": 0.027083999611932086, "framework_time": 2.750470000137284, "timestamp": "2023-11-03 11:32:54.195152+00:00"},
"4,88,1,4,8,0,0,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.630580357142857, "tegra_power": 7.564716415251892, "ps_energy": 3.0436565020996307, "time": 364.49097115652904, "times": [364.4471740722656, 364.7111511230469, 364.4309387207031, 364.50823974609375, 364.5501708984375, 364.559326171875, 364.22979736328125], "compile_time": 1086.0370319996946, "verification_time": 0, "benchmark_time": 2564.419521000218, "GB/s": 6.742553847635897, "GB/s/W (Jetson)": 0.9342425116673737, "GPU (W) (Jetson)": 7.217134484281, "GB/s/W (PS)": 0.8074498545761171, "GPU (W) (PS)": 8.350430443975375, "strategy_time": 0.04718799982583732, "framework_time": 3.917160000128206, "timestamp": "2023-11-03 11:32:57.849631+00:00"},
"1,208,1,3,6,0,0,0": {"block_size_x": 1, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9775390625, "tegra_power": 7.572330351247159, "ps_energy": 3.4722118454558637, "time": 410.34447806222096, "times": [410.2654724121094, 410.33197021484375, 410.2247009277344, 410.361083984375, 410.4284973144531, 410.4380187988281, 410.3616027832031], "compile_time": 1081.2978320000184, "verification_time": 0, "benchmark_time": 2876.3704560001315, "GB/s": 5.989114345112136, "GB/s/W (Jetson)": 0.8253795998688094, "GPU (W) (Jetson)": 7.256193811991574, "GB/s/W (PS)": 0.7077909152393159, "GPU (W) (PS)": 8.461699940139972, "strategy_time": 0.025676999939605594, "framework_time": 2.5923959997271595, "timestamp": "2023-11-03 11:33:01.810271+00:00"},
"4,176,1,4,5,0,1,0": {"block_size_x": 4, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5304129464285716, "tegra_power": 7.406776326431328, "ps_energy": 2.9361569169323047, "time": 360.0035182407924, "times": [359.96917724609375, 360.1053161621094, 359.9906921386719, 359.9841003417969, 359.91656494140625, 359.9336853027344, 360.1250915527344], "compile_time": 1094.6388259999367, "verification_time": 0, "benchmark_time": 2523.5363140000118, "GB/s": 6.826599951048829, "GB/s/W (Jetson)": 0.9712248759510419, "GPU (W) (Jetson)": 7.028856158944748, "GB/s/W (PS)": 0.8370124858884241, "GPU (W) (PS)": 8.155911729086, "strategy_time": 0.02484400010871468, "framework_time": 2.2924399995645217, "timestamp": "2023-11-03 11:33:05.430821+00:00"},
"2,168,1,3,7,1,1,0": {"block_size_x": 2, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6982421875, "tegra_power": 7.390625080233009, "ps_energy": 3.07953167893902, "time": 381.17649623325894, "times": [381.08734130859375, 381.2839050292969, 381.2447814941406, 381.2551574707031, 381.1284484863281, 381.26995849609375, 380.96588134765625], "compile_time": 1076.0510230002183, "verification_time": 0, "benchmark_time": 2672.199262000049, "GB/s": 6.447406973634818, "GB/s/W (Jetson)": 0.910815200868621, "GPU (W) (Jetson)": 7.078721311947904, "GB/s/W (PS)": 0.7980434222539668, "GPU (W) (PS)": 8.079017749967765, "strategy_time": 0.09791900038180756, "framework_time": 3.3707939992382308, "timestamp": "2023-11-03 11:33:09.182620+00:00"},
"2,80,1,2,5,0,0,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7410714285714284, "tegra_power": 7.512457515137697, "ps_energy": 3.15940118069167, "time": 386.51300048828125, "times": [386.31646728515625, 386.4293212890625, 386.53082275390625, 386.5155334472656, 386.7680358886719, 386.6585388183594, 386.3722839355469], "compile_time": 1120.8048690000396, "verification_time": 0, "benchmark_time": 2710.4425470001843, "GB/s": 6.358388972415721, "GB/s/W (Jetson)": 0.8965837133550488, "GPU (W) (Jetson)": 7.09179620118505, "GB/s/W (PS)": 0.7778689249783629, "GPU (W) (PS)": 8.174113617654267, "strategy_time": 0.04937599987897556, "framework_time": 5.418594999810011, "timestamp": "2023-11-03 11:33:13.019413+00:00"},
"1,144,1,3,5,1,0,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2059151785714284, "tegra_power": 7.435538962881028, "ps_energy": 3.6551691823172274, "time": 448.34425136021207, "times": [448.0939636230469, 448.0985412597656, 448.4365234375, 448.3478088378906, 448.34130859375, 448.5914611816406, 448.5001525878906], "compile_time": 1087.328078000155, "verification_time": 0, "benchmark_time": 3141.9151109998893, "GB/s": 5.481502199579886, "GB/s/W (Jetson)": 0.7665829765013055, "GPU (W) (Jetson)": 7.150566041262138, "GB/s/W (PS)": 0.6723628585755317, "GPU (W) (PS)": 8.152595179324747, "strategy_time": 0.024947999918367714, "framework_time": 2.6543750000200816, "timestamp": "2023-11-03 11:33:17.251780+00:00"},
"2,200,1,4,2,1,0,0": {"block_size_x": 2, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.669224330357143, "tegra_power": 7.47341375975737, "ps_energy": 3.088277906822051, "time": 375.3696812220982, "times": [375.32147216796875, 375.20733642578125, 375.36322021484375, 375.5009460449219, 375.26556396484375, 375.5331726074219, 375.39605712890625], "compile_time": 1143.1942120002532, "verification_time": 0, "benchmark_time": 2630.848894999872, "GB/s": 6.547145715122075, "GB/s/W (Jetson)": 0.9207169184132127, "GPU (W) (Jetson)": 7.110921483234603, "GB/s/W (PS)": 0.7957833051783084, "GPU (W) (PS)": 8.227297145489976, "strategy_time": 0.04286500006855931, "framework_time": 4.535191999821109, "timestamp": "2023-11-03 11:33:21.030462+00:00"},
"4,224,1,4,5,1,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.568359375, "tegra_power": 7.453051475181377, "ps_energy": 2.947621595271422, "time": 363.63472638811385, "times": [362.67218017578125, 366.54833984375, 362.7069396972656, 363.59454345703125, 362.72802734375, 364.3609313964844, 362.8321228027344], "compile_time": 1085.9299869998722, "verification_time": 0, "benchmark_time": 2549.0067400000953, "GB/s": 6.758430429378077, "GB/s/W (Jetson)": 0.9568754372623574, "GPU (W) (Jetson)": 7.0630200820224855, "GB/s/W (PS)": 0.8337569530439336, "GPU (W) (PS)": 8.105995883697238, "strategy_time": 0.025782000193430576, "framework_time": 3.432199999679142, "timestamp": "2023-11-03 11:33:24.669259+00:00"},
"1,144,1,1,8,0,1,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8363560267857144, "tegra_power": 7.38352672334441, "ps_energy": 3.297488070402843, "time": 402.6453377859933, "times": [402.6383361816406, 402.64068603515625, 402.48895263671875, 402.61431884765625, 402.666259765625, 402.65484619140625, 402.81396484375], "compile_time": 960.2067920000081, "verification_time": 0, "benchmark_time": 2822.074502000305, "GB/s": 6.10363456215211, "GB/s/W (Jetson)": 0.8664638630662533, "GPU (W) (Jetson)": 7.044303660342498, "GB/s/W (PS)": 0.7452945840983022, "GPU (W) (PS)": 8.18955979605919, "strategy_time": 0.049792000027082395, "framework_time": 3.862730999571795, "timestamp": "2023-11-03 11:33:28.455814+00:00"},
"8,128,1,2,5,0,0,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5398995535714284, "tegra_power": 7.5337781063819635, "ps_energy": 2.9558826380731, "time": 358.13302176339283, "times": [358.13916015625, 358.2496337890625, 358.2533874511719, 358.0523986816406, 358.1561584472656, 358.10302734375, 357.9773864746094], "compile_time": 1148.9269959997728, "verification_time": 0, "benchmark_time": 2511.1761739999565, "GB/s": 6.862254666992586, "GB/s/W (Jetson)": 0.9675973195649785, "GPU (W) (Jetson)": 7.092056300939095, "GB/s/W (PS)": 0.8314267854701011, "GPU (W) (PS)": 8.253588634521277, "strategy_time": 0.04291699997338583, "framework_time": 3.7914280005679757, "timestamp": "2023-11-03 11:33:32.119832+00:00"},
"16,64,1,1,2,0,0,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4832589285714284, "tegra_power": 7.47214685611102, "ps_energy": 2.893373890051797, "time": 352.198983328683, "times": [352.1219177246094, 352.14776611328125, 352.1852722167969, 352.16375732421875, 352.3608703613281, 352.1487121582031, 352.26458740234375], "compile_time": 1132.2321000002376, "verification_time": 0, "benchmark_time": 2469.7681990001, "GB/s": 6.977873634877847, "GB/s/W (Jetson)": 0.9896672359550561, "GPU (W) (Jetson)": 7.050727134706047, "GB/s/W (PS)": 0.8493890155191812, "GPU (W) (PS)": 8.215168206069496, "strategy_time": 0.08692900019013905, "framework_time": 6.311265999556781, "timestamp": "2023-11-03 11:33:35.728362+00:00"},
"2,136,1,3,6,1,1,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6734095982142856, "tegra_power": 7.404406362229411, "ps_energy": 3.0826837055639253, "time": 378.4660077776228, "times": [378.51678466796875, 378.4473876953125, 378.5569152832031, 378.52557373046875, 378.3925476074219, 378.3603515625, 378.4624938964844], "compile_time": 1125.4868760001955, "verification_time": 0, "benchmark_time": 2652.305657999932, "GB/s": 6.493581852782997, "GB/s/W (Jetson)": 0.919275520534363, "GPU (W) (Jetson)": 7.063803732104561, "GB/s/W (PS)": 0.7972274273757914, "GPU (W) (PS)": 8.145206285937398, "strategy_time": 0.07911600005172659, "framework_time": 7.326807000026747, "timestamp": "2023-11-03 11:33:39.513668+00:00"},
"2,232,1,2,5,1,0,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.758510044642857, "tegra_power": 7.487068958026867, "ps_energy": 3.139579218378068, "time": 386.27894374302457, "times": [386.0119323730469, 386.2797546386719, 386.2417297363281, 386.29962158203125, 386.3738098144531, 386.5166015625, 386.2291564941406], "compile_time": 1149.375412000154, "verification_time": 0, "benchmark_time": 2707.1871220000503, "GB/s": 6.362241690385639, "GB/s/W (Jetson)": 0.8909157335760886, "GPU (W) (Jetson)": 7.141238447824844, "GB/s/W (PS)": 0.7827800571535238, "GPU (W) (PS)": 8.127751380791546, "strategy_time": 0.027135999971505953, "framework_time": 3.0858400000397523, "timestamp": "2023-11-03 11:33:43.373399+00:00"},
"8,120,1,4,7,1,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.653041294642857, "tegra_power": 7.404279478239645, "ps_energy": 3.076292718054122, "time": 378.6619611467634, "times": [378.7747497558594, 378.7518615722656, 378.9125671386719, 378.4010925292969, 378.5893249511719, 378.6224060058594, 378.58172607421875], "compile_time": 943.0036700000528, "verification_time": 0, "benchmark_time": 2654.603622000195, "GB/s": 6.490221496126126, "GB/s/W (Jetson)": 0.9263331124783087, "GPU (W) (Jetson)": 7.006358089437402, "GB/s/W (PS)": 0.7988836646060554, "GPU (W) (PS)": 8.124113414343721, "strategy_time": 0.028437999844754813, "framework_time": 3.3616269997764903, "timestamp": "2023-11-03 11:33:46.974487+00:00"},
"2,80,1,3,2,1,0,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5496651785714284, "tegra_power": 7.540944266284995, "ps_energy": 2.8955597694249655, "time": 354.8695635114397, "times": [354.8656311035156, 354.97052001953125, 354.9192810058594, 354.8031921386719, 354.97015380859375, 354.7686462402344, 354.7895202636719], "compile_time": 986.1276850001559, "verification_time": 0, "benchmark_time": 2487.771755000267, "GB/s": 6.925361464313847, "GB/s/W (Jetson)": 0.9638912672357189, "GPU (W) (Jetson)": 7.184795318433209, "GB/s/W (PS)": 0.8487478055022359, "GPU (W) (PS)": 8.159504412757627, "strategy_time": 0.04708400001618429, "framework_time": 4.758578999371821, "timestamp": "2023-11-03 11:33:50.453279+00:00"},
"4,216,1,1,3,0,1,0": {"block_size_x": 4, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5219029017857144, "tegra_power": 7.334977129712733, "ps_energy": 2.9052994910304863, "time": 362.55919974190846, "times": [364.01983642578125, 360.50079345703125, 364.29998779296875, 360.5520324707031, 364.0670166015625, 360.4979553222656, 363.9767761230469], "compile_time": 1085.739853999712, "verification_time": 0, "benchmark_time": 2543.7098099996547, "GB/s": 6.7784792159445075, "GB/s/W (Jetson)": 0.9745022293522154, "GPU (W) (Jetson)": 6.955837566888269, "GB/s/W (PS)": 0.8459024646468749, "GPU (W) (PS)": 8.013310634783654, "strategy_time": 0.026041999717563158, "framework_time": 2.60182100100792, "timestamp": "2023-11-03 11:33:54.085413+00:00"},
"16,48,1,2,1,1,0,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.528599330357143, "tegra_power": 7.39868996545152, "ps_energy": 2.8964668424648283, "time": 358.51522391183033, "times": [358.5995788574219, 358.28204345703125, 358.5466003417969, 358.5401611328125, 358.6252136230469, 358.3672790527344, 358.64569091796875], "compile_time": 956.9731010001306, "verification_time": 0, "benchmark_time": 2513.3124240001052, "GB/s": 6.85493902653461, "GB/s/W (Jetson)": 0.9719214786206896, "GPU (W) (Jetson)": 7.052976168674504, "GB/s/W (PS)": 0.8484820071023624, "GPU (W) (PS)": 8.079062336212413, "strategy_time": 0.02807300006679725, "framework_time": 3.4412629997859767, "timestamp": "2023-11-03 11:33:57.559224+00:00"},
"2,208,1,3,1,1,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4966517857142856, "tegra_power": 7.404148329010217, "ps_energy": 2.8881348625460044, "time": 354.27374267578125, "times": [354.19842529296875, 354.2558288574219, 354.26873779296875, 354.2764587402344, 354.28045654296875, 354.350830078125, 354.28546142578125], "compile_time": 1088.293782999699, "verification_time": 0, "benchmark_time": 2486.9662099999914, "GB/s": 6.937008600857863, "GB/s/W (Jetson)": 0.9843583370585606, "GPU (W) (Jetson)": 7.0472391401559005, "GB/s/W (PS)": 0.8509297927429638, "GPU (W) (PS)": 8.152269035611603, "strategy_time": 0.04099000034329947, "framework_time": 4.091327999958594, "timestamp": "2023-11-03 11:34:01.138685+00:00"},
"1,184,1,4,5,0,0,0": {"block_size_x": 1, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2099609375, "tegra_power": 7.4441366269957925, "ps_energy": 3.7009735761330376, "time": 449.92531040736606, "times": [449.9594421386719, 450.2335510253906, 449.8537902832031, 449.9122314453125, 449.7464599609375, 450.12530517578125, 449.6463928222656], "compile_time": 940.2967279997938, "verification_time": 0, "benchmark_time": 3156.6142769997896, "GB/s": 5.462239938835334, "GB/s/W (Jetson)": 0.7656167934286583, "GPU (W) (Jetson)": 7.134430678268966, "GB/s/W (PS)": 0.6640414878529944, "GPU (W) (PS)": 8.225751009166713, "strategy_time": 0.024219999886554433, "framework_time": 2.9696920005335414, "timestamp": "2023-11-03 11:34:05.238940+00:00"},
"1,64,1,2,5,1,1,0": {"block_size_x": 1, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5433872767857144, "tegra_power": 7.446995474607455, "ps_energy": 2.929144236109226, "time": 359.44301060267856, "times": [359.13043212890625, 359.2481689453125, 359.26983642578125, 359.25897216796875, 359.38677978515625, 360.6333923339844, 359.1734924316406], "compile_time": 1136.5617440001188, "verification_time": 0, "benchmark_time": 2521.275935000176, "GB/s": 6.837245203013792, "GB/s/W (Jetson)": 0.96627046239921, "GPU (W) (Jetson)": 7.075912458337174, "GB/s/W (PS)": 0.839016382226511, "GPU (W) (PS)": 8.149120026559777, "strategy_time": 0.025834000098257093, "framework_time": 2.7039049996346876, "timestamp": "2023-11-03 11:34:08.899562+00:00"},
"8,120,1,2,2,1,1,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5525948660714284, "tegra_power": 7.4738272048273116, "ps_energy": 2.9190311636536665, "time": 360.9807870047433, "times": [361.0521240234375, 361.0285949707031, 360.93255615234375, 360.91082763671875, 361.0214538574219, 360.87152099609375, 361.0484313964844], "compile_time": 1139.5309770000495, "verification_time": 0, "benchmark_time": 2530.2161670001624, "GB/s": 6.808118571606157, "GB/s/W (Jetson)": 0.9627849811444499, "GPU (W) (Jetson)": 7.0712762506052345, "GB/s/W (PS)": 0.8419231800608437, "GPU (W) (PS)": 8.086389272610539, "strategy_time": 0.025937999907910125, "framework_time": 2.9652639996129437, "timestamp": "2023-11-03 11:34:12.572356+00:00"},
"16,56,1,2,4,0,0,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5255301339285716, "tegra_power": 7.546672400334155, "ps_energy": 2.9085287592705362, "time": 353.1332789829799, "times": [352.77459716796875, 352.9937438964844, 353.09405517578125, 353.7985534667969, 353.3789978027344, 352.9848937988281, 352.9081115722656], "compile_time": 1136.7852600001243, "verification_time": 0, "benchmark_time": 2477.147320000313, "GB/s": 6.959412058466598, "GB/s/W (Jetson)": 0.9731026238744958, "GPU (W) (Jetson)": 7.151776069369818, "GB/s/W (PS)": 0.8449632798598732, "GPU (W) (PS)": 8.236348518743597, "strategy_time": 0.026824000087799504, "framework_time": 3.137871999570052, "timestamp": "2023-11-03 11:34:16.189509+00:00"},
"2,32,1,4,6,1,0,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9266183035714284, "tegra_power": 7.506267577691157, "ps_energy": 3.360620229091832, "time": 408.0016566685268, "times": [407.60797119140625, 407.65545654296875, 409.6888122558594, 407.724853515625, 407.7511901855469, 407.9263916015625, 407.65692138671875], "compile_time": 1107.9702520000865, "verification_time": 0, "benchmark_time": 2861.850789000073, "GB/s": 6.023504953551281, "GB/s/W (Jetson)": 0.839740528172371, "GPU (W) (Jetson)": 7.173054951463357, "GB/s/W (PS)": 0.7312935804900922, "GPU (W) (PS)": 8.236780841853552, "strategy_time": 0.02703199970710557, "framework_time": 2.5935380003829778, "timestamp": "2023-11-03 11:34:20.162006+00:00"},
"4,168,1,3,4,0,0,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.553989955357143, "tegra_power": 7.5353600750190655, "ps_energy": 2.952682564601543, "time": 356.8484889439174, "times": [356.7007141113281, 356.7516174316406, 356.670166015625, 356.8424377441406, 357.5408935546875, 356.7146301269531, 356.7189636230469], "compile_time": 1086.5872570002466, "verification_time": 0, "benchmark_time": 2506.268359999922, "GB/s": 6.886956442699798, "GB/s/W (Jetson)": 0.9622590703009777, "GPU (W) (Jetson)": 7.157070954442321, "GB/s/W (PS)": 0.832327873460941, "GPU (W) (PS)": 8.274331140759262, "strategy_time": 0.025937999907910125, "framework_time": 2.671924999958719, "timestamp": "2023-11-03 11:34:23.757614+00:00"},
"2,256,1,3,3,0,0,0": {"block_size_x": 2, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.622767857142857, "tegra_power": 7.558370095557465, "ps_energy": 3.0148042628045784, "time": 365.1758292061942, "times": [364.9703674316406, 365.1519775390625, 365.2426452636719, 365.2369689941406, 365.2467041015625, 365.1496276855469, 365.2325134277344], "compile_time": 1099.73538200029, "verification_time": 0, "benchmark_time": 2562.232128999767, "GB/s": 6.729908727371799, "GB/s/W (Jetson)": 0.9370253617021276, "GPU (W) (Jetson)": 7.182205522320943, "GB/s/W (PS)": 0.815177300337824, "GPU (W) (PS)": 8.255760709458919, "strategy_time": 0.02468799993948778, "framework_time": 2.5754650000635593, "timestamp": "2023-11-03 11:34:27.422235+00:00"},
"1,72,1,3,5,1,0,0": {"block_size_x": 1, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2142857142857144, "tegra_power": 7.454449573807096, "ps_energy": 3.6875940053557446, "time": 448.8081839425223, "times": [448.550048828125, 448.5396423339844, 448.7506103515625, 448.8996887207031, 448.8397521972656, 448.9092102050781, 449.1683349609375], "compile_time": 952.6820820001376, "verification_time": 0, "benchmark_time": 3144.9416890000066, "GB/s": 5.47583597609873, "GB/s/W (Jetson)": 0.7645866666666665, "GPU (W) (Jetson)": 7.161825094297655, "GB/s/W (PS)": 0.6664508067945277, "GPU (W) (PS)": 8.216414355376383, "strategy_time": 0.040626000100019155, "framework_time": 4.12877499957176, "timestamp": "2023-11-03 11:34:31.524083+00:00"},
"16,32,1,1,1,0,0,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5682198660714284, "tegra_power": 7.4162917745912225, "ps_energy": 2.971189756575768, "time": 364.22118704659596, "times": [364.0736083984375, 364.0487976074219, 364.100830078125, 364.8262634277344, 364.1592712402344, 364.16973876953125, 364.1697998046875], "compile_time": 1109.5790770000349, "verification_time": 0, "benchmark_time": 2554.2725220002467, "GB/s": 6.747548158656655, "GB/s/W (Jetson)": 0.9569274159378565, "GPU (W) (Jetson)": 7.051264334446497, "GB/s/W (PS)": 0.8271434009089782, "GPU (W) (PS)": 8.157652169190406, "strategy_time": 0.025208999886672245, "framework_time": 2.58635099953608, "timestamp": "2023-11-03 11:34:35.190910+00:00"},
"1,32,1,1,4,0,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5673828125, "tegra_power": 7.469354334049065, "ps_energy": 2.9629377549260556, "time": 361.3447832380022, "times": [361.314208984375, 361.2928161621094, 361.3772888183594, 361.2552490234375, 361.49896240234375, 361.306884765625, 361.3680725097656], "compile_time": 1081.2354400000004, "verification_time": 0, "benchmark_time": 2532.6812530001916, "GB/s": 6.801260496906869, "GB/s/W (Jetson)": 0.957239406618486, "GPU (W) (Jetson)": 7.1050778414281845, "GB/s/W (PS)": 0.829447056697056, "GPU (W) (PS)": 8.199752403716028, "strategy_time": 0.02703199970710557, "framework_time": 2.978491999783728, "timestamp": "2023-11-03 11:34:38.807893+00:00"},
"1,104,1,4,8,1,0,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8260323660714284, "tegra_power": 7.487465972504509, "ps_energy": 3.202166295693522, "time": 395.6645769391741, "times": [395.8907165527344, 395.78131103515625, 395.4920959472656, 395.92230224609375, 396.3612060546875, 394.29644775390625, 395.907958984375], "compile_time": 1113.8147050000953, "verification_time": 0, "benchmark_time": 2773.048321999795, "GB/s": 6.211321769089805, "GB/s/W (Jetson)": 0.8696291059880535, "GPU (W) (Jetson)": 7.142495261853773, "GB/s/W (PS)": 0.7674804407582259, "GPU (W) (PS)": 8.093133634719578, "strategy_time": 0.04651100016417331, "framework_time": 4.328883000198402, "timestamp": "2023-11-03 11:34:42.699561+00:00"},
"16,32,1,4,2,1,0,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5453404017857144, "tegra_power": 7.518253145576611, "ps_energy": 2.9271023944170986, "time": 356.33074951171875, "times": [356.2319641113281, 356.3626708984375, 356.53228759765625, 356.3176574707031, 356.2913513183594, 356.30078125, 356.2785339355469], "compile_time": 1156.2962320003862, "verification_time": 0, "benchmark_time": 2499.395198000002, "GB/s": 6.8969630136261255, "GB/s/W (Jetson)": 0.9655290106878596, "GPU (W) (Jetson)": 7.143196048260228, "GB/s/W (PS)": 0.8396016499755571, "GPU (W) (PS)": 8.214565816809571, "strategy_time": 0.02687500000320142, "framework_time": 2.587548999599676, "timestamp": "2023-11-03 11:34:46.358255+00:00"},
"2,160,1,3,8,0,0,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.630859375, "tegra_power": 7.575479866342496, "ps_energy": 3.0296022262903404, "time": 364.5611049107143, "times": [364.6031799316406, 364.4347839355469, 364.387451171875, 364.7995300292969, 364.5295715332031, 364.5872802734375, 364.5859375], "compile_time": 1090.0680949998787, "verification_time": 0, "benchmark_time": 2555.335108000236, "GB/s": 6.741256724580912, "GB/s/W (Jetson)": 0.9341434298440979, "GPU (W) (Jetson)": 7.2165114148541205, "GB/s/W (PS)": 0.8111956014137405, "GPU (W) (PS)": 8.310272778639755, "strategy_time": 0.028437999844754813, "framework_time": 2.6405690000501636, "timestamp": "2023-11-03 11:34:50.006383+00:00"},
"4,64,1,3,8,0,1,0": {"block_size_x": 4, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.554408482142857, "tegra_power": 7.507548378839866, "ps_energy": 2.9390467051395848, "time": 360.28926740373885, "times": [360.1429748535156, 360.2761535644531, 360.1180725097656, 360.2441711425781, 360.3534851074219, 360.3418884277344, 360.5481262207031], "compile_time": 1107.3413970002548, "verification_time": 0, "benchmark_time": 2526.3502160000826, "GB/s": 6.821185703669663, "GB/s/W (Jetson)": 0.962101409066084, "GPU (W) (Jetson)": 7.089882250864821, "GB/s/W (PS)": 0.8361895017531817, "GPU (W) (PS)": 8.157463935349758, "strategy_time": 0.02614599998196354, "framework_time": 2.7504679997036874, "timestamp": "2023-11-03 11:34:53.642919+00:00"},
"4,248,1,4,7,0,1,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.676060267857143, "tegra_power": 7.361502176338006, "ps_energy": 3.0481483634700584, "time": 380.0280543736049, "times": [377.5551452636719, 383.2516174316406, 377.7341613769531, 383.2728576660156, 377.721923828125, 383.05572509765625, 377.6049499511719], "compile_time": 1107.2047439997732, "verification_time": 0, "benchmark_time": 2663.770886000293, "GB/s": 6.466890987958319, "GB/s/W (Jetson)": 0.9183649671567093, "GPU (W) (Jetson)": 7.041743989843215, "GB/s/W (PS)": 0.8062599673469406, "GPU (W) (PS)": 8.020850904005705, "strategy_time": 0.04578200014293543, "framework_time": 3.9118439999583643, "timestamp": "2023-11-03 11:34:57.417924+00:00"},
"2,72,1,3,8,0,1,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.887974330357143, "tegra_power": 7.43865756764795, "ps_energy": 3.2973499742687897, "time": 406.1033455984933, "times": [406.0565490722656, 405.9959411621094, 406.2289123535156, 406.0736083984375, 406.0412902832031, 406.1603088378906, 406.16680908203125], "compile_time": 1090.4195019998042, "verification_time": 0, "benchmark_time": 2847.071657000015, "GB/s": 6.051661545358906, "GB/s/W (Jetson)": 0.850977092894063, "GPU (W) (Jetson)": 7.111427082928857, "GB/s/W (PS)": 0.7453257977400441, "GPU (W) (PS)": 8.11948487991236, "strategy_time": 0.02671899983397452, "framework_time": 2.661039000031451, "timestamp": "2023-11-03 11:35:01.358167+00:00"},
"2,64,1,2,1,0,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.519252232142857, "tegra_power": 7.425415211227291, "ps_energy": 2.9216063067667295, "time": 358.61350795200894, "times": [358.5100402832031, 358.517822265625, 358.5516662597656, 358.57244873046875, 358.6021423339844, 358.8138122558594, 358.72662353515625], "compile_time": 1135.5634149999787, "verification_time": 0, "benchmark_time": 2513.8499390000106, "GB/s": 6.853060315644567, "GB/s/W (Jetson)": 0.9755275667294273, "GPU (W) (Jetson)": 7.024978636554854, "GB/s/W (PS)": 0.8411810976406899, "GPU (W) (PS)": 8.146949966975896, "strategy_time": 0.02573000028860406, "framework_time": 3.670639999654668, "timestamp": "2023-11-03 11:35:05.011349+00:00"},
"16,64,1,3,4,0,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.552036830357143, "tegra_power": 7.5797789730819805, "ps_energy": 2.974936666524237, "time": 357.00650460379467, "times": [357.1324462890625, 357.10479736328125, 357.0427551269531, 356.9355773925781, 357.01239013671875, 356.8968811035156, 356.9206848144531], "compile_time": 1106.124871999782, "verification_time": 0, "benchmark_time": 2502.9091360001985, "GB/s": 6.883908187408072, "GB/s/W (Jetson)": 0.9629955064778877, "GPU (W) (Jetson)": 7.148432304306023, "GB/s/W (PS)": 0.8261016201300625, "GPU (W) (PS)": 8.333004099815541, "strategy_time": 0.04953200004820246, "framework_time": 3.9410610002050817, "timestamp": "2023-11-03 11:35:08.624880+00:00"},
"8,128,1,4,3,0,0,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5894252232142856, "tegra_power": 7.551902360340562, "ps_energy": 2.985768740721791, "time": 359.9182434082031, "times": [359.6502990722656, 359.7497863769531, 360.3409423828125, 359.64703369140625, 360.2739562988281, 359.5743713378906, 360.1913146972656], "compile_time": 1090.1373570000032, "verification_time": 0, "benchmark_time": 2522.916557999906, "GB/s": 6.828217366055269, "GB/s/W (Jetson)": 0.9490909326006142, "GPU (W) (Jetson)": 7.194481720887584, "GB/s/W (PS)": 0.8231046050156886, "GPU (W) (PS)": 8.295686021493127, "strategy_time": 0.04619899982571951, "framework_time": 3.1636510002499563, "timestamp": "2023-11-03 11:35:12.241203+00:00"},
"8,72,1,1,1,0,0,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4888392857142856, "tegra_power": 7.414059931144825, "ps_energy": 2.8735617365845036, "time": 355.28712245396207, "times": [355.2863464355469, 355.37823486328125, 355.3239440917969, 355.1502990722656, 355.2857666015625, 355.1937561035156, 355.3915100097656], "compile_time": 931.1256740002136, "verification_time": 0, "benchmark_time": 2501.201710999794, "GB/s": 6.917222282151402, "GB/s/W (Jetson)": 0.9874482511210761, "GPU (W) (Jetson)": 7.005149155206965, "GB/s/W (PS)": 0.8552452410231098, "GPU (W) (PS)": 8.087998565039065, "strategy_time": 0.026406999950268073, "framework_time": 2.6952049997817085, "timestamp": "2023-11-03 11:35:15.676306+00:00"},
"2,72,1,2,8,0,1,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.796595982142857, "tegra_power": 7.361473684079824, "ps_energy": 3.2300593183806217, "time": 400.1858128138951, "times": [400.0485534667969, 399.9788513183594, 400.1226501464844, 400.2335510253906, 400.1919250488281, 400.3399963378906, 400.3851623535156], "compile_time": 978.8825050000014, "verification_time": 0, "benchmark_time": 2805.0990859997, "GB/s": 6.141147240376803, "GB/s/W (Jetson)": 0.8787826399281651, "GPU (W) (Jetson)": 6.988243692295518, "GB/s/W (PS)": 0.7608529001356261, "GPU (W) (PS)": 8.07139887261008, "strategy_time": 0.03781300029004342, "framework_time": 3.486210000119172, "timestamp": "2023-11-03 11:35:19.463893+00:00"},
"4,72,1,3,7,0,1,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.554966517857143, "tegra_power": 7.481842333215158, "ps_energy": 2.951948118207448, "time": 359.7204328264509, "times": [359.6103515625, 359.66400146484375, 359.7157897949219, 359.8705139160156, 359.57269287109375, 359.7539978027344, 359.8556823730469], "compile_time": 1081.6462149996369, "verification_time": 0, "benchmark_time": 2521.4477009999428, "GB/s": 6.83197220877826, "GB/s/W (Jetson)": 0.9618912744348586, "GPU (W) (Jetson)": 7.102644956200751, "GB/s/W (PS)": 0.8325349571158324, "GPU (W) (PS)": 8.20622863987165, "strategy_time": 0.028751000172633212, "framework_time": 2.9775530001643347, "timestamp": "2023-11-03 11:35:23.070050+00:00"},
"1,192,1,2,2,1,0,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.539760044642857, "tegra_power": 7.532001376211029, "ps_energy": 2.952921445433146, "time": 357.32244873046875, "times": [357.3241271972656, 357.330322265625, 357.34722900390625, 357.23431396484375, 357.4068298339844, 357.3083801269531, 357.3059387207031], "compile_time": 1130.954470999768, "verification_time": 0, "benchmark_time": 2505.168627999865, "GB/s": 6.877821443157599, "GB/s/W (Jetson)": 0.9676504696511946, "GPU (W) (Jetson)": 7.107753945117002, "GB/s/W (PS)": 0.832260541099328, "GPU (W) (PS)": 8.264024429264333, "strategy_time": 0.02807300006679725, "framework_time": 3.074744000514329, "timestamp": "2023-11-03 11:35:26.709348+00:00"},
"4,216,1,2,7,1,1,0": {"block_size_x": 4, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5482700892857144, "tegra_power": 7.316391242011385, "ps_energy": 2.927898045875606, "time": 367.4788164411272, "times": [369.17730712890625, 365.2039489746094, 369.28448486328125, 365.1328125, 369.0595703125, 365.2749328613281, 369.2186584472656], "compile_time": 1151.8367940002463, "verification_time": 0, "benchmark_time": 2575.957537999784, "GB/s": 6.687732435302771, "GB/s/W (Jetson)": 0.9644189641957734, "GPU (W) (Jetson)": 6.93446798910643, "GB/s/W (PS)": 0.8393734896137885, "GPU (W) (PS)": 7.9675287795662, "strategy_time": 0.02864699990823283, "framework_time": 4.053041000133817, "timestamp": "2023-11-03 11:35:30.441309+00:00"},
"4,104,1,2,8,0,0,0": {"block_size_x": 4, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5467354910714284, "tegra_power": 7.54067737782173, "ps_energy": 2.9323724038705614, "time": 354.4189758300781, "times": [354.3590087890625, 354.3279113769531, 354.3719787597656, 354.4084777832031, 354.26055908203125, 354.6331787109375, 354.57171630859375], "compile_time": 1154.6118589999423, "verification_time": 0, "benchmark_time": 2484.7873749999962, "GB/s": 6.934165966266621, "GB/s/W (Jetson)": 0.9650000986031224, "GPU (W) (Jetson)": 7.185663479521, "GB/s/W (PS)": 0.8380927322723779, "GPU (W) (PS)": 8.273745492894973, "strategy_time": 0.05208399988987367, "framework_time": 3.695380000408477, "timestamp": "2023-11-03 11:35:34.084613+00:00"},
"1,200,1,1,6,0,0,0": {"block_size_x": 1, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.906529017857143, "tegra_power": 7.561695893964171, "ps_energy": 3.3744258613800673, "time": 402.7932913643973, "times": [402.6968078613281, 402.90484619140625, 402.9049377441406, 402.92010498046875, 402.71380615234375, 402.6844787597656, 402.7280578613281], "compile_time": 960.7796290001716, "verification_time": 0, "benchmark_time": 2823.3739769998465, "GB/s": 6.101392581974929, "GB/s/W (Jetson)": 0.8455446289718729, "GPU (W) (Jetson)": 7.215932042988464, "GB/s/W (PS)": 0.7283016729236702, "GPU (W) (PS)": 8.377562222920208, "strategy_time": 0.025937999907910125, "framework_time": 2.9100000001562876, "timestamp": "2023-11-03 11:35:37.871808+00:00"},
"8,128,1,3,1,0,0,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.525111607142857, "tegra_power": 7.533107436251209, "ps_energy": 2.9275027163161473, "time": 354.1001281738281, "times": [354.1575622558594, 353.94610595703125, 354.05828857421875, 354.0933837890625, 354.10186767578125, 354.1968688964844, 354.1468200683594], "compile_time": 1087.0085390001805, "verification_time": 0, "benchmark_time": 2482.116913000027, "GB/s": 6.9404098006809, "GB/s/W (Jetson)": 0.9732639116022098, "GPU (W) (Jetson)": 7.131066628429113, "GB/s/W (PS)": 0.8394868384930299, "GPU (W) (PS)": 8.267443255143453, "strategy_time": 0.028437999844754813, "framework_time": 3.872308999689267, "timestamp": "2023-11-03 11:35:41.444905+00:00"},
"16,48,1,3,3,0,0,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.570591517857143, "tegra_power": 7.600372792724687, "ps_energy": 2.973658602618213, "time": 357.6092529296875, "times": [357.3514099121094, 357.52239990234375, 357.72479248046875, 357.58599853515625, 357.68359375, 357.7291259765625, 357.6674499511719], "compile_time": 945.7628939999267, "verification_time": 0, "benchmark_time": 2506.909892999829, "GB/s": 6.8723054000037544, "GB/s/W (Jetson)": 0.9560445457505697, "GPU (W) (Jetson)": 7.188269030506792, "GB/s/W (PS)": 0.8264566745611484, "GPU (W) (PS)": 8.31538495790233, "strategy_time": 0.026095000066561624, "framework_time": 2.582493999852886, "timestamp": "2023-11-03 11:35:44.900244+00:00"},
"4,200,1,1,6,0,1,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.527064732142857, "tegra_power": 7.328703040790701, "ps_energy": 2.9637987235858287, "time": 365.8226405552455, "times": [366.84832763671875, 364.44146728515625, 366.9160461425781, 364.2857666015625, 366.9263000488281, 364.4909362792969, 366.8496398925781], "compile_time": 1092.2448720002649, "verification_time": 0, "benchmark_time": 2564.344025000082, "GB/s": 6.718009569527613, "GB/s/W (Jetson)": 0.972511692613448, "GPU (W) (Jetson)": 6.907895936422302, "GB/s/W (PS)": 0.8292061064884354, "GPU (W) (PS)": 8.101736729819061, "strategy_time": 0.06635499994445127, "framework_time": 3.9276229995266476, "timestamp": "2023-11-03 11:35:48.560885+00:00"},
"1,40,1,4,6,0,1,0": {"block_size_x": 1, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 4.0078125, "tegra_power": 7.2738194698092355, "ps_energy": 4.6010391455300645, "time": 570.4048636300223, "times": [570.383056640625, 570.4814453125, 570.2855224609375, 570.197265625, 570.515869140625, 570.637939453125, 570.3329467773438], "compile_time": 1099.239443999977, "verification_time": 0, "benchmark_time": 3997.0737010003177, "GB/s": 4.308518662270831, "GB/s/W (Jetson)": 0.6132023391812865, "GPU (W) (Jetson)": 7.026259338839648, "GB/s/W (PS)": 0.5341402066503981, "GPU (W) (PS)": 8.066269134259002, "strategy_time": 0.026978999812854454, "framework_time": 2.7906750001420733, "timestamp": "2023-11-03 11:35:53.660072+00:00"},
"2,112,1,2,8,0,0,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5775669642857144, "tegra_power": 7.586169228161208, "ps_energy": 2.9651283222909632, "time": 357.3314121791295, "times": [357.15484619140625, 357.1730651855469, 357.358642578125, 357.4425964355469, 357.4352722167969, 357.3221435546875, 357.4333190917969], "compile_time": 1142.1619359998658, "verification_time": 0, "benchmark_time": 2504.430167999999, "GB/s": 6.877648917045139, "GB/s/W (Jetson)": 0.9534572851266506, "GPU (W) (Jetson)": 7.21337916688272, "GB/s/W (PS)": 0.828834280636182, "GPU (W) (PS)": 8.297978350709764, "strategy_time": 0.026563000119494973, "framework_time": 2.8506250000646105, "timestamp": "2023-11-03 11:35:57.309595+00:00"},
"1,48,1,3,7,0,0,0": {"block_size_x": 1, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.7845982142857144, "tegra_power": 7.208288246037196, "ps_energy": 4.297165233070181, "time": 544.3714425223214, "times": [544.113037109375, 544.311767578125, 544.2283325195312, 544.3460693359375, 544.5036010742188, 544.6950073242188, 544.4022827148438], "compile_time": 1098.9931109997997, "verification_time": 0, "benchmark_time": 3814.244226000028, "GB/s": 4.514564519793355, "GB/s/W (Jetson)": 0.6493687997640814, "GPU (W) (Jetson)": 6.952235034133942, "GB/s/W (PS)": 0.5719119155779185, "GPU (W) (PS)": 7.893810911827874, "strategy_time": 0.027239999781158986, "framework_time": 2.596661000552558, "timestamp": "2023-11-03 11:36:02.225509+00:00"},
"1,72,1,1,6,0,1,0": {"block_size_x": 1, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.4321986607142856, "tegra_power": 7.3026610198712385, "ps_energy": 3.937175382321584, "time": 488.41629900251115, "times": [488.3736572265625, 488.6463928222656, 488.6347351074219, 488.2594299316406, 488.3575439453125, 488.30328369140625, 488.33905029296875], "compile_time": 1081.793073999961, "verification_time": 0, "benchmark_time": 3422.1523129999696, "GB/s": 5.031773110396064, "GB/s/W (Jetson)": 0.716042468092025, "GPU (W) (Jetson)": 7.0271992718585325, "GB/s/W (PS)": 0.6242038419306731, "GPU (W) (PS)": 8.06110563951786, "strategy_time": 0.029011000151513144, "framework_time": 3.7407959998745355, "timestamp": "2023-11-03 11:36:06.733281+00:00"},
"1,192,1,1,7,0,0,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.5170200892857144, "tegra_power": 7.201857828869416, "ps_energy": 4.009805439746352, "time": 504.6826825823103, "times": [504.531982421875, 504.6247863769531, 504.61962890625, 504.90618896484375, 504.61688232421875, 504.76129150390625, 504.718017578125], "compile_time": 1094.234559999677, "verification_time": 0, "benchmark_time": 3536.043535999852, "GB/s": 4.869594469588685, "GB/s/W (Jetson)": 0.6987733756445854, "GPU (W) (Jetson)": 6.968775055427253, "GB/s/W (PS)": 0.6128975674579014, "GPU (W) (PS)": 7.945201169236435, "strategy_time": 0.02661500002432149, "framework_time": 2.720204000524973, "timestamp": "2023-11-03 11:36:11.366361+00:00"},
"1,176,1,1,4,0,0,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5438058035714284, "tegra_power": 7.512792046362052, "ps_energy": 2.9733869119169998, "time": 357.86776297433033, "times": [357.470458984375, 357.534423828125, 357.6060485839844, 357.661865234375, 357.7085876464844, 357.6943664550781, 359.3985900878906], "compile_time": 1075.9040910002113, "verification_time": 0, "benchmark_time": 2512.178343999949, "GB/s": 6.867341108274909, "GB/s/W (Jetson)": 0.9661114840408029, "GPU (W) (Jetson)": 7.108228420546207, "GB/s/W (PS)": 0.8265321913371636, "GPU (W) (PS)": 8.308619047450438, "strategy_time": 0.02468799993948778, "framework_time": 2.733172999796807, "timestamp": "2023-11-03 11:36:14.957255+00:00"},
"1,192,1,1,2,0,0,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5301339285714284, "tegra_power": 7.517716617292457, "ps_energy": 2.9234902615005143, "time": 355.83180018833707, "times": [355.90380859375, 355.7898864746094, 355.7930603027344, 355.94000244140625, 356.00537109375, 355.6869201660156, 355.70355224609375], "compile_time": 1130.0540829997772, "verification_time": 0, "benchmark_time": 2494.780099000309, "GB/s": 6.906633973408854, "GB/s/W (Jetson)": 0.9713319805910895, "GPU (W) (Jetson)": 7.110477273903744, "GB/s/W (PS)": 0.8406390239653505, "GPU (W) (PS)": 8.21593308960343, "strategy_time": 0.02776099972834345, "framework_time": 2.9204160005065205, "timestamp": "2023-11-03 11:36:18.585402+00:00"},
"4,120,1,4,2,1,0,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.516322544642857, "tegra_power": 7.516582433752995, "ps_energy": 2.9001909323934734, "time": 353.0245361328125, "times": [352.59759521484375, 353.218017578125, 352.9866027832031, 353.10552978515625, 353.18206787109375, 352.9908447265625, 353.0910949707031], "compile_time": 1148.7483920000159, "verification_time": 0, "benchmark_time": 2474.8542090001138, "GB/s": 6.961555780007932, "GB/s/W (Jetson)": 0.9766633475633419, "GPU (W) (Jetson)": 7.127897035735169, "GB/s/W (PS)": 0.8473924845947258, "GPU (W) (PS)": 8.215267313041332, "strategy_time": 0.029010999696765793, "framework_time": 2.6591089999783435, "timestamp": "2023-11-03 11:36:22.212051+00:00"},
"1,120,1,2,4,1,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.1635044642857144, "tegra_power": 7.446105023204135, "ps_energy": 3.627465877686648, "time": 444.6401149204799, "times": [444.85260009765625, 444.7068786621094, 444.5082702636719, 444.4746398925781, 444.71844482421875, 444.5697021484375, 444.6502685546875], "compile_time": 1129.72838900032, "verification_time": 0, "benchmark_time": 3116.163470999709, "GB/s": 5.527166617522849, "GB/s/W (Jetson)": 0.7768599753042864, "GPU (W) (Jetson)": 7.114752713779503, "GB/s/W (PS)": 0.6774977581780288, "GPU (W) (PS)": 8.158206504456732, "strategy_time": 0.02687599999262602, "framework_time": 2.8766639998139, "timestamp": "2023-11-03 11:36:26.461216+00:00"},
"2,248,1,4,2,1,1,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6124441964285716, "tegra_power": 7.5028114949001035, "ps_energy": 3.037889735325215, "time": 367.6345520019531, "times": [367.50750732421875, 367.6454162597656, 367.5799560546875, 367.5706787109375, 367.6929016113281, 367.6145324707031, 367.83087158203125], "compile_time": 1139.3822199997885, "verification_time": 0, "benchmark_time": 2578.7961519999953, "GB/s": 6.68489941061618, "GB/s/W (Jetson)": 0.9407282281320088, "GPU (W) (Jetson)": 7.1060899531954025, "GB/s/W (PS)": 0.8089826208708351, "GPU (W) (PS)": 8.263341187008656, "strategy_time": 0.02817699987645028, "framework_time": 3.128442000161158, "timestamp": "2023-11-03 11:36:30.182916+00:00"},
"16,56,1,4,5,0,1,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6277901785714284, "tegra_power": 7.634218309168993, "ps_energy": 3.0186080667444912, "time": 361.83854021344865, "times": [361.6617736816406, 361.850830078125, 361.76483154296875, 361.917236328125, 361.69952392578125, 361.71734619140625, 362.25823974609375], "compile_time": 1086.7753249999623, "verification_time": 0, "benchmark_time": 2540.3700930000923, "GB/s": 6.791979645259073, "GB/s/W (Jetson)": 0.9352344871522617, "GPU (W) (Jetson)": 7.262328045600931, "GB/s/W (PS)": 0.8141500803217797, "GPU (W) (PS)": 8.34241721449521, "strategy_time": 0.028124999971623765, "framework_time": 2.8111960000387626, "timestamp": "2023-11-03 11:36:33.812960+00:00"},
"2,176,1,2,8,0,1,0": {"block_size_x": 2, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5191127232142856, "tegra_power": 7.480748042823423, "ps_energy": 2.91862193045381, "time": 354.7276872907366, "times": [354.831298828125, 354.7545471191406, 354.7950439453125, 354.66766357421875, 354.6166076660156, 354.71875, 354.70989990234375], "compile_time": 1132.7383950001604, "verification_time": 0, "benchmark_time": 2486.1510499999895, "GB/s": 6.928131318900232, "GB/s/W (Jetson)": 0.975581591626516, "GPU (W) (Jetson)": 7.101539613257221, "GB/s/W (PS)": 0.8420412299231484, "GPU (W) (PS)": 8.22778157731368, "strategy_time": 0.026043000161735108, "framework_time": 2.5956189997486945, "timestamp": "2023-11-03 11:36:37.434825+00:00"},
"1,240,1,4,2,0,0,0": {"block_size_x": 1, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8833705357142856, "tegra_power": 7.451408660005023, "ps_energy": 3.318433310106879, "time": 404.02865164620533, "times": [404.0560302734375, 404.192138671875, 403.8456115722656, 404.2614440917969, 403.95733642578125, 403.77618408203125, 404.11181640625], "compile_time": 1155.74382099976, "verification_time": 0, "benchmark_time": 2831.6722459999255, "GB/s": 6.082736929637455, "GB/s/W (Jetson)": 0.8523358234952584, "GPU (W) (Jetson)": 7.136549657966235, "GB/s/W (PS)": 0.7405904444470653, "GPU (W) (PS)": 8.213361345998607, "strategy_time": 0.02598999981273664, "framework_time": 2.4413450005340565, "timestamp": "2023-11-03 11:36:41.425068+00:00"},
"16,32,1,3,8,1,0,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5170200892857144, "tegra_power": 7.487746145208061, "ps_energy": 2.9541275301832814, "time": 356.46380615234375, "times": [356.0629577636719, 356.2524108886719, 356.0560302734375, 357.9450378417969, 356.2753601074219, 356.3666076660156, 356.2882385253906], "compile_time": 1088.1876549997287, "verification_time": 0, "benchmark_time": 2508.4408869997787, "GB/s": 6.894388595934148, "GB/s/W (Jetson)": 0.9763926837379446, "GPU (W) (Jetson)": 7.061081786828037, "GB/s/W (PS)": 0.8319207532139021, "GPU (W) (PS)": 8.287314109306124, "strategy_time": 0.024478999876009766, "framework_time": 2.3356660008175822, "timestamp": "2023-11-03 11:36:45.024410+00:00"},
"8,104,1,3,2,0,1,0": {"block_size_x": 8, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5216238839285716, "tegra_power": 7.538048532229513, "ps_energy": 2.9142837013589866, "time": 354.37428065708707, "times": [353.9300537109375, 354.0721435546875, 354.1005859375, 354.26715087890625, 354.4235534667969, 354.15130615234375, 355.6751708984375], "compile_time": 1002.7142560002176, "verification_time": 0, "benchmark_time": 2488.4023970003, "GB/s": 6.935040532408487, "GB/s/W (Jetson)": 0.9746100580912862, "GPU (W) (Jetson)": 7.1157079437394035, "GB/s/W (PS)": 0.843294700119269, "GPU (W) (PS)": 8.223744951115725, "strategy_time": 0.025209000341419596, "framework_time": 2.418741999008489, "timestamp": "2023-11-03 11:36:48.518045+00:00"},
"8,96,1,4,3,1,0,0": {"block_size_x": 8, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5219029017857144, "tegra_power": 7.472315916687313, "ps_energy": 2.881400455243108, "time": 357.08170427594865, "times": [357.10150146484375, 357.0075378417969, 357.1651611328125, 356.99639892578125, 357.200927734375, 357.0303039550781, 357.0700988769531], "compile_time": 945.0872880001953, "verification_time": 0, "benchmark_time": 2503.195565000169, "GB/s": 6.882458469787056, "GB/s/W (Jetson)": 0.9745022293522154, "GPU (W) (Jetson)": 7.06253742935207, "GB/s/W (PS)": 0.8529185853108532, "GPU (W) (PS)": 8.069302965509525, "strategy_time": 0.04968900020685396, "framework_time": 4.141423999044491, "timestamp": "2023-11-03 11:36:51.970590+00:00"},
"2,40,1,4,4,1,0,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.1605747767857144, "tegra_power": 7.403128751247604, "ps_energy": 3.63101366040064, "time": 445.4488743373326, "times": [445.25360107421875, 445.4986877441406, 445.5184326171875, 445.3170166015625, 445.6521301269531, 445.39990234375, 445.5023498535156], "compile_time": 1086.1416510001618, "verification_time": 0, "benchmark_time": 3122.1850809997704, "GB/s": 5.517131463528835, "GB/s/W (Jetson)": 0.777580083866696, "GPU (W) (Jetson)": 7.095258196549516, "GB/s/W (PS)": 0.6768357901823019, "GPU (W) (PS)": 8.151358931599681, "strategy_time": 0.025105000077019213, "framework_time": 2.782079000098747, "timestamp": "2023-11-03 11:36:56.181795+00:00"},
"2,64,1,4,5,1,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.803431919642857, "tegra_power": 7.5425637754532024, "ps_energy": 3.245301506466473, "time": 390.4626028878348, "times": [390.4981689453125, 390.8042297363281, 390.25042724609375, 390.38983154296875, 390.4272766113281, 390.39312744140625, 390.47515869140625], "compile_time": 1103.2123319996572, "verification_time": 0, "benchmark_time": 2736.815579999984, "GB/s": 6.294072676419605, "GB/s/W (Jetson)": 0.8766398009455088, "GPU (W) (Jetson)": 7.179770607758249, "GB/s/W (PS)": 0.7572794068911849, "GPU (W) (PS)": 8.31142722110759, "strategy_time": 0.058803000229090685, "framework_time": 4.090696000275784, "timestamp": "2023-11-03 11:37:00.026031+00:00"},
"4,128,1,2,2,1,1,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4970703125, "tegra_power": 7.505405659248063, "ps_energy": 2.8952833525498654, "time": 350.27288818359375, "times": [350.3619689941406, 350.21087646484375, 350.3324890136719, 350.3737487792969, 350.30364990234375, 350.19635009765625, 350.1311340332031], "compile_time": 1158.912280000095, "verification_time": 0, "benchmark_time": 2456.9944990003023, "GB/s": 7.016243857023445, "GB/s/W (Jetson)": 0.9841933515838873, "GPU (W) (Jetson)": 7.1289283205703695, "GB/s/W (PS)": 0.8488288366786624, "GPU (W) (PS)": 8.265793471952408, "strategy_time": 0.028281000140850665, "framework_time": 2.940467999451357, "timestamp": "2023-11-03 11:37:03.644964+00:00"},
"8,128,1,2,6,1,0,0": {"block_size_x": 8, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5751953125, "tegra_power": 7.470529743316391, "ps_energy": 2.988838694077068, "time": 362.12816946847096, "times": [361.9681396484375, 361.9390563964844, 361.9425048828125, 362.21734619140625, 362.2516174316406, 362.31524658203125, 362.2632751464844], "compile_time": 1133.7538449997737, "verification_time": 0, "benchmark_time": 2538.2544929998403, "GB/s": 6.78654743597342, "GB/s/W (Jetson)": 0.9543353811149032, "GPU (W) (Jetson)": 7.111281390453144, "GB/s/W (PS)": 0.822259162018407, "GPU (W) (PS)": 8.253538238861847, "strategy_time": 0.024947999918367714, "framework_time": 2.641348000452126, "timestamp": "2023-11-03 11:37:07.319693+00:00"},
"2,80,1,3,4,0,0,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5560825892857144, "tegra_power": 7.57742805750135, "ps_energy": 2.9460549439312933, "time": 357.73277500697543, "times": [357.6042785644531, 358.1123352050781, 357.73126220703125, 357.623291015625, 357.6426086425781, 357.7236328125, 357.6920166015625], "compile_time": 1099.337855000158, "verification_time": 0, "benchmark_time": 2507.7289519999795, "GB/s": 6.869932451540341, "GB/s/W (Jetson)": 0.9614712804279008, "GPU (W) (Jetson)": 7.1452289749964155, "GB/s/W (PS)": 0.8342003278189081, "GPU (W) (PS)": 8.235350937229189, "strategy_time": 0.0274479998552124, "framework_time": 2.85379999968427, "timestamp": "2023-11-03 11:37:10.929698+00:00"},
"2,160,1,3,5,1,1,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5440848214285716, "tegra_power": 7.45000760821537, "ps_energy": 2.9302476126166375, "time": 358.5516095842634, "times": [358.71343994140625, 358.7137451171875, 358.6279602050781, 358.4952697753906, 358.4199523925781, 358.4035949707031, 358.4873046875], "compile_time": 1103.5545680001633, "verification_time": 0, "benchmark_time": 2512.9663749999054, "GB/s": 6.854243390092599, "GB/s/W (Jetson)": 0.9660055275279665, "GPU (W) (Jetson)": 7.095449451135946, "GB/s/W (PS)": 0.8387004529645959, "GPU (W) (PS)": 8.172457002812585, "strategy_time": 0.026824000087799504, "framework_time": 2.778743999897415, "timestamp": "2023-11-03 11:37:14.549079+00:00"},
"2,136,1,2,3,1,0,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.803431919642857, "tegra_power": 7.4576652611189465, "ps_energy": 3.2175557346319175, "time": 394.8884059361049, "times": [394.885009765625, 394.7726135253906, 394.8307189941406, 395.0228576660156, 394.88031005859375, 394.92572021484375, 394.901611328125], "compile_time": 966.8090519999168, "verification_time": 0, "benchmark_time": 2768.5939040002268, "GB/s": 6.223530402656726, "GB/s/W (Jetson)": 0.8766398009455088, "GPU (W) (Jetson)": 7.099301669789889, "GB/s/W (PS)": 0.7638096128523302, "GPU (W) (PS)": 8.148012669565526, "strategy_time": 0.02661500002432149, "framework_time": 2.785204999781854, "timestamp": "2023-11-03 11:37:18.287362+00:00"},
"2,48,1,2,5,0,0,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7513950892857144, "tegra_power": 7.4878722198562135, "ps_energy": 3.2155571039745285, "time": 387.4337463378906, "times": [387.32379150390625, 387.5942077636719, 387.30084228515625, 387.547607421875, 387.55352783203125, 387.5395202636719, 387.1767272949219], "compile_time": 996.3249530001121, "verification_time": 0, "benchmark_time": 2716.5099160001773, "GB/s": 6.343278104268866, "GB/s/W (Jetson)": 0.8932195923334346, "GPU (W) (Jetson)": 7.101588633650292, "GB/s/W (PS)": 0.76428435898785, "GPU (W) (PS)": 8.299630928819921, "strategy_time": 0.04270899989933241, "framework_time": 4.927167999539961, "timestamp": "2023-11-03 11:37:22.005805+00:00"},
"1,216,1,3,8,1,0,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6957310267857144, "tegra_power": 7.56065656237596, "ps_energy": 3.1367353669234683, "time": 376.9564208984375, "times": [376.81103515625, 377.01019287109375, 376.7533874511719, 377.2030334472656, 376.9888610839844, 376.78167724609375, 377.1467590332031], "compile_time": 1102.9926500000329, "verification_time": 0, "benchmark_time": 2642.2984630003157, "GB/s": 6.51958651915932, "GB/s/W (Jetson)": 0.9116636547120012, "GPU (W) (Jetson)": 7.151306828414574, "GB/s/W (PS)": 0.7834897473070643, "GPU (W) (PS)": 8.321214848781132, "strategy_time": 0.026511000214668456, "framework_time": 3.0014579997441615, "timestamp": "2023-11-03 11:37:25.754284+00:00"},
"4,256,1,3,4,1,0,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.482421875, "tegra_power": 7.472792060138169, "ps_energy": 2.9231675395427112, "time": 352.20193917410717, "times": [352.0020446777344, 351.95599365234375, 352.1378173828125, 352.24542236328125, 352.4324035644531, 352.219482421875, 352.42041015625], "compile_time": 1081.6129849999925, "verification_time": 0, "benchmark_time": 2470.2857010001935, "GB/s": 6.9778150732586175, "GB/s/W (Jetson)": 0.9900009441384735, "GPU (W) (Jetson)": 7.048291332015755, "GB/s/W (PS)": 0.8407318317390925, "GPU (W) (PS)": 8.299691780225194, "strategy_time": 0.02687499954845407, "framework_time": 3.337088000080257, "timestamp": "2023-11-03 11:37:29.309628+00:00"},
"2,80,1,3,8,1,1,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5541294642857144, "tegra_power": 7.466534608480184, "ps_energy": 2.965206902598896, "time": 360.96793038504467, "times": [360.4469909667969, 361.01129150390625, 360.7140197753906, 360.99530029296875, 361.31854248046875, 361.47979736328125, 360.8095703125], "compile_time": 950.7588359997499, "verification_time": 0, "benchmark_time": 2532.1594669999286, "GB/s": 6.8083610568353725, "GB/s/W (Jetson)": 0.9622065108149441, "GPU (W) (Jetson)": 7.0757794509922896, "GB/s/W (PS)": 0.8288123158778576, "GPU (W) (PS)": 8.214599284307358, "strategy_time": 0.14031399996383698, "framework_time": 6.57006200071919, "timestamp": "2023-11-03 11:37:32.799351+00:00"},
"1,48,1,4,8,0,1,0": {"block_size_x": 1, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.4161551339285716, "tegra_power": 7.321155111450884, "ps_energy": 3.965163169884493, "time": 485.7142769949777, "times": [486.15313720703125, 485.9967041015625, 485.674072265625, 485.7526550292969, 485.3108215332031, 485.4792175292969, 485.6333312988281], "compile_time": 956.2135950000084, "verification_time": 0, "benchmark_time": 3406.0911029996532, "GB/s": 5.059764796712804, "GB/s/W (Jetson)": 0.7194052681014415, "GPU (W) (Jetson)": 7.033260696110637, "GB/s/W (PS)": 0.6197979489634952, "GPU (W) (PS)": 8.163571378663619, "strategy_time": 0.040313999761565356, "framework_time": 4.904249000446725, "timestamp": "2023-11-03 11:37:37.167325+00:00"},
"2,192,1,1,1,0,0,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4718191964285716, "tegra_power": 7.464329998062134, "ps_energy": 2.8566436255615764, "time": 351.90726579938615, "times": [351.6678771972656, 351.8238525390625, 351.95196533203125, 352.0442810058594, 351.9684753417969, 352.0036926269531, 351.8907165527344], "compile_time": 1068.166057000326, "verification_time": 0, "benchmark_time": 2467.3840579998796, "GB/s": 6.983658022568418, "GB/s/W (Jetson)": 0.9942474771418894, "GPU (W) (Jetson)": 7.024064111929125, "GB/s/W (PS)": 0.8603103229290178, "GPU (W) (PS)": 8.117603423369156, "strategy_time": 0.029584000003524125, "framework_time": 3.366515999459807, "timestamp": "2023-11-03 11:37:40.706384+00:00"},
"8,56,1,2,7,0,0,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6697823660714284, "tegra_power": 7.446838708910947, "ps_energy": 3.0656104745238344, "time": 376.0294756208147, "times": [375.439208984375, 375.50469970703125, 375.6766662597656, 376.5847473144531, 375.7124938964844, 375.78558349609375, 377.5029296875], "compile_time": 1144.8578650001764, "verification_time": 0, "benchmark_time": 2635.3709850000087, "GB/s": 6.535657865497291, "GB/s/W (Jetson)": 0.920524470920207, "GPU (W) (Jetson)": 7.099928434236939, "GB/s/W (PS)": 0.801667407005362, "GPU (W) (PS)": 8.152580245106032, "strategy_time": 0.03229200001442223, "framework_time": 3.266096999595902, "timestamp": "2023-11-03 11:37:44.489968+00:00"},
"4,200,1,3,8,0,0,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.551478794642857, "tegra_power": 7.495926643652397, "ps_energy": 2.9436719268695533, "time": 360.08642578125, "times": [360.0086364746094, 360.2083435058594, 359.92889404296875, 359.90081787109375, 359.9530334472656, 360.12255859375, 360.4826965332031], "compile_time": 1112.9843239996262, "verification_time": 0, "benchmark_time": 2528.379981999933, "GB/s": 6.825028171134045, "GB/s/W (Jetson)": 0.9632061238996117, "GPU (W) (Jetson)": 7.085740011185156, "GB/s/W (PS)": 0.8348756454709726, "GPU (W) (PS)": 8.174903901147925, "strategy_time": 0.024948999907792313, "framework_time": 3.6352690003695898, "timestamp": "2023-11-03 11:37:48.137734+00:00"},
"1,216,1,3,3,1,0,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8818359375, "tegra_power": 7.50339937012665, "ps_energy": 3.324084351327266, "time": 403.0834655761719, "times": [403.0453186035156, 403.1009826660156, 403.0403137207031, 403.0260009765625, 403.13140869140625, 403.2994384765625, 402.9407958984375], "compile_time": 958.27921099999, "verification_time": 0, "benchmark_time": 2825.7442100002663, "GB/s": 6.097000273844227, "GB/s/W (Jetson)": 0.8527896984073194, "GPU (W) (Jetson)": 7.149476928756362, "GB/s/W (PS)": 0.7393314188969694, "GPU (W) (PS)": 8.24664029961086, "strategy_time": 0.027813000087917317, "framework_time": 16.604448999714805, "timestamp": "2023-11-03 11:37:51.938875+00:00"},
"8,80,1,3,2,0,1,0": {"block_size_x": 8, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5532924107142856, "tegra_power": 7.584919471027313, "ps_energy": 2.9325474486067833, "time": 354.66819545200894, "times": [354.7076110839844, 354.5874938964844, 354.5087890625, 354.80108642578125, 354.63165283203125, 354.6656188964844, 354.7751159667969], "compile_time": 984.1968159998942, "verification_time": 0, "benchmark_time": 2486.068516999694, "GB/s": 6.929293439655329, "GB/s/W (Jetson)": 0.9625219538848213, "GPU (W) (Jetson)": 7.199101705356544, "GB/s/W (PS)": 0.8380427062373961, "GPU (W) (PS)": 8.268425210412174, "strategy_time": 0.030469000193988904, "framework_time": 3.576624000288575, "timestamp": "2023-11-03 11:37:55.413151+00:00"},
"2,96,1,1,4,0,1,0": {"block_size_x": 2, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5009765625, "tegra_power": 7.471485513700599, "ps_energy": 2.915698403599111, "time": 353.16055733816967, "times": [353.1085510253906, 353.09368896484375, 353.1517639160156, 353.10186767578125, 353.1723327636719, 353.29376220703125, 353.2019348144531], "compile_time": 1096.3072950003152, "verification_time": 0, "benchmark_time": 2475.3634359999523, "GB/s": 6.958874508873084, "GB/s/W (Jetson)": 0.982656149941429, "GPU (W) (Jetson)": 7.081698424507764, "GB/s/W (PS)": 0.8428855319762707, "GPU (W) (PS)": 8.256013711087158, "strategy_time": 0.024896000013541197, "framework_time": 2.300767999713571, "timestamp": "2023-11-03 11:37:58.987204+00:00"},
"4,136,1,3,4,0,1,0": {"block_size_x": 4, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.543666294642857, "tegra_power": 7.468357024990952, "ps_energy": 2.910144887696723, "time": 359.8305097307478, "times": [359.7871398925781, 359.7708740234375, 359.7608947753906, 359.7083740234375, 359.84735107421875, 360.0039978027344, 359.9349365234375], "compile_time": 1100.5092170003081, "verification_time": 0, "benchmark_time": 2525.3158400000757, "GB/s": 6.8298822182670405, "GB/s/W (Jetson)": 0.9661644710140952, "GPU (W) (Jetson)": 7.069067869053736, "GB/s/W (PS)": 0.8444940354653968, "GPU (W) (PS)": 8.087543465600824, "strategy_time": 0.026980000257026404, "framework_time": 3.863243999603583, "timestamp": "2023-11-03 11:38:02.616975+00:00"},
"1,128,1,3,7,0,0,0": {"block_size_x": 1, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3826729910714284, "tegra_power": 7.476592777953358, "ps_energy": 3.9114341367899863, "time": 472.3224182128906, "times": [472.1692810058594, 472.0906677246094, 472.1560974121094, 472.2369689941406, 472.4361877441406, 472.48974609375, 472.677978515625], "compile_time": 1091.1793989998841, "verification_time": 0, "benchmark_time": 3310.6112270002086, "GB/s": 5.203225392727986, "GB/s/W (Jetson)": 0.7265260362106652, "GPU (W) (Jetson)": 7.1617879241691025, "GB/s/W (PS)": 0.6283117429702879, "GPU (W) (PS)": 8.281279875703422, "strategy_time": 0.0276050000138639, "framework_time": 3.3072419996642566, "timestamp": "2023-11-03 11:38:07.022212+00:00"},
"1,224,1,2,2,0,1,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5382254464285716, "tegra_power": 7.494772446994438, "ps_energy": 2.9498732063709343, "time": 357.5923810686384, "times": [357.5641784667969, 357.57135009765625, 357.5865173339844, 357.6305236816406, 357.518798828125, 357.5036926269531, 357.7716064453125], "compile_time": 1133.1439330001558, "verification_time": 0, "benchmark_time": 2506.495291000192, "GB/s": 6.872629647912642, "GB/s/W (Jetson)": 0.9682355062108385, "GPU (W) (Jetson)": 7.09809710946098, "GB/s/W (PS)": 0.8331205540266081, "GPU (W) (PS)": 8.249261904169927, "strategy_time": 0.05390799969973159, "framework_time": 6.6651639999690815, "timestamp": "2023-11-03 11:38:10.668680+00:00"},
"4,56,1,3,2,1,0,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5025111607142856, "tegra_power": 7.51004505226408, "ps_energy": 2.9206012742215535, "time": 354.1271667480469, "times": [353.8662109375, 354.1714172363281, 354.4721374511719, 354.0679626464844, 354.02557373046875, 354.22186279296875, 354.06500244140625], "compile_time": 999.6961299998475, "verification_time": 0, "benchmark_time": 2483.207031999882, "GB/s": 6.9398798814791975, "GB/s/W (Jetson)": 0.9820535622700413, "GPU (W) (Jetson)": 7.06670200904062, "GB/s/W (PS)": 0.8414705635075228, "GPU (W) (PS)": 8.24732341503608, "strategy_time": 0.025625000034779077, "framework_time": 2.584783000202151, "timestamp": "2023-11-03 11:38:14.154248+00:00"},
"4,184,1,2,7,1,0,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7230747767857144, "tegra_power": 7.426125708327086, "ps_energy": 3.2120520571895343, "time": 387.54444667271207, "times": [387.30499267578125, 392.9365539550781, 384.43829345703125, 387.94171142578125, 387.3177185058594, 388.3724365234375, 384.4994201660156], "compile_time": 973.4280600000602, "verification_time": 0, "benchmark_time": 2717.4158270004227, "GB/s": 6.341466175299074, "GB/s/W (Jetson)": 0.9025091859214098, "GPU (W) (Jetson)": 7.026483801186803, "GB/s/W (PS)": 0.765118359305278, "GPU (W) (PS)": 8.288215931790056, "strategy_time": 0.027084000066679437, "framework_time": 3.2457849993079435, "timestamp": "2023-11-03 11:38:17.848446+00:00"},
"4,128,1,2,4,0,0,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5033482142857144, "tegra_power": 7.555739229906755, "ps_energy": 2.87677374004904, "time": 351.6414228166853, "times": [351.5208435058594, 351.7962646484375, 351.6171875, 351.5911865234375, 351.7345886230469, 351.6712951660156, 351.55859375], "compile_time": 1137.073507000423, "verification_time": 0, "benchmark_time": 2465.2646389999973, "GB/s": 6.98893770908547, "GB/s/W (Jetson)": 0.9817251894783771, "GPU (W) (Jetson)": 7.119036756914553, "GB/s/W (PS)": 0.8542903342680351, "GPU (W) (PS)": 8.18098652031884, "strategy_time": 0.07895899989307509, "framework_time": 6.616101999497914, "timestamp": "2023-11-03 11:38:21.457888+00:00"},
"4,256,1,3,6,0,0,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.654994419642857, "tegra_power": 7.403910573930673, "ps_energy": 3.058245066176044, "time": 377.50488717215404, "times": [370.7182922363281, 387.6227111816406, 372.67584228515625, 371.2120361328125, 379.8866271972656, 372.6859436035156, 387.7327575683594], "compile_time": 1116.0608370000773, "verification_time": 0, "benchmark_time": 2647.91104599999, "GB/s": 6.510114394570095, "GB/s/W (Jetson)": 0.9256516630760337, "GPU (W) (Jetson)": 7.033006750008237, "GB/s/W (PS)": 0.8035981246829652, "GPU (W) (PS)": 8.101206554132341, "strategy_time": 0.0276050000138639, "framework_time": 2.6713460001701606, "timestamp": "2023-11-03 11:38:25.225015+00:00"},
"1,224,1,2,3,0,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8543526785714284, "tegra_power": 7.514304840539771, "ps_energy": 3.3009822695385083, "time": 400.57283673967635, "times": [400.0270690917969, 399.8979797363281, 401.55328369140625, 400.6361389160156, 400.2481384277344, 400.1138610839844, 401.53338623046875], "compile_time": 1147.4760789997163, "verification_time": 0, "benchmark_time": 2811.6968109998197, "GB/s": 6.135213810309212, "GB/s/W (Jetson)": 0.8610008211143695, "GPU (W) (Jetson)": 7.125677072373259, "GB/s/W (PS)": 0.7445056650799833, "GPU (W) (PS)": 8.240654299991252, "strategy_time": 0.02807400005622185, "framework_time": 3.2348980003007455, "timestamp": "2023-11-03 11:38:29.187549+00:00"},
"1,224,1,1,8,0,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.610630580357143, "tegra_power": 7.589671972306457, "ps_energy": 2.995081128871139, "time": 361.4445146833147, "times": [361.47509765625, 361.47479248046875, 361.4196472167969, 361.3837890625, 361.32562255859375, 361.448486328125, 361.58416748046875], "compile_time": 1096.8272330001128, "verification_time": 0, "benchmark_time": 2534.15135799969, "GB/s": 6.7993838615956435, "GB/s/W (Jetson)": 0.9413817559985036, "GPU (W) (Jetson)": 7.222769953071463, "GB/s/W (PS)": 0.8205453856691627, "GPU (W) (PS)": 8.286420203375686, "strategy_time": 0.028593999559234362, "framework_time": 3.3368790004715265, "timestamp": "2023-11-03 11:38:32.821947+00:00"},
"4,240,1,4,5,1,0,0": {"block_size_x": 4, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6304408482142856, "tegra_power": 7.4152798834377505, "ps_energy": 3.0427898299806526, "time": 373.7833818708147, "times": [373.168701171875, 373.4703674316406, 374.3741149902344, 374.0459899902344, 373.4781799316406, 374.0657958984375, 373.8805236816406], "compile_time": 1104.2974389997653, "verification_time": 0, "benchmark_time": 2622.002567999971, "GB/s": 6.574931147820221, "GB/s/W (Jetson)": 0.934292060461416, "GPU (W) (Jetson)": 7.0373402772716265, "GB/s/W (PS)": 0.8076798390034142, "GPU (W) (PS)": 8.140516613529618, "strategy_time": 0.028541999654407846, "framework_time": 3.358024000590376, "timestamp": "2023-11-03 11:38:36.551705+00:00"},
"1,128,1,3,2,0,0,0": {"block_size_x": 1, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.583984375, "tegra_power": 7.561987496829221, "ps_energy": 2.9655425008947662, "time": 358.6343470982143, "times": [358.5470275878906, 358.650634765625, 358.6078186035156, 358.5792236328125, 358.60198974609375, 358.66259765625, 358.7911376953125], "compile_time": 977.2008580002876, "verification_time": 0, "benchmark_time": 2514.312794000034, "GB/s": 6.852662105247187, "GB/s/W (Jetson)": 0.9510893424036281, "GPU (W) (Jetson)": 7.2050666532850505, "GB/s/W (PS)": 0.8287185225834701, "GPU (W) (PS)": 8.268986294507464, "strategy_time": 0.02994799979205709, "framework_time": 4.060432000187575, "timestamp": "2023-11-03 11:38:40.047976+00:00"},
"4,144,1,2,7,1,0,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7306082589285716, "tegra_power": 7.4452220781294, "ps_energy": 3.173889026478199, "time": 384.7924237932478, "times": [384.771240234375, 384.61688232421875, 384.6685485839844, 384.7765197753906, 384.7455749511719, 384.9686584472656, 384.9995422363281], "compile_time": 983.9799089995722, "verification_time": 0, "benchmark_time": 2697.4835119999625, "GB/s": 6.386820134796856, "GB/s/W (Jetson)": 0.9000192510090429, "GPU (W) (Jetson)": 7.096315026191239, "GB/s/W (PS)": 0.7743181880328671, "GPU (W) (PS)": 8.248314754199933, "strategy_time": 0.04880200003753998, "framework_time": 4.889563000688213, "timestamp": "2023-11-03 11:38:43.734480+00:00"},
"4,248,1,3,1,0,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5796595982142856, "tegra_power": 7.350127720182163, "ps_energy": 2.9778244955201183, "time": 371.1095406668527, "times": [377.0799560546875, 369.8278503417969, 370.0150451660156, 369.8550109863281, 370.0534362792969, 369.9200134277344, 371.0154724121094], "compile_time": 1086.9051509998826, "verification_time": 0, "benchmark_time": 2601.6965939998045, "GB/s": 6.622303472941975, "GB/s/W (Jetson)": 0.9526838353793737, "GPU (W) (Jetson)": 6.951207973739651, "GB/s/W (PS)": 0.8253004848664682, "GPU (W) (PS)": 8.024111937864, "strategy_time": 0.024166999992303317, "framework_time": 2.7174930000910535, "timestamp": "2023-11-03 11:38:47.425882+00:00"},
"2,48,1,4,7,0,0,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.888392857142857, "tegra_power": 7.5947729830752815, "ps_energy": 3.3185746312098803, "time": 398.1926531110491, "times": [397.5364990234375, 398.58319091796875, 397.89453125, 398.1865539550781, 398.1355285644531, 398.6760559082031, 398.3362121582031], "compile_time": 1114.9808559998746, "verification_time": 0, "benchmark_time": 2790.672867000012, "GB/s": 6.171886851248904, "GB/s/W (Jetson)": 0.8508537867078825, "GPU (W) (Jetson)": 7.253757281999209, "GB/s/W (PS)": 0.7405589064917344, "GPU (W) (PS)": 8.334093070984881, "strategy_time": 0.047032000111357775, "framework_time": 4.8361750000367465, "timestamp": "2023-11-03 11:38:51.336500+00:00"},
"4,112,1,3,7,0,1,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5438058035714284, "tegra_power": 7.485499274224126, "ps_energy": 2.9814051742962744, "time": 358.6980416434152, "times": [358.7338562011719, 358.81536865234375, 358.81781005859375, 358.612548828125, 358.6976013183594, 358.7326965332031, 358.4764099121094], "compile_time": 1080.8327620002274, "verification_time": 0, "benchmark_time": 2514.2225760000656, "GB/s": 6.8514452678365085, "GB/s/W (Jetson)": 0.9661114840408029, "GPU (W) (Jetson)": 7.091774998036503, "GB/s/W (PS)": 0.8243092958943722, "GPU (W) (PS)": 8.31174087440409, "strategy_time": 0.02500000027794158, "framework_time": 2.607700999305962, "timestamp": "2023-11-03 11:38:54.934313+00:00"},
"16,40,1,3,2,0,0,0": {"block_size_x": 16, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6007254464285716, "tegra_power": 7.642688876871687, "ps_energy": 3.011685330536108, "time": 357.16690935407365, "times": [357.03826904296875, 356.98687744140625, 357.0479736328125, 357.2516784667969, 357.28985595703125, 357.20465087890625, 357.34906005859375], "compile_time": 1140.5527449996953, "verification_time": 0, "benchmark_time": 2507.613193999987, "GB/s": 6.880816603208009, "GB/s/W (Jetson)": 0.9449671065336336, "GPU (W) (Jetson)": 7.28154086595511, "GB/s/W (PS)": 0.8160215063246743, "GPU (W) (PS)": 8.432151052242373, "strategy_time": 0.027968999802396866, "framework_time": 3.3705780006130226, "timestamp": "2023-11-03 11:38:58.585945+00:00"},
"2,128,1,4,2,0,0,0": {"block_size_x": 2, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5594308035714284, "tegra_power": 7.539777838928971, "ps_energy": 2.9714924614600022, "time": 356.04391043526783, "times": [355.8815612792969, 355.9859313964844, 356.01446533203125, 356.0193176269531, 356.0666198730469, 356.21453857421875, 356.12493896484375], "compile_time": 1152.3540120001599, "verification_time": 0, "benchmark_time": 2495.9995139997773, "GB/s": 6.902519402720735, "GB/s/W (Jetson)": 0.9602134961299466, "GPU (W) (Jetson)": 7.1885257086478305, "GB/s/W (PS)": 0.8270591401037887, "GPU (W) (PS)": 8.345859525661647, "strategy_time": 0.024792000203888165, "framework_time": 3.420942000047944, "timestamp": "2023-11-03 11:39:02.238207+00:00"},
"1,216,1,3,1,0,0,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7455357142857144, "tegra_power": 7.512948600724546, "ps_energy": 3.1778330913169026, "time": 381.04549734933033, "times": [380.9029235839844, 381.07275390625, 381.13037109375, 381.08245849609375, 381.1593322753906, 380.9295349121094, 381.0411071777344], "compile_time": 1123.441529000047, "verification_time": 0, "benchmark_time": 2682.138698000017, "GB/s": 6.449623515028575, "GB/s/W (Jetson)": 0.8951258536585365, "GPU (W) (Jetson)": 7.205270061933562, "GB/s/W (PS)": 0.7733571680385403, "GPU (W) (PS)": 8.3397733693821, "strategy_time": 0.029843999982404057, "framework_time": 3.4210469998470217, "timestamp": "2023-11-03 11:39:06.047629+00:00"},
"2,40,1,4,8,0,1,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0616629464285716, "tegra_power": 7.411885770882203, "ps_energy": 3.564866700183692, "time": 429.6480276925223, "times": [429.2358703613281, 431.0438537597656, 429.3620300292969, 429.50665283203125, 429.489990234375, 429.45806884765625, 429.4397277832031], "compile_time": 1087.4716889998126, "verification_time": 0, "benchmark_time": 3020.908631000111, "GB/s": 5.720030912742329, "GB/s/W (Jetson)": 0.8027010298004191, "GPU (W) (Jetson)": 7.125979287910641, "GB/s/W (PS)": 0.6893946412844452, "GPU (W) (PS)": 8.297179250022973, "strategy_time": 0.026095000066561624, "framework_time": 2.6596800003062526, "timestamp": "2023-11-03 11:39:10.158754+00:00"},
"8,120,1,4,2,1,1,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.572544642857143, "tegra_power": 7.46315343884307, "ps_energy": 2.966709097968955, "time": 362.7234540666853, "times": [362.6929626464844, 362.51287841796875, 362.98370361328125, 362.5576477050781, 362.8141174316406, 362.71514892578125, 362.7877197265625], "compile_time": 1008.7005689997568, "verification_time": 0, "benchmark_time": 2543.1723749998127, "GB/s": 6.775409674909469, "GB/s/W (Jetson)": 0.9553186984815618, "GPU (W) (Jetson)": 7.092303003886236, "GB/s/W (PS)": 0.8283926461419836, "GPU (W) (PS)": 8.178983367928387, "strategy_time": 0.03760499976124265, "framework_time": 3.3877640003083798, "timestamp": "2023-11-03 11:39:13.714108+00:00"},
"2,192,1,3,4,1,1,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5030691964285716, "tegra_power": 7.495613074798541, "ps_energy": 2.9258127301566543, "time": 355.42381068638394, "times": [355.5771484375, 355.31719970703125, 355.4206237792969, 355.5129699707031, 355.5260314941406, 355.29681396484375, 355.3158874511719], "compile_time": 1114.0643759999875, "verification_time": 0, "benchmark_time": 2491.4569390002725, "GB/s": 6.914562069586602, "GB/s/W (Jetson)": 0.9818346226730574, "GPU (W) (Jetson)": 7.042491586578621, "GB/s/W (PS)": 0.8399717366286853, "GPU (W) (PS)": 8.23189848903598, "strategy_time": 0.02442699997118325, "framework_time": 2.678846999970119, "timestamp": "2023-11-03 11:39:17.322389+00:00"},
"4,200,1,4,6,0,0,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.679408482142857, "tegra_power": 7.516214435729509, "ps_energy": 3.100157800368574, "time": 375.0124206542969, "times": [372.1457824707031, 373.3382263183594, 370.9845886230469, 378.7818603515625, 379.3869323730469, 373.86212158203125, 376.5874328613281], "compile_time": 1097.714396000356, "verification_time": 0, "benchmark_time": 2630.9945079997306, "GB/s": 6.553382940522722, "GB/s/W (Jetson)": 0.9172173695720086, "GPU (W) (Jetson)": 7.144852635728712, "GB/s/W (PS)": 0.7927338407444352, "GPU (W) (PS)": 8.266813656357364, "strategy_time": 0.02734400004555937, "framework_time": 3.4240149998367997, "timestamp": "2023-11-03 11:39:21.054939+00:00"},
"1,136,1,2,4,1,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.573939732142857, "tegra_power": 7.546157782802662, "ps_energy": 2.985301032468539, "time": 359.30801827566967, "times": [359.2126159667969, 359.4229736328125, 359.3028259277344, 359.2516174316406, 359.3925476074219, 359.19183349609375, 359.3817138671875], "compile_time": 1151.5557309999167, "verification_time": 0, "benchmark_time": 2518.960418000006, "GB/s": 6.839813961831686, "GB/s/W (Jetson)": 0.9548009105691055, "GPU (W) (Jetson)": 7.163602261077484, "GB/s/W (PS)": 0.8232335611286127, "GPU (W) (PS)": 8.308473177957708, "strategy_time": 0.02687599999262602, "framework_time": 3.1212499998218846, "timestamp": "2023-11-03 11:39:24.728665+00:00"},
"4,224,1,3,6,0,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6632254464285716, "tegra_power": 7.422725420047814, "ps_energy": 3.0954407165497417, "time": 377.2696838378906, "times": [383.4862365722656, 374.7174987792969, 373.9786071777344, 384.52691650390625, 377.04644775390625, 374.4173889160156, 372.7146911621094], "compile_time": 1123.5391530003653, "verification_time": 0, "benchmark_time": 2644.236599999658, "GB/s": 6.514173031342769, "GB/s/W (Jetson)": 0.9227908224201151, "GPU (W) (Jetson)": 7.059208731897302, "GB/s/W (PS)": 0.7939418729166632, "GPU (W) (PS)": 8.204848810167913, "strategy_time": 0.026926999908027938, "framework_time": 2.6802530001077685, "timestamp": "2023-11-03 11:39:28.499202+00:00"},
"1,64,1,4,2,1,0,0": {"block_size_x": 1, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5887276785714284, "tegra_power": 7.581201808082106, "ps_energy": 3.030329233129513, "time": 362.4896676199777, "times": [362.54937744140625, 362.67584228515625, 362.39599609375, 362.406982421875, 362.3937072753906, 362.3909912109375, 362.6147766113281], "compile_time": 1165.9360789999482, "verification_time": 0, "benchmark_time": 2543.864427000244, "GB/s": 6.7797794517455525, "GB/s/W (Jetson)": 0.9493466695408493, "GPU (W) (Jetson)": 7.141521289609186, "GB/s/W (PS)": 0.8110009873290109, "GPU (W) (PS)": 8.359767198403048, "strategy_time": 0.02619800034153741, "framework_time": 3.0247369995777262, "timestamp": "2023-11-03 11:39:32.212111+00:00"},
"16,56,1,4,2,0,1,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6015625, "tegra_power": 7.648622850560611, "ps_energy": 3.0218514073000864, "time": 360.43408639090404, "times": [360.4979248046875, 360.4438171386719, 360.2931213378906, 360.4442138671875, 360.47576904296875, 360.4401550292969, 360.443603515625], "compile_time": 1145.3029029999016, "verification_time": 0, "benchmark_time": 2526.7723259999, "GB/s": 6.818445016142681, "GB/s/W (Jetson)": 0.944663063063063, "GPU (W) (Jetson)": 7.217859237593055, "GB/s/W (PS)": 0.8132762564244598, "GPU (W) (PS)": 8.383922390799569, "strategy_time": 0.027500999749463517, "framework_time": 3.4825050001927593, "timestamp": "2023-11-03 11:39:35.887754+00:00"},
"2,248,1,2,6,1,0,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.825892857142857, "tegra_power": 7.493348428492861, "ps_energy": 3.2862567788210333, "time": 397.9407261439732, "times": [397.76287841796875, 397.93505859375, 397.8923034667969, 398.07110595703125, 397.89337158203125, 398.0882263183594, 397.942138671875], "compile_time": 979.8087570002281, "verification_time": 0, "benchmark_time": 2789.531071000056, "GB/s": 6.1757941284724165, "GB/s/W (Jetson)": 0.8696720379146918, "GPU (W) (Jetson)": 7.101290899591064, "GB/s/W (PS)": 0.7478417437853655, "GPU (W) (PS)": 8.258156461301926, "strategy_time": 0.02760399956969195, "framework_time": 2.987238000059733, "timestamp": "2023-11-03 11:39:39.660166+00:00"},
"2,112,1,3,2,1,0,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5203683035714284, "tegra_power": 7.514753890971892, "ps_energy": 2.9101537099569605, "time": 354.50548880440846, "times": [354.5921325683594, 354.45025634765625, 354.6709289550781, 354.5279541015625, 354.5302734375, 354.2459411621094, 354.52093505859375], "compile_time": 1155.3680770002757, "verification_time": 0, "benchmark_time": 2485.605770999882, "GB/s": 6.932473763067553, "GB/s/W (Jetson)": 0.9750955828628363, "GPU (W) (Jetson)": 7.109532526764325, "GB/s/W (PS)": 0.8444914753442169, "GPU (W) (PS)": 8.209051204740533, "strategy_time": 0.02953100010927301, "framework_time": 2.928381999481644, "timestamp": "2023-11-03 11:39:43.304169+00:00"},
"4,256,1,2,7,1,1,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.484654017857143, "tegra_power": 7.506851855797502, "ps_energy": 2.8772775980526473, "time": 350.6323460170201, "times": [350.6937561035156, 350.73193359375, 350.60443115234375, 350.67010498046875, 350.5590515136719, 350.48907470703125, 350.6780700683594], "compile_time": 1164.244397999937, "verification_time": 0, "benchmark_time": 2458.1614730000183, "GB/s": 7.009051012882608, "GB/s/W (Jetson)": 0.9891115553060078, "GPU (W) (Jetson)": 7.086208805551941, "GB/s/W (PS)": 0.8541407341659745, "GPU (W) (PS)": 8.205967392161192, "strategy_time": 0.059376000081101665, "framework_time": 4.175642000063817, "timestamp": "2023-11-03 11:39:46.931193+00:00"},
"1,64,1,2,2,1,0,0": {"block_size_x": 1, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.564732142857143, "tegra_power": 7.556128926264451, "ps_energy": 3.0224493432729753, "time": 360.2993687220982, "times": [360.4046325683594, 360.3194274902344, 360.25494384765625, 360.326416015625, 360.310791015625, 360.28265380859375, 360.19671630859375], "compile_time": 1150.8559799999603, "verification_time": 0, "benchmark_time": 2526.065507000112, "GB/s": 6.820994465565013, "GB/s/W (Jetson)": 0.9582287206266318, "GPU (W) (Jetson)": 7.118336487664904, "GB/s/W (PS)": 0.8131153646858786, "GPU (W) (PS)": 8.388716732957183, "strategy_time": 0.02588600000308361, "framework_time": 2.4752489998718374, "timestamp": "2023-11-03 11:39:50.610675+00:00"},
"4,192,1,1,6,0,0,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5516183035714284, "tegra_power": 7.465550481305239, "ps_energy": 2.995644992918512, "time": 362.9639195033482, "times": [362.2715759277344, 362.9339599609375, 362.787353515625, 364.03167724609375, 363.68072509765625, 362.4750061035156, 362.567138671875], "compile_time": 1088.3360819998416, "verification_time": 0, "benchmark_time": 2544.075391000206, "GB/s": 6.770920931652903, "GB/s/W (Jetson)": 0.9631534609075998, "GPU (W) (Jetson)": 7.029950269059431, "GB/s/W (PS)": 0.8203909361121189, "GPU (W) (PS)": 8.253285883118965, "strategy_time": 0.047188000280584674, "framework_time": 4.16720399971382, "timestamp": "2023-11-03 11:39:54.247691+00:00"},
"8,48,1,4,5,0,0,0": {"block_size_x": 8, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6953125, "tegra_power": 7.669858468069746, "ps_energy": 3.110707519104056, "time": 370.2932346888951, "times": [370.38311767578125, 370.35260009765625, 370.1504821777344, 370.08160400390625, 370.2691650390625, 370.1440734863281, 370.6716003417969], "compile_time": 1090.8011540000189, "verification_time": 0, "benchmark_time": 2595.6756659998064, "GB/s": 6.636902243339047, "GB/s/W (Jetson)": 0.9118052173913043, "GPU (W) (Jetson)": 7.2788596914671935, "GB/s/W (PS)": 0.7900453465672775, "GPU (W) (PS)": 8.400659876266825, "strategy_time": 0.02760499955911655, "framework_time": 2.7113980008834915, "timestamp": "2023-11-03 11:39:57.936968+00:00"},
"4,224,1,2,7,0,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8060825892857144, "tegra_power": 7.315093750189108, "ps_energy": 3.225528040537548, "time": 403.1379917689732, "times": [404.3741149902344, 400.8240661621094, 401.5288391113281, 399.2632141113281, 415.1543273925781, 399.6069641113281, 401.21441650390625], "compile_time": 1144.8295690001942, "verification_time": 0, "benchmark_time": 2826.8147490002775, "GB/s": 6.096175627645581, "GB/s/W (Jetson)": 0.8758117132345629, "GPU (W) (Jetson)": 6.960600703924227, "GB/s/W (PS)": 0.7619217595114846, "GPU (W) (PS)": 8.001052012944504, "strategy_time": 0.02604200017231051, "framework_time": 2.8188999995109043, "timestamp": "2023-11-03 11:40:01.911517+00:00"},
"8,64,1,2,7,0,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.63671875, "tegra_power": 7.56808879772875, "ps_energy": 3.069221034286394, "time": 367.86358642578125, "times": [367.8095397949219, 367.8047790527344, 367.7243347167969, 367.81707763671875, 367.9252624511719, 368.1839599609375, 367.7801513671875], "compile_time": 1001.1053809998884, "verification_time": 0, "benchmark_time": 2583.400888000142, "GB/s": 6.6807373458145625, "GB/s/W (Jetson)": 0.9320675555555554, "GPU (W) (Jetson)": 7.167653574029335, "GB/s/W (PS)": 0.8007243442378537, "GPU (W) (PS)": 8.343367344692671, "strategy_time": 0.07791799998813076, "framework_time": 5.937752000136243, "timestamp": "2023-11-03 11:40:05.502145+00:00"},
"16,64,1,2,4,0,0,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.525669642857143, "tegra_power": 7.595253960031485, "ps_energy": 2.9048321425424155, "time": 352.4780752999442, "times": [352.4909973144531, 352.61175537109375, 352.38031005859375, 352.47930908203125, 352.50811767578125, 352.37322998046875, 352.5028076171875], "compile_time": 994.87494899995, "verification_time": 0, "benchmark_time": 2471.3065720002305, "GB/s": 6.972348557874655, "GB/s/W (Jetson)": 0.9730488731771983, "GPU (W) (Jetson)": 7.165465939145018, "GB/s/W (PS)": 0.8460385589953636, "GPU (W) (PS)": 8.241171142547019, "strategy_time": 0.02614599998196354, "framework_time": 2.872650999961479, "timestamp": "2023-11-03 11:40:08.971677+00:00"},
"1,256,1,3,6,0,0,0": {"block_size_x": 1, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.967075892857143, "tegra_power": 7.630555873513866, "ps_energy": 3.436774010711815, "time": 406.64974539620533, "times": [406.7984313964844, 406.96795654296875, 406.5435791015625, 406.38739013671875, 406.7437438964844, 406.52801513671875, 406.5791015625], "compile_time": 1106.6907090003042, "verification_time": 0, "benchmark_time": 2849.857366999913, "GB/s": 6.043530157889367, "GB/s/W (Jetson)": 0.828290238856498, "GPU (W) (Jetson)": 7.29639186166531, "GB/s/W (PS)": 0.7150892064302443, "GPU (W) (PS)": 8.451435294428407, "strategy_time": 0.047761000132595655, "framework_time": 3.847144999781449, "timestamp": "2023-11-03 11:40:12.932589+00:00"},
"4,80,1,3,8,1,1,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5281808035714284, "tegra_power": 7.490352593755462, "ps_energy": 2.9296668492549673, "time": 357.3833923339844, "times": [357.3773498535156, 357.3049011230469, 357.6085510253906, 357.4341735839844, 357.3548583984375, 357.2633361816406, 357.340576171875], "compile_time": 1113.80387600002, "verification_time": 0, "benchmark_time": 2504.8672849998184, "GB/s": 6.8766485872497025, "GB/s/W (Jetson)": 0.9720823750137954, "GPU (W) (Jetson)": 7.074141825842807, "GB/s/W (PS)": 0.8388667129933163, "GPU (W) (PS)": 8.197546142594994, "strategy_time": 0.02614599998196354, "framework_time": 2.2752980003133416, "timestamp": "2023-11-03 11:40:16.553939+00:00"},
"4,64,1,2,4,1,0,0": {"block_size_x": 4, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4779575892857144, "tegra_power": 7.558186474334939, "ps_energy": 2.9278808067891595, "time": 350.6061706542969, "times": [350.4405822753906, 350.59661865234375, 350.53369140625, 350.5927734375, 350.66790771484375, 350.69635009765625, 350.71527099609375], "compile_time": 980.7427910000115, "verification_time": 0, "benchmark_time": 2458.2375299996784, "GB/s": 7.009574290759507, "GB/s/W (Jetson)": 0.9917845287692826, "GPU (W) (Jetson)": 7.067638269632792, "GB/s/W (PS)": 0.8393784317658444, "GPU (W) (PS)": 8.350910656607054, "strategy_time": 0.028802999622712377, "framework_time": 2.991193000525527, "timestamp": "2023-11-03 11:40:19.996004+00:00"},
"4,256,1,4,7,0,0,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8286830357142856, "tegra_power": 7.386604506593914, "ps_energy": 3.2904488274102084, "time": 401.7522539411272, "times": [401.1724548339844, 402.65301513671875, 403.3179626464844, 401.8267822265625, 401.2073974609375, 401.08306884765625, 401.0050964355469], "compile_time": 1102.1908890002123, "verification_time": 0, "benchmark_time": 2815.7264550000036, "GB/s": 6.117202768351205, "GB/s/W (Jetson)": 0.8688142039850069, "GPU (W) (Jetson)": 7.040864134464322, "GB/s/W (PS)": 0.7468889895893889, "GPU (W) (PS)": 8.19024360194975, "strategy_time": 0.029167999855417293, "framework_time": 3.8631859997622087, "timestamp": "2023-11-03 11:40:23.917887+00:00"},
"1,248,1,3,3,1,1,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7120535714285716, "tegra_power": 7.4925979145267405, "ps_energy": 3.1067294788231914, "time": 382.40637642996654, "times": [382.2384338378906, 382.46942138671875, 382.379638671875, 382.36053466796875, 382.4942321777344, 382.4255065917969, 382.47686767578125], "compile_time": 1102.5796769999943, "verification_time": 0, "benchmark_time": 2680.307856000127, "GB/s": 6.426671079450689, "GB/s/W (Jetson)": 0.9061767901234566, "GPU (W) (Jetson)": 7.092072043221418, "GB/s/W (PS)": 0.7910569673838878, "GPU (W) (PS)": 8.124157101737435, "strategy_time": 0.027813000087917317, "framework_time": 3.1171859995993145, "timestamp": "2023-11-03 11:40:27.703978+00:00"},
"2,64,1,4,7,0,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.855747767857143, "tegra_power": 7.600804406753923, "ps_energy": 3.330054027483129, "time": 397.0597141810826, "times": [397.2228698730469, 396.8322448730469, 397.24530029296875, 397.6091003417969, 396.8830261230469, 396.8687438964844, 396.7567138671875], "compile_time": 952.2400910000215, "verification_time": 0, "benchmark_time": 2783.927142000266, "GB/s": 6.189497227309214, "GB/s/W (Jetson)": 0.8605802051783097, "GPU (W) (Jetson)": 7.192237504494736, "GB/s/W (PS)": 0.7380060442615298, "GPU (W) (PS)": 8.386783923297816, "strategy_time": 0.02880200008803513, "framework_time": 3.053955999803293, "timestamp": "2023-11-03 11:40:31.443302+00:00"},
"1,144,1,4,6,0,0,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0343191964285716, "tegra_power": 7.619517815466378, "ps_energy": 3.4828899805272937, "time": 417.8470764160156, "times": [417.1127624511719, 417.3755187988281, 418.15545654296875, 417.9971923828125, 417.9198913574219, 418.1387023925781, 418.2300109863281], "compile_time": 1099.191196999982, "verification_time": 0, "benchmark_time": 2928.6578130004273, "GB/s": 5.881577588335622, "GB/s/W (Jetson)": 0.8099345655172413, "GPU (W) (Jetson)": 7.261793530912615, "GB/s/W (PS)": 0.7056209107207947, "GPU (W) (PS)": 8.335322124067392, "strategy_time": 0.027239999781158986, "framework_time": 4.560334999496263, "timestamp": "2023-11-03 11:40:35.476218+00:00"},
"2,104,1,1,4,0,1,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6316964285714284, "tegra_power": 7.441917132859556, "ps_energy": 3.053027002494803, "time": 374.1023690359933, "times": [373.6007385253906, 373.8816223144531, 373.8737487792969, 373.85614013671875, 375.6994934082031, 373.79266357421875, 374.0121765136719], "compile_time": 943.2642860001579, "verification_time": 0, "benchmark_time": 2625.6103219998295, "GB/s": 6.56932487846274, "GB/s/W (Jetson)": 0.9338463104325699, "GPU (W) (Jetson)": 7.034695971995372, "GB/s/W (PS)": 0.8049715898325676, "GPU (W) (PS)": 8.1609400399201, "strategy_time": 0.026563000119494973, "framework_time": 2.635041999837995, "timestamp": "2023-11-03 11:40:39.047824+00:00"},
"4,208,1,3,4,0,1,0": {"block_size_x": 4, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.523158482142857, "tegra_power": 7.474575551066144, "ps_energy": 2.928196112710014, "time": 356.3858860560826, "times": [356.3667297363281, 356.3982238769531, 356.37957763671875, 356.3805236816406, 356.3395690917969, 356.3801574707031, 356.4564208984375], "compile_time": 965.4032210000878, "verification_time": 0, "benchmark_time": 2497.8849909998644, "GB/s": 6.89589598285399, "GB/s/W (Jetson)": 0.9740172951454162, "GPU (W) (Jetson)": 7.079849626103882, "GB/s/W (PS)": 0.8392880481374307, "GPU (W) (PS)": 8.216363855243186, "strategy_time": 0.02661500002432149, "framework_time": 2.972131000205991, "timestamp": "2023-11-03 11:40:42.514167+00:00"},
"2,240,1,3,6,0,1,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6060267857142856, "tegra_power": 7.458124134287673, "ps_energy": 3.0062783957998493, "time": 367.223868233817, "times": [367.21917724609375, 367.16119384765625, 367.1993103027344, 367.31005859375, 367.2732849121094, 367.1707763671875, 367.2332763671875], "compile_time": 959.7300929999619, "verification_time": 0, "benchmark_time": 2574.0582090002135, "GB/s": 6.6923754488507505, "GB/s/W (Jetson)": 0.9430447965738757, "GPU (W) (Jetson)": 7.096561555892628, "GB/s/W (PS)": 0.8174891598308318, "GPU (W) (PS)": 8.1865005405523, "strategy_time": 0.026926999908027938, "framework_time": 2.7312430001984467, "timestamp": "2023-11-03 11:40:46.050769+00:00"},
"2,240,1,3,5,1,0,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7681361607142856, "tegra_power": 7.488372363997506, "ps_energy": 3.2229803943170867, "time": 390.4263131277902, "times": [390.4750671386719, 390.290771484375, 390.2227478027344, 390.4745178222656, 390.55047607421875, 390.4784851074219, 390.49212646484375], "compile_time": 1097.2081750001053, "verification_time": 0, "benchmark_time": 2736.2992119997216, "GB/s": 6.294657704578442, "GB/s/W (Jetson)": 0.8878175990323556, "GPU (W) (Jetson)": 7.090034835352526, "GB/s/W (PS)": 0.7625240303457501, "GPU (W) (PS)": 8.255028633949104, "strategy_time": 0.08562599987271824, "framework_time": 3.1284360002246103, "timestamp": "2023-11-03 11:40:49.887574+00:00"},
"4,184,1,3,3,1,0,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7022879464285716, "tegra_power": 7.352961104758163, "ps_energy": 3.119709864379339, "time": 387.22933088030135, "times": [387.19171142578125, 386.6448059082031, 387.209228515625, 386.5002136230469, 387.1376037597656, 386.6875915527344, 389.2341613769531], "compile_time": 1090.524507000282, "verification_time": 0, "benchmark_time": 2716.656139999941, "GB/s": 6.346626673173376, "GB/s/W (Jetson)": 0.9094515642746513, "GPU (W) (Jetson)": 6.978520816812534, "GB/s/W (PS)": 0.7877655637342209, "GPU (W) (PS)": 8.056491633232428, "strategy_time": 0.02833400003510178, "framework_time": 3.016663999460434, "timestamp": "2023-11-03 11:40:53.697857+00:00"},
"2,232,1,3,5,0,0,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8158482142857144, "tegra_power": 7.556084191189177, "ps_energy": 3.2310038235762994, "time": 390.81787545340404, "times": [390.78973388671875, 390.7512512207031, 390.7419738769531, 390.931396484375, 390.7552490234375, 390.826416015625, 390.9291076660156], "compile_time": 1119.7128209996663, "verification_time": 0, "benchmark_time": 2739.355155999874, "GB/s": 6.288351056483371, "GB/s/W (Jetson)": 0.8727743162901307, "GPU (W) (Jetson)": 7.205013872558752, "GB/s/W (PS)": 0.7606304833399291, "GPU (W) (PS)": 8.267287722773371, "strategy_time": 0.02864599991880823, "framework_time": 2.9674960005650064, "timestamp": "2023-11-03 11:40:57.559976+00:00"},
"2,144,1,4,5,1,0,0": {"block_size_x": 2, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8091517857142856, "tegra_power": 7.5379058044048834, "ps_energy": 3.203661936366968, "time": 391.03731863839283, "times": [391.0567321777344, 391.2967224121094, 391.2143249511719, 390.91375732421875, 391.0176086425781, 391.1153259277344, 390.6467590332031], "compile_time": 1123.742606000178, "verification_time": 0, "benchmark_time": 2742.0823920001567, "GB/s": 6.284822145767209, "GB/s/W (Jetson)": 0.8748548271752086, "GPU (W) (Jetson)": 7.183845765657001, "GB/s/W (PS)": 0.7671221398556738, "GPU (W) (PS)": 8.192726841321036, "strategy_time": 0.04067800000484567, "framework_time": 3.5623489993668045, "timestamp": "2023-11-03 11:41:01.429770+00:00"},
"4,136,1,3,8,0,0,0": {"block_size_x": 4, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5560825892857144, "tegra_power": 7.549302504570948, "ps_energy": 2.962341897702572, "time": 359.2190246582031, "times": [359.4185485839844, 359.14215087890625, 359.0531921386719, 359.090576171875, 359.194580078125, 359.2282409667969, 359.4058837890625], "compile_time": 963.6348140002156, "verification_time": 0, "benchmark_time": 2518.965754999954, "GB/s": 6.841508470600648, "GB/s/W (Jetson)": 0.9614712804279008, "GPU (W) (Jetson)": 7.11566596930056, "GB/s/W (PS)": 0.8296138949747758, "GPU (W) (PS)": 8.246617507302796, "strategy_time": 0.02588600000308361, "framework_time": 2.4880609998945147, "timestamp": "2023-11-03 11:41:04.915566+00:00"},
"1,184,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.840122767857143, "tegra_power": 7.516029102433758, "ps_energy": 3.258569406715521, "time": 399.2962341308594, "times": [399.42401123046875, 399.2522277832031, 397.9590759277344, 400.4269714355469, 400.40203857421875, 398.57672119140625, 399.0325927734375], "compile_time": 974.6128909996514, "verification_time": 0, "benchmark_time": 2799.678589999985, "GB/s": 6.154828896268986, "GB/s/W (Jetson)": 0.8653147067491894, "GPU (W) (Jetson)": 7.112821321841878, "GB/s/W (PS)": 0.7541959962353973, "GPU (W) (PS)": 8.160781715881663, "strategy_time": 0.0764589999562304, "framework_time": 5.991868000364775, "timestamp": "2023-11-03 11:41:08.696065+00:00"},
"4,192,1,1,5,0,1,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4754464285714284, "tegra_power": 7.405287769223202, "ps_energy": 2.8659386113504297, "time": 352.61471121651783, "times": [352.1771240234375, 352.2518615722656, 352.36614990234375, 352.3808898925781, 354.40167236328125, 352.40771484375, 352.31756591796875], "compile_time": 1081.995476999964, "verification_time": 0, "benchmark_time": 2476.620778000324, "GB/s": 6.969646817971094, "GB/s/W (Jetson)": 0.9927906221821461, "GPU (W) (Jetson)": 7.020258513977363, "GB/s/W (PS)": 0.8575201123522946, "GPU (W) (PS)": 8.127677377563078, "strategy_time": 0.029428000289044576, "framework_time": 5.089768999368971, "timestamp": "2023-11-03 11:41:12.259907+00:00"},
"4,248,1,4,6,1,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6196986607142856, "tegra_power": 7.425939998116879, "ps_energy": 3.053878192500893, "time": 373.02921404157365, "times": [373.13739013671875, 373.24969482421875, 372.8218688964844, 372.76922607421875, 372.7784423828125, 372.6097412109375, 373.838134765625], "compile_time": 1099.3406859997776, "verification_time": 0, "benchmark_time": 2614.2636669997046, "GB/s": 6.588223944642854, "GB/s/W (Jetson)": 0.9381231654063266, "GPU (W) (Jetson)": 7.02277076996528, "GB/s/W (PS)": 0.8047472247042745, "GPU (W) (PS)": 8.186699801374115, "strategy_time": 0.02864699990823283, "framework_time": 3.1041110005389783, "timestamp": "2023-11-03 11:41:15.976703+00:00"},
"2,232,1,2,5,0,1,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5831473214285716, "tegra_power": 7.485841319063192, "ps_energy": 3.011862126831797, "time": 366.3140127999442, "times": [366.19842529296875, 366.3290710449219, 366.26666259765625, 366.291259765625, 366.3581848144531, 366.2384948730469, 366.5159912109375], "compile_time": 981.8918149999263, "verification_time": 0, "benchmark_time": 2567.5830370000767, "GB/s": 6.708998056654125, "GB/s/W (Jetson)": 0.9513975372650679, "GPU (W) (Jetson)": 7.051729475714354, "GB/s/W (PS)": 0.8159736058652758, "GPU (W) (PS)": 8.222077293222936, "strategy_time": 0.027395999950385885, "framework_time": 3.2967199999802688, "timestamp": "2023-11-03 11:41:19.529559+00:00"},
"4,256,1,4,2,1,0,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.505580357142857, "tegra_power": 7.561998139396025, "ps_energy": 2.9124421946419585, "time": 351.77866908482144, "times": [352.001708984375, 351.83514404296875, 351.7786560058594, 351.6538391113281, 351.78662109375, 351.68902587890625, 351.7056884765625], "compile_time": 1147.8242889998, "verification_time": 0, "benchmark_time": 2465.6229879997227, "GB/s": 6.986210978606605, "GB/s/W (Jetson)": 0.9808506013363028, "GPU (W) (Jetson)": 7.122604573100785, "GB/s/W (PS)": 0.8438279065319355, "GPU (W) (PS)": 8.279189304510403, "strategy_time": 0.02703200016185292, "framework_time": 2.951192000637093, "timestamp": "2023-11-03 11:41:23.146042+00:00"},
"1,32,1,1,8,0,1,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.558314732142857, "tegra_power": 7.463938422919876, "ps_energy": 2.960860752571794, "time": 360.43031529017856, "times": [360.4927978515625, 360.5047302246094, 360.5120849609375, 360.3783874511719, 360.3212890625, 360.38995361328125, 360.4129638671875], "compile_time": 1112.8905900000063, "verification_time": 0, "benchmark_time": 2527.2958579998885, "GB/s": 6.818516355988016, "GB/s/W (Jetson)": 0.960632391754826, "GPU (W) (Jetson)": 7.097945493522612, "GB/s/W (PS)": 0.8300289021918158, "GPU (W) (PS)": 8.214793892095445, "strategy_time": 0.026980000257026404, "framework_time": 2.8435340000214637, "timestamp": "2023-11-03 11:41:26.789162+00:00"},
"2,136,1,4,1,1,0,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6492745535714284, "tegra_power": 7.461660821089107, "ps_energy": 3.0741948451333365, "time": 376.67159598214283, "times": [376.65191650390625, 376.4881896972656, 376.83380126953125, 376.65545654296875, 376.67498779296875, 376.6954650878906, 376.70135498046875], "compile_time": 975.7377139999335, "verification_time": 0, "benchmark_time": 2640.1760009998725, "GB/s": 6.524516385664793, "GB/s/W (Jetson)": 0.9276501737756714, "GPU (W) (Jetson)": 7.0333802225348165, "GB/s/W (PS)": 0.799428833826376, "GPU (W) (PS)": 8.161472428303506, "strategy_time": 0.02614599998196354, "framework_time": 2.7791070001512708, "timestamp": "2023-11-03 11:41:30.407947+00:00"},
"8,112,1,2,2,1,0,0": {"block_size_x": 8, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.549107142857143, "tegra_power": 7.516425607511276, "ps_energy": 3.0122787008040177, "time": 359.6223929268973, "times": [359.1153564453125, 359.3623352050781, 360.0826416015625, 360.198486328125, 359.7427062988281, 359.5440673828125, 359.3111572265625], "compile_time": 1146.7115619998367, "verification_time": 0, "benchmark_time": 2521.6751719999593, "GB/s": 6.833834734255749, "GB/s/W (Jetson)": 0.9641022767075306, "GPU (W) (Jetson)": 7.088288140542226, "GB/s/W (PS)": 0.8158607632633837, "GPU (W) (PS)": 8.376226731287955, "strategy_time": 0.02468799993948778, "framework_time": 2.683480000541749, "timestamp": "2023-11-03 11:41:34.079098+00:00"},
"1,128,1,2,5,0,1,0": {"block_size_x": 1, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.529575892857143, "tegra_power": 7.498373524365254, "ps_energy": 2.9586589385284503, "time": 358.6139569963728, "times": [358.59844970703125, 358.65777587890625, 358.5708923339844, 358.5590515136719, 358.76995849609375, 358.68756103515625, 358.4540100097656], "compile_time": 1152.7440360000583, "verification_time": 0, "benchmark_time": 2514.2319419996966, "GB/s": 6.853051734472391, "GB/s/W (Jetson)": 0.9715462607544672, "GPU (W) (Jetson)": 7.053757511403072, "GB/s/W (PS)": 0.8306466041071762, "GPU (W) (PS)": 8.250261543943132, "strategy_time": 0.02833400003510178, "framework_time": 3.1075500005499634, "timestamp": "2023-11-03 11:41:37.749280+00:00"},
"2,56,1,2,8,1,1,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.886439732142857, "tegra_power": 7.404120525602573, "ps_energy": 3.351891683946763, "time": 410.5728846958705, "times": [410.4908447265625, 410.4849853515625, 410.4707946777344, 410.7963562011719, 410.6975402832031, 410.5793151855469, 410.4903564453125], "compile_time": 976.0457470001711, "verification_time": 0, "benchmark_time": 2877.7128239999, "GB/s": 5.985782528771846, "GB/s/W (Jetson)": 0.8514295215079748, "GPU (W) (Jetson)": 7.030273648687176, "GB/s/W (PS)": 0.7331979167973117, "GPU (W) (PS)": 8.163938265016348, "strategy_time": 0.040780999825074105, "framework_time": 3.433440999742743, "timestamp": "2023-11-03 11:41:41.606927+00:00"},
"2,40,1,4,3,0,1,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.033482142857143, "tegra_power": 7.4522723887833795, "ps_energy": 3.5064799214222666, "time": 424.8186471121652, "times": [424.775146484375, 424.69781494140625, 424.88641357421875, 424.7409362792969, 424.89385986328125, 424.8939208984375, 424.8424377441406], "compile_time": 1101.407823000045, "verification_time": 0, "benchmark_time": 2977.985512000032, "GB/s": 5.785056792366079, "GB/s/W (Jetson)": 0.8101580573951435, "GPU (W) (Jetson)": 7.1406520487699074, "GB/s/W (PS)": 0.7008738264792831, "GPU (W) (PS)": 8.254063104947575, "strategy_time": 0.026249999791616574, "framework_time": 2.4717060000511992, "timestamp": "2023-11-03 11:41:45.688877+00:00"},
"1,72,1,4,2,0,0,0": {"block_size_x": 1, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.5030691964285716, "tegra_power": 7.425856914809189, "ps_energy": 4.023967150009931, "time": 491.3322230747768, "times": [491.010986328125, 491.3868103027344, 491.4032287597656, 491.5992126464844, 491.2249450683594, 491.1650085449219, 491.5353698730469], "compile_time": 1148.0163539999921, "verification_time": 0, "benchmark_time": 3444.9721189998854, "GB/s": 5.001910895687322, "GB/s/W (Jetson)": 0.7015562246117084, "GPU (W) (Jetson)": 7.129736320785606, "GB/s/W (PS)": 0.6107405722718026, "GPU (W) (PS)": 8.189910942188533, "strategy_time": 0.02499999982319423, "framework_time": 2.5988450001932506, "timestamp": "2023-11-03 11:41:50.284908+00:00"},
"1,144,1,1,7,0,0,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.330357142857143, "tegra_power": 7.4648154823391915, "ps_energy": 3.826224146927416, "time": 466.7038356236049, "times": [466.6151123046875, 466.6631164550781, 466.64776611328125, 466.5808410644531, 466.7802734375, 466.8226013183594, 466.817138671875], "compile_time": 952.8430390000722, "verification_time": 0, "benchmark_time": 3270.4251340001065, "GB/s": 5.265866299804842, "GB/s/W (Jetson)": 0.737938873994638, "GPU (W) (Jetson)": 7.135911232456776, "GB/s/W (PS)": 0.6423042418917181, "GPU (W) (PS)": 8.19839875927922, "strategy_time": 0.026250000246363925, "framework_time": 2.303682999809098, "timestamp": "2023-11-03 11:41:54.510888+00:00"},
"1,232,1,3,4,1,1,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8657924107142856, "tegra_power": 7.4440530370292155, "ps_energy": 3.30468265509158, "time": 404.326180594308, "times": [404.0634765625, 404.2645263671875, 404.3850402832031, 404.5946350097656, 404.3542785644531, 404.349365234375, 404.2719421386719], "compile_time": 1111.3618280000992, "verification_time": 0, "benchmark_time": 2834.3577770001502, "GB/s": 6.078260864502122, "GB/s/W (Jetson)": 0.8575638594099892, "GPU (W) (Jetson)": 7.0878230207649064, "GB/s/W (PS)": 0.7436720122622165, "GPU (W) (PS)": 8.173308614925991, "strategy_time": 0.042656999994505895, "framework_time": 2.977495999857638, "timestamp": "2023-11-03 11:41:58.460093+00:00"},
"2,128,1,3,5,0,0,0": {"block_size_x": 2, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.79296875, "tegra_power": 7.589747285128608, "ps_energy": 3.2364656876546047, "time": 389.6649605887277, "times": [389.46600341796875, 389.6627502441406, 389.7186584472656, 389.486083984375, 389.48504638671875, 390.5381164550781, 389.2980651855469], "compile_time": 1109.2084439997052, "verification_time": 0, "benchmark_time": 2733.4523409999747, "GB/s": 6.306956612898732, "GB/s/W (Jetson)": 0.879923916083916, "GPU (W) (Jetson)": 7.167615855888674, "GB/s/W (PS)": 0.7593468422589607, "GPU (W) (PS)": 8.305765247059348, "strategy_time": 0.02875099971788586, "framework_time": 3.8102670005173422, "timestamp": "2023-11-03 11:42:02.306687+00:00"},
"1,56,1,3,7,0,0,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.849609375, "tegra_power": 7.3158748648530345, "ps_energy": 4.3660798582324265, "time": 545.6158883231027, "times": [545.832763671875, 545.5612182617188, 545.4945678710938, 545.686279296875, 545.6195678710938, 545.5974731445312, 545.5193481445312], "compile_time": 1108.837327999936, "verification_time": 0, "benchmark_time": 3822.6670619997094, "GB/s": 4.504267658981108, "GB/s/W (Jetson)": 0.6384024353120243, "GPU (W) (Jetson)": 7.0555301951184, "GB/s/W (PS)": 0.5628848027976612, "GPU (W) (PS)": 8.002112753078265, "strategy_time": 0.04473999979381915, "framework_time": 4.127512000650313, "timestamp": "2023-11-03 11:42:07.242755+00:00"},
"4,192,1,2,4,1,1,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4681919642857144, "tegra_power": 7.43998962496121, "ps_energy": 2.83799892747993, "time": 351.4957754952567, "times": [351.3878173828125, 351.39215087890625, 351.4223327636719, 351.31256103515625, 351.7831115722656, 351.63421630859375, 351.5382385253906], "compile_time": 1133.5831649998909, "verification_time": 0, "benchmark_time": 2464.0030579998893, "GB/s": 6.991833675773905, "GB/s/W (Jetson)": 0.9957086140628532, "GPU (W) (Jetson)": 7.021967648993898, "GB/s/W (PS)": 0.8659622722910206, "GPU (W) (PS)": 8.074062692449708, "strategy_time": 0.026354000056016957, "framework_time": 2.340766000088479, "timestamp": "2023-11-03 11:42:10.843081+00:00"},
"4,72,1,3,4,0,1,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.515625, "tegra_power": 7.557858535325678, "ps_energy": 2.911093549793025, "time": 355.96834455217635, "times": [355.8271484375, 355.8222961425781, 356.0018310546875, 356.003173828125, 356.08233642578125, 356.0026550292969, 356.0389709472656], "compile_time": 1124.9233249995996, "verification_time": 0, "benchmark_time": 2495.3825799998413, "GB/s": 6.903984687435528, "GB/s/W (Jetson)": 0.9769341614906831, "GPU (W) (Jetson)": 7.066990754935711, "GB/s/W (PS)": 0.844218833219816, "GPU (W) (PS)": 8.177956254664462, "strategy_time": 0.025261000246246113, "framework_time": 2.3381099999824073, "timestamp": "2023-11-03 11:42:14.466122+00:00"},
"1,32,1,3,7,0,1,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.575892857142857, "tegra_power": 7.476803682706262, "ps_energy": 2.9830847703113768, "time": 364.5210178920201, "times": [364.5599060058594, 364.4926452636719, 364.3968200683594, 364.5889587402344, 364.57733154296875, 364.51995849609375, 364.5115051269531], "compile_time": 962.7934690001894, "verification_time": 0, "benchmark_time": 2555.80959100007, "GB/s": 6.741998072462313, "GB/s/W (Jetson)": 0.9540769497400345, "GPU (W) (Jetson)": 7.066513947642654, "GB/s/W (PS)": 0.8238451767977997, "GPU (W) (PS)": 8.18357412574503, "strategy_time": 0.024479999865434365, "framework_time": 2.5003519999700075, "timestamp": "2023-11-03 11:42:17.987308+00:00"},
"8,88,1,1,7,0,1,0": {"block_size_x": 8, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.496372767857143, "tegra_power": 7.453734398340667, "ps_energy": 2.871089556512743, "time": 353.2400338309152, "times": [353.23797607421875, 353.3055725097656, 353.2451171875, 353.33697509765625, 353.0816650390625, 353.0773010253906, 353.3956298828125], "compile_time": 1079.1534090003552, "verification_time": 0, "benchmark_time": 2476.598883999941, "GB/s": 6.9573088116517825, "GB/s/W (Jetson)": 0.9844683581088632, "GPU (W) (Jetson)": 7.067072043855815, "GB/s/W (PS)": 0.8559816584004533, "GPU (W) (PS)": 8.127871366604621, "strategy_time": 0.04593799985741498, "framework_time": 5.514773999948375, "timestamp": "2023-11-03 11:42:21.548694+00:00"},
"2,136,1,2,7,0,0,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7979910714285716, "tegra_power": 7.60713690832855, "ps_energy": 3.2474139391680574, "time": 387.69852120535717, "times": [387.7156677246094, 387.6728515625, 387.6746826171875, 387.64849853515625, 387.8145751953125, 387.5824890136719, 387.7808837890625], "compile_time": 1140.0930489999155, "verification_time": 0, "benchmark_time": 2717.5514309997197, "GB/s": 6.338946025275788, "GB/s/W (Jetson)": 0.8783444754686875, "GPU (W) (Jetson)": 7.216924796952022, "GB/s/W (PS)": 0.7567867989843029, "GPU (W) (PS)": 8.376131869349996, "strategy_time": 0.028021000161970733, "framework_time": 3.183904000252369, "timestamp": "2023-11-03 11:42:25.409635+00:00"},
"4,216,1,4,6,0,0,0": {"block_size_x": 4, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.676060267857143, "tegra_power": 7.5307747777187375, "ps_energy": 3.075842806767988, "time": 374.8305140904018, "times": [374.8496398925781, 371.8046875, 375.9011535644531, 374.7160339355469, 377.0988464355469, 375.4864196777344, 373.9568176269531], "compile_time": 1111.6910770001596, "verification_time": 0, "benchmark_time": 2627.2657069998786, "GB/s": 6.556563320261794, "GB/s/W (Jetson)": 0.9183649671567093, "GPU (W) (Jetson)": 7.139387449154498, "GB/s/W (PS)": 0.7990005193348547, "GPU (W) (PS)": 8.205956268614125, "strategy_time": 0.04114599960303167, "framework_time": 3.7631320001310087, "timestamp": "2023-11-03 11:42:29.152464+00:00"},
"1,160,1,3,5,0,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2234933035714284, "tegra_power": 7.522342111097223, "ps_energy": 3.698305353880382, "time": 449.5608694893973, "times": [449.5107421875, 449.8150939941406, 449.52703857421875, 449.53619384765625, 449.4897766113281, 449.49786376953125, 449.54937744140625], "compile_time": 973.0538369999522, "verification_time": 0, "benchmark_time": 3150.9448060000977, "GB/s": 5.466667957091762, "GB/s/W (Jetson)": 0.7624027005972475, "GPU (W) (Jetson)": 7.170315573133869, "GB/s/W (PS)": 0.6645205749226213, "GPU (W) (PS)": 8.226484120116696, "strategy_time": 0.02661500002432149, "framework_time": 2.8363979999994626, "timestamp": "2023-11-03 11:42:33.279382+00:00"},
"1,232,1,3,2,0,0,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.884765625, "tegra_power": 7.568730127515368, "ps_energy": 3.352352436075307, "time": 401.920174734933, "times": [401.9468078613281, 401.7545471191406, 401.7957763671875, 402.1065673828125, 401.6901550292969, 402.01837158203125, 402.1289978027344], "compile_time": 975.2175029998398, "verification_time": 0, "benchmark_time": 2817.572148999716, "GB/s": 6.114647023182628, "GB/s/W (Jetson)": 0.8519236289776574, "GPU (W) (Jetson)": 7.177459123325938, "GB/s/W (PS)": 0.733097145023684, "GPU (W) (PS)": 8.340841407839726, "strategy_time": 0.04567799987853505, "framework_time": 3.9830820005590795, "timestamp": "2023-11-03 11:42:37.076306+00:00"},
"1,72,1,1,8,0,1,0": {"block_size_x": 1, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.4793526785714284, "tegra_power": 7.349283097712005, "ps_energy": 3.9724005135020497, "time": 490.432381766183, "times": [490.49188232421875, 490.45318603515625, 490.32025146484375, 490.2408752441406, 490.41827392578125, 490.6287536621094, 490.47344970703125], "compile_time": 1078.7384289997135, "verification_time": 0, "benchmark_time": 3447.6909109998815, "GB/s": 5.011088360743026, "GB/s/W (Jetson)": 0.7063382838813151, "GPU (W) (Jetson)": 7.094459517622622, "GB/s/W (PS)": 0.618668734848539, "GPU (W) (PS)": 8.09979247128082, "strategy_time": 0.04640699989977293, "framework_time": 4.234859000462166, "timestamp": "2023-11-03 11:42:41.607091+00:00"},
"16,64,1,4,5,1,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5150669642857144, "tegra_power": 7.555280181285261, "ps_energy": 2.8965414280558304, "time": 354.67356654575894, "times": [354.60662841796875, 354.49822998046875, 354.7128601074219, 354.6441650390625, 354.6470947265625, 354.7278137207031, 354.878173828125], "compile_time": 1103.1250949999958, "verification_time": 0, "benchmark_time": 2486.3392890001705, "GB/s": 6.929188504052014, "GB/s/W (Jetson)": 0.9771509207898823, "GPU (W) (Jetson)": 7.091216266214832, "GB/s/W (PS)": 0.8484601587934305, "GPU (W) (PS)": 8.166781235674994, "strategy_time": 0.055157000133476686, "framework_time": 6.084625999392301, "timestamp": "2023-11-03 11:42:45.202774+00:00"},
"2,136,1,3,3,1,0,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.845424107142857, "tegra_power": 7.50427684303136, "ps_energy": 3.258058142588457, "time": 397.3094046456473, "times": [397.38916015625, 397.3559875488281, 397.1845703125, 397.42291259765625, 397.1964111328125, 397.44287109375, 397.1739196777344], "compile_time": 1103.9910310000778, "verification_time": 0, "benchmark_time": 2785.1779790003093, "GB/s": 6.18560741644635, "GB/s/W (Jetson)": 0.8637025299078249, "GPU (W) (Jetson)": 7.161733585643755, "GB/s/W (PS)": 0.7543143469034256, "GPU (W) (PS)": 8.200304610192294, "strategy_time": 0.02880200008803513, "framework_time": 3.776153999751841, "timestamp": "2023-11-03 11:42:49.095805+00:00"},
"1,120,1,3,8,0,1,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7857142857142856, "tegra_power": 7.547196998488147, "ps_energy": 3.2067914719295265, "time": 388.26705496651783, "times": [388.22369384765625, 388.21917724609375, 388.09686279296875, 388.34912109375, 388.2474060058594, 388.3143615722656, 388.41876220703125], "compile_time": 1126.1269860001448, "verification_time": 0, "benchmark_time": 2722.49670400015, "GB/s": 6.329663999465344, "GB/s/W (Jetson)": 0.8822153846153846, "GPU (W) (Jetson)": 7.174737722608248, "GB/s/W (PS)": 0.7663734987174772, "GPU (W) (PS)": 8.2592417536071, "strategy_time": 0.025781999738683226, "framework_time": 2.95395200009807, "timestamp": "2023-11-03 11:42:52.947488+00:00"},
"8,40,1,1,7,0,1,0": {"block_size_x": 8, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.507533482142857, "tegra_power": 7.549719338814991, "ps_energy": 2.900268604242488, "time": 352.97113037109375, "times": [352.9838562011719, 353.06646728515625, 352.91546630859375, 352.90057373046875, 352.9457702636719, 352.94989013671875, 353.035888671875], "compile_time": 1106.8008890001693, "verification_time": 0, "benchmark_time": 2474.0774860001693, "GB/s": 6.9626090876503675, "GB/s/W (Jetson)": 0.980086613997997, "GPU (W) (Jetson)": 7.104075280906343, "GB/s/W (PS)": 0.847369790648026, "GPU (W) (PS)": 8.216730363169676, "strategy_time": 0.027135999971505953, "framework_time": 6.9095859998924425, "timestamp": "2023-11-03 11:42:56.535705+00:00"},
"1,80,1,2,6,1,0,0": {"block_size_x": 1, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.7818080357142856, "tegra_power": 7.428638048428688, "ps_energy": 4.302844808378203, "time": 531.6409214564732, "times": [531.7550659179688, 531.6138305664062, 531.6271362304688, 531.6539916992188, 531.592041015625, 531.7200317382812, 531.5243530273438], "compile_time": 1135.3932980000536, "verification_time": 0, "benchmark_time": 3724.800241000139, "GB/s": 4.622668987306708, "GB/s/W (Jetson)": 0.6498478972996901, "GPU (W) (Jetson)": 7.1134630219090695, "GB/s/W (PS)": 0.5711570157526319, "GPU (W) (PS)": 8.093516948601723, "strategy_time": 0.027656999918690417, "framework_time": 2.703531999941333, "timestamp": "2023-11-03 11:43:01.398690+00:00"},
"2,80,1,3,5,0,1,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5479910714285716, "tegra_power": 7.564057387645811, "ps_energy": 2.947471254966721, "time": 358.1752188546317, "times": [358.2338562011719, 358.279541015625, 358.25543212890625, 358.1454162597656, 358.05889892578125, 358.1329040527344, 358.1204833984375], "compile_time": 1115.9825089998776, "verification_time": 0, "benchmark_time": 2511.038352000014, "GB/s": 6.8614462157903695, "GB/s/W (Jetson)": 0.9645245729303547, "GPU (W) (Jetson)": 7.113811724821462, "GB/s/W (PS)": 0.8337994800996789, "GPU (W) (PS)": 8.229132278866496, "strategy_time": 0.030051999601710122, "framework_time": 5.990979000671359, "timestamp": "2023-11-03 11:43:05.031789+00:00"},
"4,200,1,4,3,1,1,0": {"block_size_x": 4, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.58203125, "tegra_power": 7.39481071770698, "ps_energy": 2.972362585560664, "time": 369.1662815638951, "times": [368.0069885253906, 370.7685546875, 367.98785400390625, 371.18463134765625, 367.9659423828125, 370.4637451171875, 367.7862548828125], "compile_time": 957.0064839999759, "verification_time": 0, "benchmark_time": 2588.814788000036, "GB/s": 6.6571627007453005, "GB/s/W (Jetson)": 0.9518087745839636, "GPU (W) (Jetson)": 6.994222871768703, "GB/s/W (PS)": 0.8268170282921367, "GPU (W) (PS)": 8.051554906284714, "strategy_time": 0.028021000161970733, "framework_time": 3.068224999879021, "timestamp": "2023-11-03 11:43:08.580765+00:00"},
"2,160,1,2,3,0,1,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5013950892857144, "tegra_power": 7.516478058406979, "ps_energy": 2.8994712341492623, "time": 352.7955889020647, "times": [352.587646484375, 352.7012634277344, 352.7978515625, 352.9901428222656, 352.772705078125, 352.68389892578125, 353.0356140136719], "compile_time": 1168.1433420003486, "verification_time": 0, "benchmark_time": 2473.2974430003196, "GB/s": 6.966073492155323, "GB/s/W (Jetson)": 0.9824917345231454, "GPU (W) (Jetson)": 7.090210784863572, "GB/s/W (PS)": 0.8476028218714463, "GPU (W) (PS)": 8.218558636667504, "strategy_time": 0.04911499991067103, "framework_time": 4.050532999372081, "timestamp": "2023-11-03 11:43:12.226686+00:00"},
"4,104,1,4,8,1,1,0": {"block_size_x": 4, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.536830357142857, "tegra_power": 7.487565321331693, "ps_energy": 2.9149076114782866, "time": 357.7112339564732, "times": [357.5505065917969, 357.72509765625, 357.94036865234375, 357.5955810546875, 357.6972961425781, 357.7146911621094, 357.7550964355469], "compile_time": 1089.4870560000527, "verification_time": 0, "benchmark_time": 2507.9783149999457, "GB/s": 6.870346152726766, "GB/s/W (Jetson)": 0.9687679718433787, "GPU (W) (Jetson)": 7.091838657355509, "GB/s/W (PS)": 0.8431142003686475, "GPU (W) (PS)": 8.148772906117275, "strategy_time": 0.026510000225243857, "framework_time": 2.761189999546332, "timestamp": "2023-11-03 11:43:15.826999+00:00"},
"16,56,1,4,3,1,1,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5457589285714284, "tegra_power": 7.535720760692537, "ps_energy": 2.918876944646659, "time": 357.65643310546875, "times": [358.1567077636719, 357.18682861328125, 357.1010437011719, 358.8829040527344, 356.8926696777344, 357.4078063964844, 357.9670715332031], "compile_time": 1121.2460770002508, "verification_time": 0, "benchmark_time": 2507.1757720002097, "GB/s": 6.871398841231753, "GB/s/W (Jetson)": 0.9653702761946514, "GPU (W) (Jetson)": 7.11788938470097, "GB/s/W (PS)": 0.8419676631134929, "GPU (W) (PS)": 8.161119651344048, "strategy_time": 0.05057399994257139, "framework_time": 4.334127999300108, "timestamp": "2023-11-03 11:43:19.460274+00:00"},
"1,200,1,2,6,1,0,0": {"block_size_x": 1, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.931919642857143, "tegra_power": 7.641584203174888, "ps_energy": 3.4416515414200797, "time": 403.3644539969308, "times": [403.2175598144531, 403.30902099609375, 403.1604309082031, 403.33563232421875, 403.66973876953125, 403.4181213378906, 403.440673828125], "compile_time": 1145.2804450000258, "verification_time": 0, "benchmark_time": 2831.9268079999347, "GB/s": 6.092753031774832, "GB/s/W (Jetson)": 0.838222154548915, "GPU (W) (Jetson)": 7.26866141476971, "GB/s/W (PS)": 0.7140757774059704, "GPU (W) (PS)": 8.532362004923387, "strategy_time": 0.025105000077019213, "framework_time": 2.9394210000646126, "timestamp": "2023-11-03 11:43:23.440676+00:00"},
"2,32,1,4,6,0,1,0": {"block_size_x": 2, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6127232142857144, "tegra_power": 7.518745073863635, "ps_energy": 3.0239992706779697, "time": 366.9456220354353, "times": [367.00213623046875, 366.94927978515625, 366.83172607421875, 366.60693359375, 366.9465026855469, 367.2347412109375, 367.04803466796875], "compile_time": 1131.4884980001807, "verification_time": 0, "benchmark_time": 2572.5571879997915, "GB/s": 6.697450119087873, "GB/s/W (Jetson)": 0.9406277659120033, "GPU (W) (Jetson)": 7.120191814234013, "GB/s/W (PS)": 0.8126986087033727, "GPU (W) (PS)": 8.241001088673427, "strategy_time": 0.05697999995391001, "framework_time": 6.528070000058506, "timestamp": "2023-11-03 11:43:27.151731+00:00"},
"8,64,1,3,5,1,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.548828125, "tegra_power": 7.559136375051567, "ps_energy": 2.9507470937668194, "time": 359.4632568359375, "times": [359.372802734375, 359.3769226074219, 359.5596923828125, 359.5688171386719, 359.3286437988281, 359.5223388671875, 359.5135803222656], "compile_time": 1087.3963439998988, "verification_time": 0, "benchmark_time": 2520.1686899999913, "GB/s": 6.836860105347769, "GB/s/W (Jetson)": 0.9642078160919539, "GPU (W) (Jetson)": 7.090649952474307, "GB/s/W (PS)": 0.8328738186988145, "GPU (W) (PS)": 8.208758580055845, "strategy_time": 0.025834000098257093, "framework_time": 2.608061000046291, "timestamp": "2023-11-03 11:43:30.761987+00:00"},
"4,248,1,1,6,0,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5884486607142856, "tegra_power": 7.467392742147246, "ps_energy": 3.007589817447297, "time": 368.97385951450894, "times": [366.1655578613281, 366.1849365234375, 369.5910949707031, 366.0556640625, 379.6177062988281, 366.48944091796875, 368.7126159667969], "compile_time": 1107.0559049999247, "verification_time": 0, "benchmark_time": 2586.421608999899, "GB/s": 6.660634450455862, "GB/s/W (Jetson)": 0.9494490029104236, "GPU (W) (Jetson)": 7.015262989416467, "GB/s/W (PS)": 0.8171327039821863, "GPU (W) (PS)": 8.151227356335337, "strategy_time": 0.025365000055899145, "framework_time": 2.7709300002243253, "timestamp": "2023-11-03 11:43:34.458715+00:00"},
"2,48,1,3,4,0,0,0": {"block_size_x": 2, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.577845982142857, "tegra_power": 7.583945980446212, "ps_energy": 3.0255712262296584, "time": 358.3318525041853, "times": [357.9814147949219, 358.51959228515625, 358.3840026855469, 358.2996826171875, 358.48187255859375, 358.3211975097656, 358.335205078125], "compile_time": 1100.4104780004127, "verification_time": 0, "benchmark_time": 2513.2725339999524, "GB/s": 6.858446947501814, "GB/s/W (Jetson)": 0.9533540859400367, "GPU (W) (Jetson)": 7.194018516991168, "GB/s/W (PS)": 0.8122763657633535, "GPU (W) (PS)": 8.443489477939503, "strategy_time": 0.026406999950268073, "framework_time": 2.796917000068788, "timestamp": "2023-11-03 11:43:38.075317+00:00"},
"4,144,1,2,3,1,1,0": {"block_size_x": 4, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4681919642857144, "tegra_power": 7.493362320876497, "ps_energy": 2.866429947775032, "time": 350.3759460449219, "times": [350.21368408203125, 350.4551086425781, 350.31707763671875, 350.33843994140625, 350.35162353515625, 350.4803161621094, 350.4753723144531], "compile_time": 1135.68095599976, "verification_time": 0, "benchmark_time": 2455.9239629998046, "GB/s": 7.014180133486987, "GB/s/W (Jetson)": 0.9957086140628532, "GPU (W) (Jetson)": 7.044410417287225, "GB/s/W (PS)": 0.8573731243310613, "GPU (W) (PS)": 8.181012367234608, "strategy_time": 0.0550529998690763, "framework_time": 6.937868000477465, "timestamp": "2023-11-03 11:43:41.673974+00:00"},
"4,72,1,3,7,1,0,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.80078125, "tegra_power": 7.484603264805154, "ps_energy": 3.1893336246180946, "time": 391.6163417271205, "times": [392.60467529296875, 391.38671875, 391.4560546875, 391.2133483886719, 391.4004211425781, 391.7072448730469, 391.5459289550781], "compile_time": 1094.4720259999485, "verification_time": 0, "benchmark_time": 2744.4345769999927, "GB/s": 6.275529742097594, "GB/s/W (Jetson)": 0.8774694560669455, "GPU (W) (Jetson)": 7.151849786574006, "GB/s/W (PS)": 0.7705684914961771, "GPU (W) (PS)": 8.144025886540843, "strategy_time": 0.024896000013541197, "framework_time": 2.6138429998354695, "timestamp": "2023-11-03 11:43:45.515575+00:00"},
"2,64,1,3,8,0,1,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.595424107142857, "tegra_power": 7.531300712932761, "ps_energy": 2.9805935765564624, "time": 363.9982604980469, "times": [363.7832336425781, 365.7796936035156, 363.59063720703125, 363.71270751953125, 363.6108703613281, 363.9234924316406, 363.5871887207031], "compile_time": 1104.6349299999747, "verification_time": 0, "benchmark_time": 2553.649992999908, "GB/s": 6.751680616927526, "GB/s/W (Jetson)": 0.9468972694044291, "GPU (W) (Jetson)": 7.130320083375188, "GB/s/W (PS)": 0.8245337503677079, "GPU (W) (PS)": 8.18848302318317, "strategy_time": 0.025625000034779077, "framework_time": 2.820825000071636, "timestamp": "2023-11-03 11:43:49.176763+00:00"},
"4,152,1,2,5,0,1,0": {"block_size_x": 4, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.511439732142857, "tegra_power": 7.529013981389008, "ps_energy": 2.920941637470865, "time": 353.7790265764509, "times": [353.31390380859375, 353.4229736328125, 355.3315734863281, 353.9031677246094, 353.1932678222656, 353.4767761230469, 353.8115234375], "compile_time": 1163.0501899999217, "verification_time": 0, "benchmark_time": 2479.5152799997595, "GB/s": 6.946709147182633, "GB/s/W (Jetson)": 0.9785622041995333, "GPU (W) (Jetson)": 7.098893782501095, "GB/s/W (PS)": 0.8413725109988656, "GPU (W) (PS)": 8.256401363690381, "strategy_time": 0.025990000267483993, "framework_time": 2.6867090000450844, "timestamp": "2023-11-03 11:43:52.822094+00:00"},
"16,64,1,1,6,0,0,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.538783482142857, "tegra_power": 7.532381406498527, "ps_energy": 2.892874707068196, "time": 356.05374581473217, "times": [355.9748840332031, 355.8919677734375, 355.9614562988281, 356.0180358886719, 356.1662902832031, 356.1275939941406, 356.2359924316406], "compile_time": 1106.2633669998831, "verification_time": 0, "benchmark_time": 2495.90602499984, "GB/s": 6.902328732355984, "GB/s/W (Jetson)": 0.9680226838114078, "GPU (W) (Jetson)": 7.130337798675708, "GB/s/W (PS)": 0.8495355827182269, "GPU (W) (PS)": 8.124825931682418, "strategy_time": 0.025259999802074162, "framework_time": 2.694782000617124, "timestamp": "2023-11-03 11:43:56.427039+00:00"},
"4,136,1,2,4,0,0,0": {"block_size_x": 4, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4793526785714284, "tegra_power": 7.523404496950718, "ps_energy": 2.8893707646893745, "time": 352.30450439453125, "times": [352.3400573730469, 352.3395690917969, 352.3753662109375, 352.4122314453125, 352.22906494140625, 352.2513427734375, 352.18389892578125], "compile_time": 1146.8489260000752, "verification_time": 0, "benchmark_time": 2469.382881999991, "GB/s": 6.97578364552454, "GB/s/W (Jetson)": 0.9912264686022957, "GPU (W) (Jetson)": 7.037527615017104, "GB/s/W (PS)": 0.8505658152404706, "GPU (W) (PS)": 8.201344940664418, "strategy_time": 0.028541999654407846, "framework_time": 3.052338000088639, "timestamp": "2023-11-03 11:44:00.046421+00:00"},
"8,72,1,2,3,0,1,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5357142857142856, "tegra_power": 7.5068605230949, "ps_energy": 2.9032778633123337, "time": 357.0194178989955, "times": [356.6847839355469, 356.4756164550781, 358.2091064453125, 356.4070739746094, 357.5178527832031, 357.4159240722656, 356.4255676269531], "compile_time": 1138.3296680000967, "verification_time": 0, "benchmark_time": 2503.098578999925, "GB/s": 6.883659198322037, "GB/s/W (Jetson)": 0.969194366197183, "GPU (W) (Jetson)": 7.102454820627334, "GB/s/W (PS)": 0.8464914884847217, "GPU (W) (PS)": 8.131988675567504, "strategy_time": 0.026927999897452537, "framework_time": 2.9055639997750404, "timestamp": "2023-11-03 11:44:03.690852+00:00"},
"1,192,1,3,4,0,0,0": {"block_size_x": 1, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5990513392857144, "tegra_power": 7.579800860312892, "ps_energy": 2.9676726496711905, "time": 363.0444989885603, "times": [362.8878173828125, 362.8939208984375, 363.01141357421875, 363.06793212890625, 363.00927734375, 363.13458251953125, 363.3065490722656], "compile_time": 1098.5863890000473, "verification_time": 0, "benchmark_time": 2545.1400820002164, "GB/s": 6.769418092952401, "GB/s/W (Jetson)": 0.9455757809983896, "GPU (W) (Jetson)": 7.159043441029007, "GB/s/W (PS)": 0.8281236814553299, "GPU (W) (PS)": 8.174404674741274, "strategy_time": 0.027135999971505953, "framework_time": 3.56239699976868, "timestamp": "2023-11-03 11:44:07.338223+00:00"},
"1,160,1,4,5,1,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2491629464285716, "tegra_power": 7.520334018712227, "ps_energy": 3.75835759635707, "time": 452.27269199916293, "times": [452.1324462890625, 452.42462158203125, 452.1355285644531, 452.3087463378906, 452.39178466796875, 452.1347351074219, 452.3809814453125], "compile_time": 1103.9172910000161, "verification_time": 0, "benchmark_time": 3169.531078000091, "GB/s": 5.433889871035036, "GB/s/W (Jetson)": 0.7563794246457706, "GPU (W) (Jetson)": 7.184079436824776, "GB/s/W (PS)": 0.6539026521537283, "GPU (W) (PS)": 8.309937042062284, "strategy_time": 0.026094000077137025, "framework_time": 2.8811389997827064, "timestamp": "2023-11-03 11:44:11.614660+00:00"},
"8,120,1,2,7,1,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.627232142857143, "tegra_power": 7.44436257610306, "ps_energy": 3.0577901708035955, "time": 374.39383806501115, "times": [374.1841735839844, 374.5615539550781, 374.5690002441406, 374.35089111328125, 374.46014404296875, 374.27850341796875, 374.35260009765625], "compile_time": 1162.0157709999148, "verification_time": 0, "benchmark_time": 2625.7485969999834, "GB/s": 6.564210598928856, "GB/s/W (Jetson)": 0.9354331350892098, "GPU (W) (Jetson)": 7.017295360510021, "GB/s/W (PS)": 0.8037176728036037, "GPU (W) (PS)": 8.167309020381445, "strategy_time": 0.02807300006679725, "framework_time": 3.4854179998546897, "timestamp": "2023-11-03 11:44:15.405994+00:00"},
"2,96,1,3,6,1,0,0": {"block_size_x": 2, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.884765625, "tegra_power": 7.571491768056027, "ps_energy": 3.341908310699052, "time": 401.56981113978793, "times": [401.5810852050781, 401.40411376953125, 401.464111328125, 401.6300048828125, 401.64556884765625, 401.62860107421875, 401.63519287109375], "compile_time": 1102.3261979999006, "verification_time": 0, "benchmark_time": 2814.6631240001625, "GB/s": 6.11998196035832, "GB/s/W (Jetson)": 0.8519236289776574, "GPU (W) (Jetson)": 7.183721348006915, "GB/s/W (PS)": 0.7353882188006304, "GPU (W) (PS)": 8.322110422627663, "strategy_time": 0.02703200016185292, "framework_time": 2.9673369999727583, "timestamp": "2023-11-03 11:44:19.326035+00:00"},
"1,136,1,3,2,0,1,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.008091517857143, "tegra_power": 7.439630548194065, "ps_energy": 3.4857847682557934, "time": 422.9582083565848, "times": [422.7420959472656, 423.1263427734375, 423.00994873046875, 423.0292663574219, 422.9615478515625, 422.84881591796875, 422.98944091796875], "compile_time": 1144.2938059999506, "verification_time": 0, "benchmark_time": 2964.3954319999466, "GB/s": 5.810503145332181, "GB/s/W (Jetson)": 0.8169964196271218, "GPU (W) (Jetson)": 7.1120301212385995, "GB/s/W (PS)": 0.7050349242388039, "GPU (W) (PS)": 8.24144016923067, "strategy_time": 0.027240000235906336, "framework_time": 2.9904620000706927, "timestamp": "2023-11-03 11:44:23.438117+00:00"},
"2,176,1,3,6,0,0,0": {"block_size_x": 2, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.857421875, "tegra_power": 7.570657016963347, "ps_energy": 3.3196209490244137, "time": 400.5286952427455, "times": [400.1380310058594, 400.4324035644531, 400.2171936035156, 400.7746276855469, 400.4876708984375, 400.57891845703125, 401.072021484375], "compile_time": 1097.4062529999173, "verification_time": 0, "benchmark_time": 2808.1638960002238, "GB/s": 6.13588996041979, "GB/s/W (Jetson)": 0.8600760082023239, "GPU (W) (Jetson)": 7.1341252423081025, "GB/s/W (PS)": 0.7403254882827063, "GPU (W) (PS)": 8.288097678026578, "strategy_time": 0.025625000034779077, "framework_time": 2.532224999868049, "timestamp": "2023-11-03 11:44:27.346303+00:00"},
"2,208,1,2,6,1,0,0": {"block_size_x": 2, "block_size_y": 208, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.838169642857143, "tegra_power": 7.553922763476069, "ps_energy": 3.2789453482281323, "time": 397.20245361328125, "times": [397.2138671875, 397.1741638183594, 397.26202392578125, 397.2326965332031, 397.08990478515625, 397.27227783203125, 397.1722412109375], "compile_time": 968.517188000078, "verification_time": 0, "benchmark_time": 2784.1321949999838, "GB/s": 6.187272957766606, "GB/s/W (Jetson)": 0.8659101848210774, "GPU (W) (Jetson)": 7.1453980634782335, "GB/s/W (PS)": 0.7495092900307201, "GPU (W) (PS)": 8.255098422479872, "strategy_time": 0.02687599999262602, "framework_time": 3.0921829998078465, "timestamp": "2023-11-03 11:44:31.102144+00:00"},
"4,224,1,3,2,1,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.572265625, "tegra_power": 7.3962447853569175, "ps_energy": 2.9780806358851675, "time": 365.82684326171875, "times": [363.01416015625, 364.6712646484375, 372.3624572753906, 369.26910400390625, 366.6162109375, 366.6479797363281, 358.20672607421875], "compile_time": 1230.4212260000895, "verification_time": 0, "benchmark_time": 2564.3941230000564, "GB/s": 6.717932391423203, "GB/s/W (Jetson)": 0.9554223234624145, "GPU (W) (Jetson)": 7.031374740206687, "GB/s/W (PS)": 0.8252295019773813, "GPU (W) (PS)": 8.140683743523429, "strategy_time": 0.029739999718003673, "framework_time": 3.423126000143384, "timestamp": "2023-11-03 11:44:34.900468+00:00"},
"4,80,1,2,4,1,0,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.486049107142857, "tegra_power": 7.563041000980941, "ps_energy": 2.902523953954057, "time": 351.10086495535717, "times": [350.93829345703125, 351.1729736328125, 351.0622863769531, 351.00030517578125, 351.1807861328125, 351.2126159667969, 351.1387939453125], "compile_time": 1139.7784250002587, "verification_time": 0, "benchmark_time": 2461.7122700001346, "GB/s": 6.999697936695445, "GB/s/W (Jetson)": 0.9885564983164982, "GPU (W) (Jetson)": 7.080726239335698, "GB/s/W (PS)": 0.8467113584547872, "GPU (W) (PS)": 8.266923393433155, "strategy_time": 0.026197999886790058, "framework_time": 2.9393669997261895, "timestamp": "2023-11-03 11:44:38.505308+00:00"},
"2,216,1,3,6,1,0,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8621651785714284, "tegra_power": 7.516181951964074, "ps_energy": 3.3426397940877774, "time": 401.72645786830356, "times": [401.567138671875, 401.67047119140625, 401.5154113769531, 401.63531494140625, 402.62921142578125, 401.43438720703125, 401.6332702636719], "compile_time": 1097.6840210000773, "verification_time": 0, "benchmark_time": 2816.7989029998353, "GB/s": 6.117595572472016, "GB/s/W (Jetson)": 0.8586506531487619, "GPU (W) (Jetson)": 7.124661875045633, "GB/s/W (PS)": 0.7352272908217113, "GPU (W) (PS)": 8.32068619982103, "strategy_time": 0.028542000109155197, "framework_time": 2.639832000113529, "timestamp": "2023-11-03 11:44:42.422521+00:00"},
"1,184,1,2,8,0,1,0": {"block_size_x": 1, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.765904017857143, "tegra_power": 7.4629603167014364, "ps_energy": 3.187430644313281, "time": 389.15359933035717, "times": [389.0640563964844, 389.1919250488281, 389.2635498046875, 389.0597839355469, 388.9931335449219, 389.3934326171875, 389.10931396484375], "compile_time": 1145.7576570001038, "verification_time": 0, "benchmark_time": 2728.5562779998145, "GB/s": 6.315244171527535, "GB/s/W (Jetson)": 0.8885340865530111, "GPU (W) (Jetson)": 7.107486664948289, "GB/s/W (PS)": 0.7710285412435945, "GPU (W) (PS)": 8.190674966897667, "strategy_time": 0.042499999835854396, "framework_time": 3.895165000358247, "timestamp": "2023-11-03 11:44:46.301149+00:00"},
"1,248,1,4,5,1,0,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2368861607142856, "tegra_power": 7.507239161213583, "ps_energy": 3.7230803205966367, "time": 452.9382803780692, "times": [452.68035888671875, 453.0534973144531, 453.19427490234375, 452.68035888671875, 452.65899658203125, 453.4142150878906, 452.8862609863281], "compile_time": 1102.4908920003327, "verification_time": 0, "benchmark_time": 3173.830052000085, "GB/s": 5.425904822945485, "GB/s/W (Jetson)": 0.759248202741143, "GPU (W) (Jetson)": 7.146417737119604, "GB/s/W (PS)": 0.6600985711761815, "GPU (W) (PS)": 8.219840278213995, "strategy_time": 0.027864999992743833, "framework_time": 2.6186329996562563, "timestamp": "2023-11-03 11:44:50.580176+00:00"},
"4,240,1,3,8,1,1,0": {"block_size_x": 4, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5577566964285716, "tegra_power": 7.4271477716938845, "ps_energy": 2.9494493852138737, "time": 363.8372889927455, "times": [364.5231628417969, 363.80706787109375, 363.6327209472656, 363.6656799316406, 363.84521484375, 363.6926574707031, 363.69451904296875], "compile_time": 963.7060610002663, "verification_time": 0, "benchmark_time": 2550.645440000153, "GB/s": 6.754667743934848, "GB/s/W (Jetson)": 0.9608419766553942, "GPU (W) (Jetson)": 7.02994655525693, "GB/s/W (PS)": 0.8332402692924299, "GPU (W) (PS)": 8.106506601836191, "strategy_time": 0.02630300014061504, "framework_time": 2.7411349997237267, "timestamp": "2023-11-03 11:44:54.097672+00:00"},
"1,112,1,4,1,1,0,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8443080357142856, "tegra_power": 7.4322198347990875, "ps_energy": 3.3127346831045412, "time": 404.9618704659598, "times": [404.7692565917969, 404.8584289550781, 405.114990234375, 405.13177490234375, 404.9753723144531, 404.84124755859375, 405.0420227050781], "compile_time": 1102.0400279999194, "verification_time": 0, "benchmark_time": 2838.622338999812, "GB/s": 6.068719499868519, "GB/s/W (Jetson)": 0.8640414361389052, "GPU (W) (Jetson)": 7.023644059233403, "GB/s/W (PS)": 0.7418644217220713, "GPU (W) (PS)": 8.180361966653358, "strategy_time": 0.0274479998552124, "framework_time": 3.70089000034568, "timestamp": "2023-11-03 11:44:58.042164+00:00"},
"4,88,1,4,7,0,0,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.827845982142857, "tegra_power": 7.569934522649476, "ps_energy": 3.2258425959667614, "time": 392.9374433244978, "times": [393.067138671875, 392.9657897949219, 392.9437561035156, 392.852294921875, 392.9315185546875, 392.8563537597656, 392.94525146484375], "compile_time": 1118.467661000068, "verification_time": 0, "benchmark_time": 2753.7377900002866, "GB/s": 6.2544306778380765, "GB/s/W (Jetson)": 0.8690713764183522, "GPU (W) (Jetson)": 7.196682398647231, "GB/s/W (PS)": 0.7618474636898628, "GPU (W) (PS)": 8.209557655473363, "strategy_time": 0.04187599961369415, "framework_time": 10.888497999985702, "timestamp": "2023-11-03 11:45:01.925709+00:00"},
"2,240,1,3,5,0,0,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.803013392857143, "tegra_power": 7.573183819915762, "ps_energy": 3.216708595896697, "time": 390.6545192173549, "times": [390.39093017578125, 390.5115051269531, 390.6037902832031, 390.6933898925781, 390.78839111328125, 390.8488464355469, 390.7447814941406], "compile_time": 1125.679529000081, "verification_time": 0, "benchmark_time": 2738.1846089997453, "GB/s": 6.2909805956516385, "GB/s/W (Jetson)": 0.876770694803902, "GPU (W) (Jetson)": 7.175172063727193, "GB/s/W (PS)": 0.7640107665130026, "GPU (W) (PS)": 8.234151757263977, "strategy_time": 0.028437999844754813, "framework_time": 2.6141540001844987, "timestamp": "2023-11-03 11:45:05.792280+00:00"},
"8,40,1,2,3,1,0,0": {"block_size_x": 8, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.554408482142857, "tegra_power": 7.5356516740455595, "ps_energy": 2.9147455270223355, "time": 357.90352521623885, "times": [357.72015380859375, 357.70660400390625, 359.2227478027344, 357.9599609375, 357.5823059082031, 357.493896484375, 357.6390075683594], "compile_time": 1170.3270170000906, "verification_time": 0, "benchmark_time": 2510.7300899999245, "GB/s": 6.8666549135417485, "GB/s/W (Jetson)": 0.962101409066084, "GPU (W) (Jetson)": 7.137142559854725, "GB/s/W (PS)": 0.8431610846352857, "GPU (W) (PS)": 8.143941933126529, "strategy_time": 0.05744899999626796, "framework_time": 4.0673020002941485, "timestamp": "2023-11-03 11:45:09.477855+00:00"},
"2,168,1,3,2,1,0,0": {"block_size_x": 2, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7006138392857144, "tegra_power": 7.529129034890564, "ps_energy": 3.0852839101763885, "time": 375.6117728097098, "times": [375.3329162597656, 375.53057861328125, 375.7029724121094, 375.83197021484375, 375.6605224609375, 375.54022216796875, 375.6832275390625], "compile_time": 987.5559029997021, "verification_time": 0, "benchmark_time": 2633.353590999832, "GB/s": 6.54292590888799, "GB/s/W (Jetson)": 0.9100153321624134, "GPU (W) (Jetson)": 7.189907331935209, "GB/s/W (PS)": 0.7965555428769265, "GPU (W) (PS)": 8.21402345058933, "strategy_time": 0.026511000214668456, "framework_time": 2.3293580002246017, "timestamp": "2023-11-03 11:45:13.101584+00:00"},
"2,96,1,4,5,0,0,0": {"block_size_x": 2, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.978236607142857, "tegra_power": 7.48849982695035, "ps_energy": 3.422775913629656, "time": 419.4570007324219, "times": [419.3090515136719, 419.34295654296875, 419.5741271972656, 419.3973388671875, 419.4732360839844, 419.4390563964844, 419.6632385253906], "compile_time": 1107.3098419997223, "verification_time": 0, "benchmark_time": 2939.8770050001986, "GB/s": 5.859003415627198, "GB/s/W (Jetson)": 0.8251862844294546, "GPU (W) (Jetson)": 7.1002190974104655, "GB/s/W (PS)": 0.7180137005796143, "GPU (W) (PS)": 8.16001618199978, "strategy_time": 0.02671899983397452, "framework_time": 2.5052470004993665, "timestamp": "2023-11-03 11:45:17.151373+00:00"},
"1,224,1,4,7,1,1,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5811941964285716, "tegra_power": 7.507558625791146, "ps_energy": 3.044579607061418, "time": 365.62340872628346, "times": [365.2959899902344, 366.9238586425781, 365.1294860839844, 365.3900451660156, 365.4039611816406, 365.56365966796875, 365.6568603515625], "compile_time": 971.0996440003328, "verification_time": 0, "benchmark_time": 2565.9747569998217, "GB/s": 6.721670279705291, "GB/s/W (Jetson)": 0.9521174359528698, "GPU (W) (Jetson)": 7.059707159945359, "GB/s/W (PS)": 0.807205038850023, "GPU (W) (PS)": 8.327091576734029, "strategy_time": 0.02734400004555937, "framework_time": 2.9732220000369125, "timestamp": "2023-11-03 11:45:20.691505+00:00"},
"2,40,1,4,5,0,1,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.023716517857143, "tegra_power": 7.4184674940326465, "ps_energy": 3.491182382401998, "time": 425.7372044154576, "times": [425.5723571777344, 425.88775634765625, 425.89093017578125, 425.821044921875, 425.6541748046875, 425.6738586425781, 425.6603088378906], "compile_time": 1114.2456009997659, "verification_time": 0, "benchmark_time": 2983.5259380001844, "GB/s": 5.772575134405542, "GB/s/W (Jetson)": 0.8127746055181323, "GPU (W) (Jetson)": 7.102307448109316, "GB/s/W (PS)": 0.7039448905299315, "GPU (W) (PS)": 8.200322513968292, "strategy_time": 0.026510999759921106, "framework_time": 3.0168170005708816, "timestamp": "2023-11-03 11:45:24.792377+00:00"},
"1,144,1,2,7,1,0,0": {"block_size_x": 1, "block_size_y": 144, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.359375, "tegra_power": 7.505892509050378, "ps_energy": 3.8643879652673996, "time": 467.57315499441967, "times": [467.4998474121094, 467.03411865234375, 467.4372863769531, 467.85302734375, 467.5552978515625, 467.7168884277344, 467.9156188964844], "compile_time": 1145.120899000176, "verification_time": 0, "benchmark_time": 3278.2315029999154, "GB/s": 5.256075918279206, "GB/s/W (Jetson)": 0.7315646511627907, "GPU (W) (Jetson)": 7.184704605293461, "GB/s/W (PS)": 0.6359609910000183, "GPU (W) (PS)": 8.264777231091292, "strategy_time": 0.02557400011937716, "framework_time": 2.7678019996528747, "timestamp": "2023-11-03 11:45:29.218589+00:00"},
"1,160,1,3,1,0,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5750558035714284, "tegra_power": 7.5589490482247825, "ps_energy": 2.9571212606133486, "time": 360.5671648297991, "times": [360.52484130859375, 360.55474853515625, 360.6240539550781, 360.46905517578125, 360.6117858886719, 360.6163024902344, 360.5693664550781], "compile_time": 1103.7371880001956, "verification_time": 0, "benchmark_time": 2527.9237879999528, "GB/s": 6.815928458599599, "GB/s/W (Jetson)": 0.9543870841911366, "GPU (W) (Jetson)": 7.141681369647038, "GB/s/W (PS)": 0.8310785332794431, "GPU (W) (PS)": 8.201304913632994, "strategy_time": 0.030209000215108972, "framework_time": 3.864224999688304, "timestamp": "2023-11-03 11:45:32.854214+00:00"},
"2,184,1,1,2,0,0,0": {"block_size_x": 2, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6400669642857144, "tegra_power": 7.514534777615286, "ps_energy": 3.0845782404321653, "time": 372.29317801339283, "times": [372.1357421875, 372.1347961425781, 372.5018615722656, 372.5495300292969, 372.2113037109375, 372.31005859375, 372.2089538574219], "compile_time": 1149.8578219998308, "verification_time": 0, "benchmark_time": 2610.458861999632, "GB/s": 6.6012490830857775, "GB/s/W (Jetson)": 0.9308854787571337, "GPU (W) (Jetson)": 7.091365408234101, "GB/s/W (PS)": 0.7967377736723181, "GPU (W) (PS)": 8.285347201073883, "strategy_time": 0.05208399988987367, "framework_time": 5.9014960006607, "timestamp": "2023-11-03 11:45:36.621228+00:00"},
"16,32,1,2,2,1,1,0": {"block_size_x": 16, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5555245535714284, "tegra_power": 7.615829627275525, "ps_energy": 2.9097697483001475, "time": 355.9473092215402, "times": [355.8323059082031, 355.87786865234375, 356.2261047363281, 355.8435974121094, 355.9252014160156, 356.08349609375, 355.84259033203125], "compile_time": 1140.9916359998533, "verification_time": 0, "benchmark_time": 2495.730440999978, "GB/s": 6.904392690521504, "GB/s/W (Jetson)": 0.9616812315754995, "GPU (W) (Jetson)": 7.179502379608887, "GB/s/W (PS)": 0.8446029110845283, "GPU (W) (PS)": 8.174720451360733, "strategy_time": 0.05432399984783842, "framework_time": 6.138373000339925, "timestamp": "2023-11-03 11:45:40.264282+00:00"},
"2,224,1,2,8,0,0,0": {"block_size_x": 2, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5424107142857144, "tegra_power": 7.591671114337471, "ps_energy": 2.9963007201773246, "time": 356.8677280970982, "times": [356.673583984375, 357.2994384765625, 356.4100036621094, 358.130615234375, 356.6585388183594, 356.4309387207031, 356.4709777832031], "compile_time": 1147.739539000213, "verification_time": 0, "benchmark_time": 2504.605864000041, "GB/s": 6.886585158889247, "GB/s/W (Jetson)": 0.9666416154521509, "GPU (W) (Jetson)": 7.12423823763062, "GB/s/W (PS)": 0.8202113971572773, "GPU (W) (PS)": 8.396110054989554, "strategy_time": 0.03286500032118056, "framework_time": 4.063342999415909, "timestamp": "2023-11-03 11:45:43.920782+00:00"},
"2,136,1,4,1,0,0,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6707589285714284, "tegra_power": 7.486114503776049, "ps_energy": 3.1123716179297065, "time": 378.74496023995533, "times": [378.7294921875, 378.58563232421875, 378.63671875, 378.6977233886719, 378.92462158203125, 378.8869934082031, 378.7535400390625], "compile_time": 1116.2603560001116, "verification_time": 0, "benchmark_time": 2654.7981009998693, "GB/s": 6.48879921317759, "GB/s/W (Jetson)": 0.9201878813205182, "GPU (W) (Jetson)": 7.051602553019738, "GB/s/W (PS)": 0.7896229312214172, "GPU (W) (PS)": 8.217592165339576, "strategy_time": 0.028697999823634746, "framework_time": 2.921400000104768, "timestamp": "2023-11-03 11:45:47.694851+00:00"},
"4,48,1,3,1,1,0,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.53515625, "tegra_power": 7.499750742374177, "ps_energy": 2.956911528729896, "time": 360.14062935965404, "times": [360.068603515625, 359.9095764160156, 360.0168151855469, 360.1703796386719, 360.1748962402344, 360.37188720703125, 360.2722473144531], "compile_time": 1094.0967820001788, "verification_time": 0, "benchmark_time": 2525.1680020001004, "GB/s": 6.824000958652517, "GB/s/W (Jetson)": 0.9694077041602465, "GPU (W) (Jetson)": 7.0393508627660815, "GB/s/W (PS)": 0.8311374811594822, "GPU (W) (PS)": 8.210435834433387, "strategy_time": 0.029584000003524125, "framework_time": 3.01915999943958, "timestamp": "2023-11-03 11:45:51.317222+00:00"},
"4,40,1,2,6,0,0,0": {"block_size_x": 4, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.623046875, "tegra_power": 7.579290970553594, "ps_energy": 3.0547408442206296, "time": 365.8558131626674, "times": [365.13983154296875, 366.255615234375, 365.1518859863281, 366.9938049316406, 365.4599914550781, 366.05499267578125, 365.9345703125], "compile_time": 1005.3718439999102, "verification_time": 0, "benchmark_time": 2570.096466999985, "GB/s": 6.717400439137748, "GB/s/W (Jetson)": 0.9369256887565152, "GPU (W) (Jetson)": 7.169619234213826, "GB/s/W (PS)": 0.8045199659570529, "GPU (W) (PS)": 8.349575800952016, "strategy_time": 0.028750000183208613, "framework_time": 5.03465999963737, "timestamp": "2023-11-03 11:45:54.898154+00:00"},
"1,176,1,3,6,0,1,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7232142857142856, "tegra_power": 7.465991264161239, "ps_energy": 3.1467633642802997, "time": 388.19020298549106, "times": [388.02728271484375, 388.2839660644531, 388.431396484375, 387.8514099121094, 388.4569396972656, 388.1106262207031, 388.1697998046875], "compile_time": 1119.080889000088, "verification_time": 0, "benchmark_time": 2721.902527000111, "GB/s": 6.33091711511291, "GB/s/W (Jetson)": 0.9024629508196721, "GPU (W) (Jetson)": 7.015154593729064, "GB/s/W (PS)": 0.780992949103461, "GPU (W) (PS)": 8.10624106450701, "strategy_time": 0.02645899985509459, "framework_time": 2.3148779996517987, "timestamp": "2023-11-03 11:45:58.741536+00:00"},
"1,112,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8487723214285716, "tegra_power": 7.4926430198446905, "ps_energy": 3.260523848599405, "time": 399.0471627371652, "times": [398.1262512207031, 398.8120422363281, 398.8785400390625, 400.4906311035156, 397.85577392578125, 399.59222412109375, 399.5746765136719], "compile_time": 1116.5783930000543, "verification_time": 0, "benchmark_time": 2796.9746179996946, "GB/s": 6.158670526918927, "GB/s/W (Jetson)": 0.8626874045053867, "GPU (W) (Jetson)": 7.138936415154849, "GB/s/W (PS)": 0.7537439117507727, "GPU (W) (PS)": 8.170773164341401, "strategy_time": 0.024688000394235132, "framework_time": 2.78144699996119, "timestamp": "2023-11-03 11:46:02.657949+00:00"},
"1,120,1,2,5,1,1,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.71484375, "tegra_power": 7.53544222620509, "ps_energy": 3.1484839323862355, "time": 381.24751935686385, "times": [381.18072509765625, 381.2209777832031, 381.24847412109375, 381.2527160644531, 381.2841796875, 381.2675476074219, 381.27801513671875], "compile_time": 1129.2928960001518, "verification_time": 0, "benchmark_time": 2672.4034499998197, "GB/s": 6.446205877341281, "GB/s/W (Jetson)": 0.9052454676258992, "GPU (W) (Jetson)": 7.12094797253957, "GB/s/W (PS)": 0.7805661558950326, "GPU (W) (PS)": 8.258372245142718, "strategy_time": 0.02546900032029953, "framework_time": 9.51389299962102, "timestamp": "2023-11-03 11:46:06.469252+00:00"},
"8,80,1,4,7,0,0,0": {"block_size_x": 8, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7022879464285716, "tegra_power": 7.620041072605219, "ps_energy": 3.19254079824168, "time": 373.60167149135043, "times": [373.4271240234375, 373.4668884277344, 373.67822265625, 373.8024597167969, 373.6134338378906, 373.67572021484375, 373.5478515625], "compile_time": 1102.5817550003012, "verification_time": 0, "benchmark_time": 2629.990341999928, "GB/s": 6.578129027607677, "GB/s/W (Jetson)": 0.9094515642746513, "GPU (W) (Jetson)": 7.233072420799205, "GB/s/W (PS)": 0.7697943911487505, "GPU (W) (PS)": 8.545306517226312, "strategy_time": 0.04036500013171462, "framework_time": 3.839901999981521, "timestamp": "2023-11-03 11:46:10.205774+00:00"},
"2,72,1,3,5,0,0,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.810825892857143, "tegra_power": 7.580023372013616, "ps_energy": 3.242067427542289, "time": 390.86056082589283, "times": [390.7736511230469, 390.7796936035156, 390.7471923828125, 390.6755065917969, 391.1835021972656, 391.0010986328125, 390.86328125], "compile_time": 1114.8002089998954, "verification_time": 0, "benchmark_time": 2740.0183750000906, "GB/s": 6.287664313859303, "GB/s/W (Jetson)": 0.8743337701012507, "GPU (W) (Jetson)": 7.191377628169585, "GB/s/W (PS)": 0.7580348203501215, "GPU (W) (PS)": 8.294690619825555, "strategy_time": 0.04255200019542826, "framework_time": 3.403540999897814, "timestamp": "2023-11-03 11:46:14.064092+00:00"},
"1,32,1,1,8,0,0,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.603236607142857, "tegra_power": 7.6237054734284095, "ps_energy": 2.976824777642053, "time": 361.5962916782924, "times": [361.4095764160156, 361.55084228515625, 361.5189208984375, 361.61993408203125, 361.6244812011719, 361.7279052734375, 361.7223815917969], "compile_time": 1105.4919349999182, "verification_time": 0, "benchmark_time": 2536.223888999757, "GB/s": 6.79652987754226, "GB/s/W (Jetson)": 0.9440555627009646, "GPU (W) (Jetson)": 7.199290111799387, "GB/s/W (PS)": 0.8255776485261145, "GPU (W) (PS)": 8.23245383359876, "strategy_time": 0.027864999992743833, "framework_time": 3.997299000275234, "timestamp": "2023-11-03 11:46:17.709892+00:00"},
"2,56,1,3,3,0,1,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.908203125, "tegra_power": 7.47351210257266, "ps_energy": 3.401054859970048, "time": 411.0856192452567, "times": [410.64593505859375, 411.0838623046875, 411.00421142578125, 411.4639587402344, 411.1053771972656, 411.15740966796875, 411.1385803222656], "compile_time": 1093.3608059999642, "verification_time": 0, "benchmark_time": 2888.4749750000083, "GB/s": 5.978316644868518, "GB/s/W (Jetson)": 0.845057891202149, "GPU (W) (Jetson)": 7.074446268247941, "GB/s/W (PS)": 0.7225993408473402, "GPU (W) (PS)": 8.273349153430138, "strategy_time": 0.026250999781041173, "framework_time": 3.1031180001264147, "timestamp": "2023-11-03 11:46:21.694933+00:00"},
"1,216,1,1,2,0,1,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6947544642857144, "tegra_power": 7.526453724842151, "ps_energy": 3.1420653181407294, "time": 377.34106881277904, "times": [377.2010803222656, 377.2519836425781, 377.30859375, 377.36602783203125, 377.45989990234375, 377.4098815917969, 377.3900146484375], "compile_time": 1133.3764469995913, "verification_time": 0, "benchmark_time": 2645.6036049999057, "GB/s": 6.5129406871409445, "GB/s/W (Jetson)": 0.9119940360323047, "GPU (W) (Jetson)": 7.141429033325656, "GB/s/W (PS)": 0.7821606972366342, "GPU (W) (PS)": 8.326857524484543, "strategy_time": 0.038438000046880916, "framework_time": 3.696357000080752, "timestamp": "2023-11-03 11:46:25.477745+00:00"},
"1,152,1,1,1,0,0,0": {"block_size_x": 1, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7098214285714284, "tegra_power": 7.5476680770578835, "ps_energy": 3.148404339949983, "time": 379.41751534598217, "times": [379.247802734375, 379.32568359375, 379.4405212402344, 379.6627197265625, 379.32000732421875, 379.4349365234375, 379.4909362792969], "compile_time": 1095.7831650002845, "verification_time": 0, "benchmark_time": 2660.43380300016, "GB/s": 6.477297174219726, "GB/s/W (Jetson)": 0.9069232289950576, "GPU (W) (Jetson)": 7.142056755340891, "GB/s/W (PS)": 0.7805858887994807, "GPU (W) (PS)": 8.297994195336567, "strategy_time": 0.03828200033240137, "framework_time": 3.3714579994921223, "timestamp": "2023-11-03 11:46:29.237440+00:00"},
"1,224,1,1,2,0,0,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5493861607142856, "tegra_power": 7.578983075873269, "ps_energy": 2.9798878573201364, "time": 356.1570521763393, "times": [356.1341552734375, 356.2204284667969, 356.2254638671875, 356.1564025878906, 356.1382141113281, 356.0204162597656, 356.20428466796875], "compile_time": 1123.0532510003286, "verification_time": 0, "benchmark_time": 2496.4906000000155, "GB/s": 6.9003266536000005, "GB/s/W (Jetson)": 0.963996760424647, "GPU (W) (Jetson)": 7.15803925581696, "GB/s/W (PS)": 0.8247290225915284, "GPU (W) (PS)": 8.366780438885552, "strategy_time": 0.028594000013981713, "framework_time": 2.8798889993595367, "timestamp": "2023-11-03 11:46:32.859948+00:00"},
"8,112,1,2,4,0,0,0": {"block_size_x": 8, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6118861607142856, "tegra_power": 7.450269311029983, "ps_energy": 2.9668815704758993, "time": 370.45963396344865, "times": [367.91290283203125, 371.4057312011719, 370.3450927734375, 370.0077209472656, 370.0002136230469, 372.40472412109375, 371.14105224609375], "compile_time": 1141.4060689999133, "verification_time": 0, "benchmark_time": 2596.8217140002707, "GB/s": 6.6339211473779045, "GB/s/W (Jetson)": 0.9409292169639996, "GPU (W) (Jetson)": 7.050393406618728, "GB/s/W (PS)": 0.8283444895327559, "GPU (W) (PS)": 8.0086500619083, "strategy_time": 0.025625000034779077, "framework_time": 2.713528999720438, "timestamp": "2023-11-03 11:46:36.601288+00:00"},
"16,48,1,2,1,0,0,0": {"block_size_x": 16, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5284598214285716, "tegra_power": 7.558073288988352, "ps_energy": 2.9653432787080027, "time": 357.6591491699219, "times": [357.6021423339844, 357.78790283203125, 357.59027099609375, 357.7958984375, 357.5103759765625, 357.7618713378906, 357.5655822753906], "compile_time": 1147.0383820001189, "verification_time": 0, "benchmark_time": 2507.359678999819, "GB/s": 6.871346659812155, "GB/s/W (Jetson)": 0.9719751048333699, "GPU (W) (Jetson)": 7.069467752458681, "GB/s/W (PS)": 0.8287741988073549, "GPU (W) (PS)": 8.290975599506291, "strategy_time": 0.02453199977026088, "framework_time": 2.3577430006298528, "timestamp": "2023-11-03 11:46:40.258127+00:00"},
"1,128,1,3,3,0,0,0": {"block_size_x": 1, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.898716517857143, "tegra_power": 7.564376382511067, "ps_energy": 3.3106812052854884, "time": 402.3307800292969, "times": [402.246826171875, 402.28973388671875, 402.7018127441406, 402.28619384765625, 402.1721496582031, 402.2684326171875, 402.3503112792969], "compile_time": 1091.9898949996423, "verification_time": 0, "benchmark_time": 2820.310370000243, "GB/s": 6.108406619600525, "GB/s/W (Jetson)": 0.8478235056309558, "GPU (W) (Jetson)": 7.204809230966779, "GB/s/W (PS)": 0.7423245693594575, "GPU (W) (PS)": 8.228754471741912, "strategy_time": 0.028229999770701397, "framework_time": 4.058496000652667, "timestamp": "2023-11-03 11:46:44.174570+00:00"},
"1,120,1,1,7,0,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3462611607142856, "tegra_power": 7.508051850819447, "ps_energy": 3.842075381520512, "time": 466.94815935407365, "times": [466.7881774902344, 466.8616638183594, 466.9638977050781, 467.167236328125, 466.8342590332031, 466.9750061035156, 467.046875], "compile_time": 1110.8509470000172, "verification_time": 0, "benchmark_time": 3275.3606190003666, "GB/s": 5.263111013007487, "GB/s/W (Jetson)": 0.7344316184440923, "GPU (W) (Jetson)": 7.166236965883209, "GB/s/W (PS)": 0.6396542899237437, "GPU (W) (PS)": 8.228055522984029, "strategy_time": 0.02468799993948778, "framework_time": 2.656393999586726, "timestamp": "2023-11-03 11:46:48.563517+00:00"},
"2,64,1,3,1,1,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5320870535714284, "tegra_power": 7.483518691284482, "ps_energy": 2.9173908007885205, "time": 359.87243216378346, "times": [359.7633361816406, 359.8666687011719, 360.0485534667969, 359.89410400390625, 359.78436279296875, 360.0345458984375, 359.7154541015625], "compile_time": 1122.0970419999503, "verification_time": 0, "benchmark_time": 2522.6605170000767, "GB/s": 6.829086588331691, "GB/s/W (Jetson)": 0.9705827438016529, "GPU (W) (Jetson)": 7.036068415540751, "GB/s/W (PS)": 0.8423965686516023, "GPU (W) (PS)": 8.106735998774063, "strategy_time": 0.02906299960159231, "framework_time": 2.7787910007646133, "timestamp": "2023-11-03 11:46:52.211138+00:00"},
"4,120,1,4,7,1,1,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5474330357142856, "tegra_power": 7.518041873692238, "ps_energy": 2.9120585176325613, "time": 358.2841796875, "times": [358.3707275390625, 358.0986328125, 358.2790222167969, 358.1866149902344, 358.33709716796875, 358.4338684082031, 358.2832946777344], "compile_time": 1095.4110099996797, "verification_time": 0, "benchmark_time": 2515.825498999675, "GB/s": 6.859359523335777, "GB/s/W (Jetson)": 0.9647358598028477, "GPU (W) (Jetson)": 7.110090760736879, "GB/s/W (PS)": 0.8439390847124781, "GPU (W) (PS)": 8.127789845961091, "strategy_time": 0.026094000077137025, "framework_time": 3.250882000884303, "timestamp": "2023-11-03 11:46:55.825718+00:00"},
"1,112,1,2,1,0,0,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.840122767857143, "tegra_power": 7.47243300083666, "ps_energy": 3.3318055537300615, "time": 402.17146955217635, "times": [402.0968322753906, 402.14056396484375, 402.1958312988281, 402.245361328125, 402.120361328125, 402.3200988769531, 402.08123779296875], "compile_time": 1135.7183199997962, "verification_time": 0, "benchmark_time": 2818.8222280000446, "GB/s": 6.110826316786151, "GB/s/W (Jetson)": 0.8653147067491894, "GPU (W) (Jetson)": 7.061969788706444, "GB/s/W (PS)": 0.7376180753551597, "GPU (W) (PS)": 8.284539819396125, "strategy_time": 0.025105000077019213, "framework_time": 3.459269999893877, "timestamp": "2023-11-03 11:46:59.784147+00:00"},
"1,96,1,4,8,1,0,0": {"block_size_x": 1, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.800502232142857, "tegra_power": 7.574339363993995, "ps_energy": 3.281750628560985, "time": 394.6650608607701, "times": [394.60662841796875, 394.71759033203125, 394.7497863769531, 394.0683288574219, 395.41510009765625, 395.3314208984375, 393.7665710449219], "compile_time": 1101.260922000165, "verification_time": 0, "benchmark_time": 2766.817055000047, "GB/s": 6.227052363439366, "GB/s/W (Jetson)": 0.8775568795456808, "GPU (W) (Jetson)": 7.095896013786785, "GB/s/W (PS)": 0.7488686003779735, "GPU (W) (PS)": 8.315280357991256, "strategy_time": 0.027709000278264284, "framework_time": 2.7258739996796066, "timestamp": "2023-11-03 11:47:03.655056+00:00"},
"2,240,1,3,5,0,1,0": {"block_size_x": 2, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.553013392857143, "tegra_power": 7.448920479990947, "ps_energy": 3.0042621996586343, "time": 366.2979431152344, "times": [366.26593017578125, 366.2533264160156, 366.1656799316406, 366.1894836425781, 366.2967224121094, 366.6217041015625, 366.2927551269531], "compile_time": 1102.5674430002255, "verification_time": 0, "benchmark_time": 2568.819973000245, "GB/s": 6.709292383951112, "GB/s/W (Jetson)": 0.9626271475409836, "GPU (W) (Jetson)": 6.969772669605151, "GB/s/W (PS)": 0.8180377865418171, "GPU (W) (PS)": 8.201690061670691, "strategy_time": 0.04494900031204452, "framework_time": 4.71824799933529, "timestamp": "2023-11-03 11:47:07.331887+00:00"},
"1,184,1,1,2,0,1,0": {"block_size_x": 1, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.685546875, "tegra_power": 7.492087702422894, "ps_energy": 3.1104066120429446, "time": 381.1195765904018, "times": [380.9820861816406, 381.2872009277344, 381.05499267578125, 381.2529296875, 381.0667724609375, 381.0274963378906, 381.1655578613281], "compile_time": 1142.558081000061, "verification_time": 0, "benchmark_time": 2671.132775999922, "GB/s": 6.448369884292878, "GB/s/W (Jetson)": 0.9151208727272726, "GPU (W) (Jetson)": 7.046467932782735, "GB/s/W (PS)": 0.790121777160776, "GPU (W) (PS)": 8.161235483806626, "strategy_time": 0.025626000024203677, "framework_time": 2.787280000120518, "timestamp": "2023-11-03 11:47:11.148493+00:00"},
"16,64,1,4,8,0,1,0": {"block_size_x": 16, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6495535714285716, "tegra_power": 7.737381808222346, "ps_energy": 3.097579051640683, "time": 364.64441353934154, "times": [364.56182861328125, 364.68817138671875, 364.6641540527344, 364.602294921875, 364.485107421875, 364.681884765625, 364.82745361328125], "compile_time": 1103.2611860000543, "verification_time": 0, "benchmark_time": 2555.730259000029, "GB/s": 6.739716580725428, "GB/s/W (Jetson)": 0.9275524852569501, "GPU (W) (Jetson)": 7.266129612987232, "GB/s/W (PS)": 0.7933937952925825, "GPU (W) (PS)": 8.494793658223657, "strategy_time": 0.026667000383895356, "framework_time": 3.2702559992685565, "timestamp": "2023-11-03 11:47:14.810913+00:00"},
"1,104,1,1,7,0,1,0": {"block_size_x": 1, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9868861607142856, "tegra_power": 7.403571421101477, "ps_energy": 3.482993967041174, "time": 423.92525809151783, "times": [423.8386535644531, 423.7878112792969, 423.8837890625, 423.8819885253906, 424.0836486816406, 424.0079040527344, 423.9930114746094], "compile_time": 941.842424999777, "verification_time": 0, "benchmark_time": 2971.6419340002176, "GB/s": 5.797248342936547, "GB/s/W (Jetson)": 0.822796674451191, "GPU (W) (Jetson)": 7.045784849341227, "GB/s/W (PS)": 0.7055998440582276, "GPU (W) (PS)": 8.21605672358701, "strategy_time": 0.10224100014966098, "framework_time": 3.1202559998746437, "timestamp": "2023-11-03 11:47:18.727678+00:00"},
"1,216,1,2,7,1,0,0": {"block_size_x": 1, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3588169642857144, "tegra_power": 7.533069434418578, "ps_energy": 3.867185110374391, "time": 467.377197265625, "times": [467.3063659667969, 467.493896484375, 467.4863586425781, 467.2977600097656, 467.5780334472656, 467.24359130859375, 467.234375], "compile_time": 1141.2627740000971, "verification_time": 0, "benchmark_time": 3276.478306000172, "GB/s": 5.25827963875454, "GB/s/W (Jetson)": 0.731686193719887, "GPU (W) (Jetson)": 7.186522971031456, "GB/s/W (PS)": 0.6355009987515373, "GPU (W) (PS)": 8.274227183095862, "strategy_time": 0.029427000299619976, "framework_time": 4.050215999541251, "timestamp": "2023-11-03 11:47:23.149608+00:00"},
"2,160,1,4,8,0,0,0": {"block_size_x": 2, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.66015625, "tegra_power": 7.6411693091050354, "ps_energy": 3.078567333470606, "time": 370.0217982700893, "times": [368.8511047363281, 370.5129089355469, 370.3720703125, 370.0026550292969, 369.772705078125, 370.7004089355469, 369.94073486328125], "compile_time": 1116.2691109998377, "verification_time": 0, "benchmark_time": 2593.8819050002166, "GB/s": 6.6417708672561195, "GB/s/W (Jetson)": 0.9238555066079295, "GPU (W) (Jetson)": 7.189187940917678, "GB/s/W (PS)": 0.7982934052734971, "GPU (W) (PS)": 8.319962088351003, "strategy_time": 0.029426999844872626, "framework_time": 6.772705000003043, "timestamp": "2023-11-03 11:47:26.866616+00:00"},
"1,176,1,3,4,1,0,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6010044642857144, "tegra_power": 7.630222640369765, "ps_energy": 3.02638759956296, "time": 361.57986886160717, "times": [361.6103210449219, 361.7657165527344, 361.5815734863281, 361.6426696777344, 361.4724426269531, 361.53656005859375, 361.4497985839844], "compile_time": 1104.3010610001147, "verification_time": 0, "benchmark_time": 2535.1535659997353, "GB/s": 6.796838573279736, "GB/s/W (Jetson)": 0.9448657369663161, "GPU (W) (Jetson)": 7.1934437956257895, "GB/s/W (PS)": 0.8120572527969985, "GPU (W) (PS)": 8.3699007057312, "strategy_time": 0.02703100017242832, "framework_time": 3.075149999858695, "timestamp": "2023-11-03 11:47:30.509245+00:00"},
"8,120,1,4,5,1,0,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.546875, "tegra_power": 7.531856975798321, "ps_energy": 2.9738561454604286, "time": 361.3531188964844, "times": [361.21337890625, 361.4664611816406, 361.3101501464844, 361.2635803222656, 361.43603515625, 361.3808288574219, 361.4013977050781], "compile_time": 1117.6672399997187, "verification_time": 0, "benchmark_time": 2533.8882169999124, "GB/s": 6.801103606093464, "GB/s/W (Jetson)": 0.9649472392638035, "GPU (W) (Jetson)": 7.048161111152869, "GB/s/W (PS)": 0.826401775940477, "GPU (W) (PS)": 8.2297785460995, "strategy_time": 0.03151000009893323, "framework_time": 4.7717890001877095, "timestamp": "2023-11-03 11:47:34.166094+00:00"},
"1,160,1,3,2,0,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5825892857142856, "tegra_power": 7.631327702358854, "ps_energy": 3.0156433850050752, "time": 359.0489196777344, "times": [358.8726501464844, 358.8843688964844, 358.90655517578125, 359.3701171875, 359.0548400878906, 359.1541748046875, 359.0997314453125], "compile_time": 1156.406034000156, "verification_time": 0, "benchmark_time": 2517.04977099962, "GB/s": 6.844749741082155, "GB/s/W (Jetson)": 0.9516031114952463, "GPU (W) (Jetson)": 7.192861875290692, "GB/s/W (PS)": 0.8149504720021342, "GPU (W) (PS)": 8.398976350386395, "strategy_time": 0.0410940001529525, "framework_time": 3.52802099996552, "timestamp": "2023-11-03 11:47:37.843208+00:00"},
"4,136,1,1,6,0,0,0": {"block_size_x": 4, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.587890625, "tegra_power": 7.598705064114797, "ps_energy": 3.003185049068374, "time": 362.2968444824219, "times": [362.2598876953125, 362.2575988769531, 362.1552734375, 362.2731628417969, 362.1934509277344, 362.5679626464844, 362.3705749511719], "compile_time": 958.2880920002026, "verification_time": 0, "benchmark_time": 2541.14682799991, "GB/s": 6.783387814240924, "GB/s/W (Jetson)": 0.9496537358490565, "GPU (W) (Jetson)": 7.143011771733939, "GB/s/W (PS)": 0.8183311916667867, "GPU (W) (PS)": 8.289293972070695, "strategy_time": 0.028854999982286245, "framework_time": 3.0362959996637073, "timestamp": "2023-11-03 11:47:41.346166+00:00"},
"4,128,1,4,8,1,0,0": {"block_size_x": 4, "block_size_y": 128, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.556919642857143, "tegra_power": 7.6061132252862675, "ps_energy": 2.9377466743686194, "time": 356.6318926130022, "times": [356.44183349609375, 356.7213439941406, 356.4888610839844, 356.4309387207031, 356.8173522949219, 356.6768798828125, 356.8460388183594], "compile_time": 1134.2324080001163, "verification_time": 0, "benchmark_time": 2499.6216129998174, "GB/s": 6.891139157503379, "GB/s/W (Jetson)": 0.961156525534701, "GPU (W) (Jetson)": 7.169632598259446, "GB/s/W (PS)": 0.836559537771645, "GPU (W) (PS)": 8.237476050849171, "strategy_time": 0.028124999971623765, "framework_time": 3.6061989999325306, "timestamp": "2023-11-03 11:47:44.984057+00:00"},
"4,96,1,3,8,0,1,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.551060267857143, "tegra_power": 7.574133871683, "ps_energy": 2.986186883401907, "time": 359.94444056919644, "times": [359.9661865234375, 359.80743408203125, 359.8839111328125, 359.89349365234375, 360.2447509765625, 360.00006103515625, 359.81524658203125], "compile_time": 1094.8657230001118, "verification_time": 0, "benchmark_time": 2523.1263169998783, "GB/s": 6.82772040071986, "GB/s/W (Jetson)": 0.9633641474351963, "GPU (W) (Jetson)": 7.0873723284155625, "GB/s/W (PS)": 0.8229893492801985, "GPU (W) (PS)": 8.296243938869328, "strategy_time": 0.025521000225126045, "framework_time": 2.3689409995313326, "timestamp": "2023-11-03 11:47:48.604907+00:00"},
"2,104,1,2,5,1,1,0": {"block_size_x": 2, "block_size_y": 104, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6710379464285716, "tegra_power": 7.521069625252165, "ps_energy": 3.0508307111621042, "time": 375.21348353794644, "times": [375.1637878417969, 375.22052001953125, 375.2818603515625, 375.3264465332031, 375.2357177734375, 375.11370849609375, 375.15234375], "compile_time": 1134.6396369999638, "verification_time": 0, "benchmark_time": 2630.1234000002296, "GB/s": 6.549871227512685, "GB/s/W (Jetson)": 0.9200917580695706, "GPU (W) (Jetson)": 7.118715247764921, "GB/s/W (PS)": 0.8055510884325225, "GPU (W) (PS)": 8.13091971641143, "strategy_time": 0.027864999992743833, "framework_time": 3.0304099996101286, "timestamp": "2023-11-03 11:47:52.373109+00:00"},
"1,56,1,2,8,0,1,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.1263950892857144, "tegra_power": 7.545835959833901, "ps_energy": 3.6094529458766504, "time": 433.8250078473772, "times": [433.9682922363281, 433.8323974609375, 433.7519836425781, 433.5599365234375, 433.6116638183594, 434.3067626953125, 433.7440185546875], "compile_time": 1153.0693280001287, "verification_time": 0, "benchmark_time": 3040.4952740000226, "GB/s": 5.664956965469822, "GB/s/W (Jetson)": 0.7860810709504684, "GPU (W) (Jetson)": 7.206581070092674, "GB/s/W (PS)": 0.6808788026472269, "GPU (W) (PS)": 8.320066571972454, "strategy_time": 0.026562000130070373, "framework_time": 2.3486819995923724, "timestamp": "2023-11-03 11:47:56.569109+00:00"},
"1,248,1,2,7,1,0,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.384486607142857, "tegra_power": 7.518733459018129, "ps_energy": 3.875254108943149, "time": 468.3712942940848, "times": [468.19598388671875, 468.2740478515625, 468.2533874511719, 468.3118896484375, 468.4210510253906, 468.5406799316406, 468.6020202636719], "compile_time": 1157.3832889998812, "verification_time": 0, "benchmark_time": 3282.0864189998247, "GB/s": 5.247119176473061, "GB/s/W (Jetson)": 0.7261367188788128, "GPU (W) (Jetson)": 7.226076081891086, "GB/s/W (PS)": 0.6341777676794028, "GPU (W) (PS)": 8.273893289689788, "strategy_time": 0.029166999865992693, "framework_time": 2.9633250005645095, "timestamp": "2023-11-03 11:48:01.011628+00:00"},
"1,256,1,1,5,0,0,0": {"block_size_x": 1, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.1685267857142856, "tegra_power": 7.534502209402277, "ps_energy": 3.648365313544283, "time": 442.13417271205356, "times": [442.096923828125, 441.9613952636719, 442.2572326660156, 442.1702575683594, 442.1982421875, 442.0466003417969, 442.20855712890625], "compile_time": 1116.648718000306, "verification_time": 0, "benchmark_time": 3098.3044089998657, "GB/s": 5.558493669297415, "GB/s/W (Jetson)": 0.7756286016202888, "GPU (W) (Jetson)": 7.166437206783914, "GB/s/W (PS)": 0.6736167540230535, "GPU (W) (PS)": 8.251715290779694, "strategy_time": 0.025676999939605594, "framework_time": 2.700978000120813, "timestamp": "2023-11-03 11:48:05.229693+00:00"},
"2,56,1,3,7,0,1,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.941685267857143, "tegra_power": 7.481281600600276, "ps_energy": 3.411835691080861, "time": 414.05196271623885, "times": [414.0489501953125, 413.9942626953125, 413.8974914550781, 414.401611328125, 413.90594482421875, 413.9093322753906, 414.2061462402344], "compile_time": 953.3723949998603, "verification_time": 0, "benchmark_time": 2902.7048350003497, "GB/s": 5.935486898498922, "GB/s/W (Jetson)": 0.8354394764298586, "GPU (W) (Jetson)": 7.104628241729071, "GB/s/W (PS)": 0.7203160475824198, "GPU (W) (PS)": 8.24011476409565, "strategy_time": 0.02791699989757035, "framework_time": 2.7695200001289777, "timestamp": "2023-11-03 11:48:09.088630+00:00"},
"8,64,1,2,3,0,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.511439732142857, "tegra_power": 7.591399167782106, "ps_energy": 2.943298961835743, "time": 355.20726231166293, "times": [355.22686767578125, 355.1458740234375, 355.1553649902344, 355.0711364746094, 355.1628723144531, 355.388916015625, 355.2998046875], "compile_time": 996.6653179999412, "verification_time": 0, "benchmark_time": 2489.641589999792, "GB/s": 6.918777459689642, "GB/s/W (Jetson)": 0.9785622041995333, "GPU (W) (Jetson)": 7.070350183153888, "GB/s/W (PS)": 0.8349814381299507, "GPU (W) (PS)": 8.286145228791124, "strategy_time": 0.026666999929148005, "framework_time": 2.838219000295794, "timestamp": "2023-11-03 11:48:12.577860+00:00"},
"1,176,1,1,1,0,0,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.693638392857143, "tegra_power": 7.468221608232066, "ps_energy": 3.13179022076864, "time": 381.19461495535717, "times": [380.70428466796875, 380.830322265625, 381.0265197753906, 380.8282165527344, 382.8616027832031, 380.9969787597656, 381.1143798828125], "compile_time": 1073.481548000018, "verification_time": 0, "benchmark_time": 2674.7192479997466, "GB/s": 6.447100519213307, "GB/s/W (Jetson)": 0.9123719080174021, "GPU (W) (Jetson)": 7.0663075688322685, "GB/s/W (PS)": 0.7847268899756725, "GPU (W) (PS)": 8.215725243483341, "strategy_time": 0.0274479998552124, "framework_time": 3.0689510003867326, "timestamp": "2023-11-03 11:48:16.329213+00:00"},
"2,64,1,3,3,0,0,0": {"block_size_x": 2, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6651785714285716, "tegra_power": 7.637150207722101, "ps_energy": 3.0821768683095536, "time": 367.80670166015625, "times": [367.85687255859375, 367.8233337402344, 367.6869812011719, 367.5991516113281, 367.7321472167969, 367.9649963378906, 367.9834289550781], "compile_time": 1111.7138739996335, "verification_time": 0, "benchmark_time": 2577.750145000209, "GB/s": 6.681770584677268, "GB/s/W (Jetson)": 0.9221145728643214, "GPU (W) (Jetson)": 7.246139234002121, "GB/s/W (PS)": 0.7973585245118953, "GPU (W) (PS)": 8.379882297950633, "strategy_time": 0.02671899983397452, "framework_time": 2.8325410003162688, "timestamp": "2023-11-03 11:48:20.021591+00:00"},
"1,56,1,3,6,1,0,0": {"block_size_x": 1, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.3041294642857144, "tegra_power": 7.405137892882514, "ps_energy": 3.772519084461237, "time": 468.018807547433, "times": [467.8727111816406, 468.0654296875, 468.0075988769531, 468.1866760253906, 468.0311584472656, 468.0250549316406, 467.9430236816406], "compile_time": 974.033818999942, "verification_time": 0, "benchmark_time": 3280.8284419998017, "GB/s": 5.251071026138037, "GB/s/W (Jetson)": 0.7437965208579631, "GPU (W) (Jetson)": 7.059821979378138, "GB/s/W (PS)": 0.651447996677524, "GPU (W) (PS)": 8.060614282213216, "strategy_time": 0.026093999622389674, "framework_time": 3.113691000635299, "timestamp": "2023-11-03 11:48:24.279648+00:00"},
"1,32,1,4,2,0,1,0": {"block_size_x": 1, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5853794642857144, "tegra_power": 7.5237634447719035, "ps_energy": 2.9556199886808048, "time": 362.80369785853793, "times": [362.8971862792969, 362.7441101074219, 362.6027526855469, 362.7951965332031, 362.86968994140625, 362.9917297363281, 362.7252197265625], "compile_time": 1160.116444000323, "verification_time": 0, "benchmark_time": 2550.1527730002636, "GB/s": 6.7739111109012216, "GB/s/W (Jetson)": 0.9505761277789768, "GPU (W) (Jetson)": 7.126111116138041, "GB/s/W (PS)": 0.8315006697112343, "GPU (W) (PS)": 8.146609326548928, "strategy_time": 0.05562600017583463, "framework_time": 5.888836999019986, "timestamp": "2023-11-03 11:48:27.995946+00:00"},
"1,96,1,4,7,1,1,0": {"block_size_x": 1, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6576450892857144, "tegra_power": 7.519484631811305, "ps_energy": 3.1047486021821635, "time": 373.1018327985491, "times": [373.02557373046875, 373.09234619140625, 373.0932922363281, 373.01708984375, 373.236083984375, 373.0116271972656, 373.23681640625], "compile_time": 1135.812850000093, "verification_time": 0, "benchmark_time": 2619.7476330003155, "GB/s": 6.586941644231872, "GB/s/W (Jetson)": 0.9247284409448817, "GPU (W) (Jetson)": 7.123109177329266, "GB/s/W (PS)": 0.7915616737125456, "GPU (W) (PS)": 8.321450953200028, "strategy_time": 0.029271000130393077, "framework_time": 3.379528999175818, "timestamp": "2023-11-03 11:48:31.754971+00:00"},
"8,80,1,2,5,0,1,0": {"block_size_x": 8, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.517578125, "tegra_power": 7.587412578547318, "ps_energy": 2.911660970105004, "time": 353.49278041294644, "times": [353.4263000488281, 353.5224609375, 353.46331787109375, 353.5381164550781, 353.4742736816406, 353.4525451660156, 353.57244873046875], "compile_time": 1142.6870049999707, "verification_time": 0, "benchmark_time": 2481.224850000217, "GB/s": 6.952334350730043, "GB/s/W (Jetson)": 0.9761762606671838, "GPU (W) (Jetson)": 7.122007193637709, "GB/s/W (PS)": 0.8440543130649483, "GPU (W) (PS)": 8.236832918351636, "strategy_time": 0.02588600000308361, "framework_time": 2.764519999800541, "timestamp": "2023-11-03 11:48:35.381742+00:00"},
"8,72,1,1,8,0,0,0": {"block_size_x": 8, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5066964285714284, "tegra_power": 7.5705147417716345, "ps_energy": 2.9705432875260676, "time": 353.7014944893973, "times": [353.61431884765625, 353.66876220703125, 353.6483459472656, 353.65057373046875, 353.66485595703125, 353.6202087402344, 354.04339599609375], "compile_time": 1111.160128999927, "verification_time": 0, "benchmark_time": 2479.518611000003, "GB/s": 6.9482318799579454, "GB/s/W (Jetson)": 0.9804138913624221, "GPU (W) (Jetson)": 7.087039403636362, "GB/s/W (PS)": 0.8273234092632066, "GPU (W) (PS)": 8.398447091139202, "strategy_time": 0.028437999844754813, "framework_time": 4.478712000036467, "timestamp": "2023-11-03 11:48:38.977002+00:00"},
"4,64,1,3,2,1,1,0": {"block_size_x": 4, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5011160714285716, "tegra_power": 7.5472560397424955, "ps_energy": 2.9486903453507693, "time": 352.9539010184152, "times": [352.7366638183594, 352.98553466796875, 353.1734313964844, 352.8223571777344, 353.133544921875, 352.8612365722656, 352.96453857421875], "compile_time": 1198.693542000001, "verification_time": 0, "benchmark_time": 2480.650172999958, "GB/s": 6.962948965598133, "GB/s/W (Jetson)": 0.9826013386880855, "GPU (W) (Jetson)": 7.0862400563128425, "GB/s/W (PS)": 0.8334547586100125, "GPU (W) (PS)": 8.354321447765846, "strategy_time": 0.025677999929030193, "framework_time": 2.7871759998561174, "timestamp": "2023-11-03 11:48:42.659228+00:00"},
"1,136,1,3,8,0,1,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0658482142857144, "tegra_power": 7.491407049334114, "ps_energy": 3.476377941993373, "time": 429.14168439592635, "times": [429.0443115234375, 429.1481628417969, 429.14337158203125, 429.0992736816406, 429.1418762207031, 429.3484802246094, 429.0663146972656], "compile_time": 949.0976830002182, "verification_time": 0, "benchmark_time": 3007.7049759997863, "GB/s": 5.726779964196199, "GB/s/W (Jetson)": 0.8016052420822715, "GPU (W) (Jetson)": 7.1441398628084825, "GB/s/W (PS)": 0.7069426975453651, "GPU (W) (PS)": 8.100769672111518, "strategy_time": 0.04552099971988355, "framework_time": 4.597620000367897, "timestamp": "2023-11-03 11:48:46.620749+00:00"},
"2,216,1,1,8,0,1,0": {"block_size_x": 2, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6060267857142856, "tegra_power": 7.470168707660756, "ps_energy": 2.9814209700593244, "time": 369.0958949497768, "times": [368.96759033203125, 369.0960388183594, 368.99688720703125, 369.1128234863281, 369.1163024902344, 369.22479248046875, 369.1568298339844], "compile_time": 970.7739320001565, "verification_time": 0, "benchmark_time": 2587.228214999868, "GB/s": 6.658432222158439, "GB/s/W (Jetson)": 0.9430447965738757, "GPU (W) (Jetson)": 7.060568327558587, "GB/s/W (PS)": 0.8243049286498775, "GPU (W) (PS)": 8.077632427922312, "strategy_time": 0.026198999876214657, "framework_time": 3.259370000250783, "timestamp": "2023-11-03 11:48:50.182095+00:00"},
"2,72,1,3,2,1,0,0": {"block_size_x": 2, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8250558035714284, "tegra_power": 7.510555773258259, "ps_energy": 3.256934136482284, "time": 398.3013480050223, "times": [398.3435363769531, 398.3276062011719, 398.2359924316406, 398.20428466796875, 398.2420349121094, 398.4404602050781, 398.3155212402344], "compile_time": 1170.323413999995, "verification_time": 0, "benchmark_time": 2792.0684919999985, "GB/s": 6.1702025672506915, "GB/s/W (Jetson)": 0.8699297185185185, "GPU (W) (Jetson)": 7.092759835539915, "GB/s/W (PS)": 0.7545746696168623, "GPU (W) (PS)": 8.177060290645102, "strategy_time": 0.02864599991880823, "framework_time": 3.5564600002544466, "timestamp": "2023-11-03 11:48:54.148130+00:00"},
"16,56,1,1,5,0,0,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.510044642857143, "tegra_power": 7.60955284936059, "ps_energy": 2.9048804461563122, "time": 353.6077575683594, "times": [353.8026428222656, 353.5482177734375, 353.6895446777344, 353.5128173828125, 353.6659851074219, 353.4714050292969, 353.5636901855469], "compile_time": 1103.1011179998131, "verification_time": 0, "benchmark_time": 2478.5575769997195, "GB/s": 6.950073767894917, "GB/s/W (Jetson)": 0.9791060915962649, "GPU (W) (Jetson)": 7.0983868117539854, "GB/s/W (PS)": 0.8460244906986977, "GPU (W) (PS)": 8.21497940580317, "strategy_time": 0.0320310000461177, "framework_time": 5.006950000733923, "timestamp": "2023-11-03 11:48:57.734919+00:00"},
"1,80,1,2,4,1,1,0": {"block_size_x": 1, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9888392857142856, "tegra_power": 7.429450807454367, "ps_energy": 3.4862481328507005, "time": 422.72652762276783, "times": [422.3301086425781, 423.7242736816406, 423.99725341796875, 422.1874084472656, 422.31524658203125, 422.4162902832031, 422.1151123046875], "compile_time": 1151.038169000003, "verification_time": 0, "benchmark_time": 2974.376750999909, "GB/s": 5.813687666635176, "GB/s/W (Jetson)": 0.822258999253174, "GPU (W) (Jetson)": 7.070384966191339, "GB/s/W (PS)": 0.7049412165594833, "GPU (W) (PS)": 8.247053130201836, "strategy_time": 0.027395999950385885, "framework_time": 3.542031000051793, "timestamp": "2023-11-03 11:49:01.863961+00:00"},
"4,120,1,4,2,0,1,0": {"block_size_x": 4, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5248325892857144, "tegra_power": 7.5688377137384775, "ps_energy": 2.919462022878309, "time": 355.5248805454799, "times": [355.3492126464844, 355.44635009765625, 355.4198913574219, 355.5036315917969, 355.60015869140625, 355.5228271484375, 355.83209228515625], "compile_time": 1143.4241950000796, "verification_time": 0, "benchmark_time": 2492.571863000194, "GB/s": 6.912596373647091, "GB/s/W (Jetson)": 0.9733714664603822, "GPU (W) (Jetson)": 7.101704346013357, "GB/s/W (PS)": 0.8417989275904478, "GPU (W) (PS)": 8.211695390767009, "strategy_time": 0.028959000246686628, "framework_time": 2.9438969995680964, "timestamp": "2023-11-03 11:49:05.502985+00:00"},
"1,160,1,3,2,1,0,0": {"block_size_x": 1, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5697544642857144, "tegra_power": 7.595948666682767, "ps_energy": 2.9853665987757267, "time": 359.0427551269531, "times": [358.8734436035156, 358.8127746582031, 359.33489990234375, 359.0914001464844, 359.05859375, 359.12542724609375, 359.00274658203125], "compile_time": 1138.93651699982, "verification_time": 0, "benchmark_time": 2517.789820999951, "GB/s": 6.84486726136842, "GB/s/W (Jetson)": 0.956355960912052, "GPU (W) (Jetson)": 7.157238038063408, "GB/s/W (PS)": 0.8232154808082333, "GPU (W) (PS)": 8.314794146786607, "strategy_time": 0.028177000331197632, "framework_time": 3.52911599975414, "timestamp": "2023-11-03 11:49:09.163325+00:00"},
"4,248,1,4,6,0,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7003348214285716, "tegra_power": 7.506818040074957, "ps_energy": 3.0755192190164444, "time": 381.2327314104353, "times": [386.0010986328125, 375.5406188964844, 385.90277099609375, 376.12261962890625, 386.0135498046875, 375.4867858886719, 383.5616760253906], "compile_time": 1106.7031740003586, "verification_time": 0, "benchmark_time": 2672.6855090000754, "GB/s": 6.446455924462968, "GB/s/W (Jetson)": 0.9101093614383136, "GPU (W) (Jetson)": 7.083166262871039, "GB/s/W (PS)": 0.7990845853943139, "GPU (W) (PS)": 8.067301062104606, "strategy_time": 0.07812600006218418, "framework_time": 6.469209999522718, "timestamp": "2023-11-03 11:49:12.949372+00:00"},
"8,32,1,3,1,0,0,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6085379464285716, "tegra_power": 7.600038813446913, "ps_energy": 3.0251259240919484, "time": 362.92299107142856, "times": [362.9864196777344, 362.81781005859375, 362.9591064453125, 362.9585876464844, 363.1528625488281, 362.83740234375, 362.7487487792969], "compile_time": 1090.1779770001667, "verification_time": 0, "benchmark_time": 2544.6575780001695, "GB/s": 6.7716845183729575, "GB/s/W (Jetson)": 0.9421369558241521, "GPU (W) (Jetson)": 7.187579763760883, "GB/s/W (PS)": 0.8123959338114817, "GPU (W) (PS)": 8.335448562134658, "strategy_time": 0.02541699996072566, "framework_time": 3.436560999489302, "timestamp": "2023-11-03 11:49:16.587744+00:00"},
"4,240,1,3,5,0,0,0": {"block_size_x": 4, "block_size_y": 240, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6303013392857144, "tegra_power": 7.485039531818531, "ps_energy": 3.0745619860120184, "time": 374.55576869419644, "times": [375.8417663574219, 370.9716796875, 375.7299499511719, 375.8163146972656, 376.20379638671875, 367.465576171875, 379.8612976074219], "compile_time": 1097.7105809997738, "verification_time": 0, "benchmark_time": 2627.3904909999146, "GB/s": 6.561372712447771, "GB/s/W (Jetson)": 0.9343416145115093, "GPU (W) (Jetson)": 7.0224558240169745, "GB/s/W (PS)": 0.7993333720969232, "GPU (W) (PS)": 8.208555956115108, "strategy_time": 0.02703200016185292, "framework_time": 3.41656000000512, "timestamp": "2023-11-03 11:49:20.316346+00:00"},
"8,56,1,4,8,0,1,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6146763392857144, "tegra_power": 7.655195686044688, "ps_energy": 3.01062604011999, "time": 363.87354823521207, "times": [363.44451904296875, 364.24542236328125, 363.7953186035156, 364.1905212402344, 363.90802001953125, 363.7281188964844, 363.80291748046875], "compile_time": 1108.1452579996949, "verification_time": 0, "benchmark_time": 2551.0619629999383, "GB/s": 6.753994655339384, "GB/s/W (Jetson)": 0.9399251307224414, "GPU (W) (Jetson)": 7.185673022858912, "GB/s/W (PS)": 0.8163086239372497, "GPU (W) (PS)": 8.273824944741206, "strategy_time": 0.028125999961048365, "framework_time": 3.390935000425088, "timestamp": "2023-11-03 11:49:23.979352+00:00"},
"1,232,1,3,5,0,0,0": {"block_size_x": 1, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.2276785714285716, "tegra_power": 7.545149812568958, "ps_energy": 3.7610161880417894, "time": 450.44083077566967, "times": [450.3545837402344, 450.3656311035156, 450.4015197753906, 450.4744873046875, 450.7917785644531, 450.32666015625, 450.37115478515625], "compile_time": 1106.5216340002735, "verification_time": 0, "benchmark_time": 3159.0653580001344, "GB/s": 5.455988516333999, "GB/s/W (Jetson)": 0.7614141078838174, "GPU (W) (Jetson)": 7.165599454806158, "GB/s/W (PS)": 0.6534404206538589, "GPU (W) (PS)": 8.349634249553334, "strategy_time": 0.026666999929148005, "framework_time": 3.3168189993375563, "timestamp": "2023-11-03 11:49:28.248356+00:00"},
"2,80,1,3,3,0,0,0": {"block_size_x": 2, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6303013392857144, "tegra_power": 7.6247787615339675, "ps_energy": 3.038329909519754, "time": 367.1409345354353, "times": [366.92724609375, 366.8253173828125, 367.0654296875, 367.0817565917969, 368.6457824707031, 366.8617248535156, 366.57928466796875], "compile_time": 976.2307659998442, "verification_time": 0, "benchmark_time": 2576.240162999966, "GB/s": 6.693887193782256, "GB/s/W (Jetson)": 0.9343416145115093, "GPU (W) (Jetson)": 7.164282410006901, "GB/s/W (PS)": 0.8088654205390271, "GPU (W) (PS)": 8.275650094327752, "strategy_time": 0.04234400012137485, "framework_time": 4.259176000232401, "timestamp": "2023-11-03 11:49:31.805603+00:00"},
"4,192,1,3,4,0,0,0": {"block_size_x": 4, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5385044642857144, "tegra_power": 7.610342427806851, "ps_energy": 3.013077952783143, "time": 355.97225080217635, "times": [356.0881652832031, 356.0219421386719, 355.8562927246094, 355.91693115234375, 356.01739501953125, 356.0303039550781, 355.8747253417969], "compile_time": 967.4284960001387, "verification_time": 0, "benchmark_time": 2496.1245519998556, "GB/s": 6.903908926782487, "GB/s/W (Jetson)": 0.9681290833150141, "GPU (W) (Jetson)": 7.131186373559302, "GB/s/W (PS)": 0.8156443472462918, "GPU (W) (PS)": 8.464361887740496, "strategy_time": 0.043228999857092276, "framework_time": 4.606578000220907, "timestamp": "2023-11-03 11:49:35.274316+00:00"},
"1,120,1,4,3,1,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.939732142857143, "tegra_power": 7.6440122703507125, "ps_energy": 3.4021694562850047, "time": 405.4685712541853, "times": [405.2366638183594, 405.3627014160156, 405.4253234863281, 405.2878112792969, 405.6628112792969, 405.4841003417969, 405.8205871582031], "compile_time": 1101.2514839999312, "verification_time": 0, "benchmark_time": 2842.488026999945, "GB/s": 6.061135619952522, "GB/s/W (Jetson)": 0.8359945330296127, "GPU (W) (Jetson)": 7.250209637121902, "GB/s/W (PS)": 0.7223626076178973, "GPU (W) (PS)": 8.39071064314923, "strategy_time": 0.05546899956243578, "framework_time": 4.56334800037439, "timestamp": "2023-11-03 11:49:39.223405+00:00"},
"4,32,1,1,6,0,0,0": {"block_size_x": 4, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6171875, "tegra_power": 7.628861741792088, "ps_energy": 3.0374463777360297, "time": 364.37247576032365, "times": [364.4134826660156, 364.3677673339844, 364.3431701660156, 364.3257141113281, 364.4704284667969, 364.4478759765625, 364.2388916015625], "compile_time": 956.5298360002998, "verification_time": 0, "benchmark_time": 2554.4927170003575, "GB/s": 6.744746553294974, "GB/s/W (Jetson)": 0.9390232835820894, "GPU (W) (Jetson)": 7.182725573710813, "GB/s/W (PS)": 0.8091007031478132, "GPU (W) (PS)": 8.33610269655493, "strategy_time": 0.029114999961166177, "framework_time": 3.4941649996653723, "timestamp": "2023-11-03 11:49:42.738082+00:00"},
"4,160,1,3,4,0,1,0": {"block_size_x": 4, "block_size_y": 160, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5440848214285716, "tegra_power": 7.6114378850181055, "ps_energy": 3.0080737044554553, "time": 357.57653372628346, "times": [357.3425598144531, 357.38714599609375, 357.596923828125, 357.7518615722656, 357.56396484375, 357.6632385253906, 357.73004150390625], "compile_time": 1102.672325000185, "verification_time": 0, "benchmark_time": 2508.9572460001364, "GB/s": 6.872934234216935, "GB/s/W (Jetson)": 0.9660055275279665, "GPU (W) (Jetson)": 7.1147980403434685, "GB/s/W (PS)": 0.8170012577683476, "GPU (W) (PS)": 8.412391252604026, "strategy_time": 0.1069280001502193, "framework_time": 6.817704999320995, "timestamp": "2023-11-03 11:49:46.356765+00:00"},
"2,136,1,1,8,0,1,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6512276785714284, "tegra_power": 7.516918338895583, "ps_energy": 3.0753712996665854, "time": 376.29981776646207, "times": [376.22540283203125, 376.1927490234375, 376.26519775390625, 376.3047790527344, 376.25494384765625, 376.4350891113281, 376.4205627441406], "compile_time": 1100.6726020000315, "verification_time": 0, "benchmark_time": 2637.3991039999964, "GB/s": 6.53096250374808, "GB/s/W (Jetson)": 0.9269667859398021, "GPU (W) (Jetson)": 7.045519432637154, "GB/s/W (PS)": 0.7991230198013616, "GPU (W) (PS)": 8.172662208343699, "strategy_time": 0.030885999876772985, "framework_time": 6.414520000362245, "timestamp": "2023-11-03 11:49:50.101369+00:00"},
"1,248,1,4,1,0,0,0": {"block_size_x": 1, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7042410714285716, "tegra_power": 7.55156555158147, "ps_energy": 3.1391734896761982, "time": 382.0581970214844, "times": [382.0260925292969, 382.1513977050781, 382.1290588378906, 382.13134765625, 382.0237121582031, 381.94354248046875, 382.0022277832031], "compile_time": 1091.4275129998714, "verification_time": 0, "benchmark_time": 2677.8524380001727, "GB/s": 6.432527869207845, "GB/s/W (Jetson)": 0.9087947172926123, "GPU (W) (Jetson)": 7.078086774503895, "GB/s/W (PS)": 0.7828812291140679, "GPU (W) (PS)": 8.216479882251218, "strategy_time": 0.02687500000320142, "framework_time": 3.4016120002888783, "timestamp": "2023-11-03 11:49:53.874135+00:00"},
"4,168,1,3,5,0,0,0": {"block_size_x": 4, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.615513392857143, "tegra_power": 7.642016175556786, "ps_energy": 3.042876001163677, "time": 362.89674159458707, "times": [362.70068359375, 363.05938720703125, 362.7204284667969, 362.75433349609375, 363.02099609375, 362.81707763671875, 363.20428466796875], "compile_time": 1103.2295539998813, "verification_time": 0, "benchmark_time": 2543.6685930003478, "GB/s": 6.7721743358763105, "GB/s/W (Jetson)": 0.93962432259441, "GPU (W) (Jetson)": 7.207321237893847, "GB/s/W (PS)": 0.8076569663240132, "GPU (W) (PS)": 8.384963689100989, "strategy_time": 0.0276040000244393, "framework_time": 3.2560889994783793, "timestamp": "2023-11-03 11:49:57.524373+00:00"},
"16,40,1,1,6,0,0,0": {"block_size_x": 16, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5398995535714284, "tegra_power": 7.597429187230799, "ps_energy": 2.973192884798794, "time": 356.01664079938615, "times": [356.17230224609375, 355.99102783203125, 355.9184875488281, 355.8399963378906, 356.1499938964844, 355.97161865234375, 356.07305908203125], "compile_time": 954.5586859999275, "verification_time": 0, "benchmark_time": 2496.201222000309, "GB/s": 6.903048111688821, "GB/s/W (Jetson)": 0.9675973195649785, "GPU (W) (Jetson)": 7.134215827295137, "GB/s/W (PS)": 0.8265861298690395, "GPU (W) (PS)": 8.351275036253643, "strategy_time": 0.02671899983397452, "framework_time": 2.6769659998535644, "timestamp": "2023-11-03 11:50:00.977891+00:00"},
"2,192,1,3,4,0,1,0": {"block_size_x": 2, "block_size_y": 192, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.550502232142857, "tegra_power": 7.601238963829727, "ps_energy": 2.9632660102127244, "time": 356.8634556361607, "times": [356.9276428222656, 356.8765563964844, 356.7870788574219, 356.8592224121094, 356.8074035644531, 356.861083984375, 356.9252014160156], "compile_time": 965.0598749999517, "verification_time": 0, "benchmark_time": 2503.6919949998264, "GB/s": 6.886667606855323, "GB/s/W (Jetson)": 0.9635749261568755, "GPU (W) (Jetson)": 7.146997519250656, "GB/s/W (PS)": 0.8293551748408763, "GPU (W) (PS)": 8.303640968028722, "strategy_time": 0.04171899990979, "framework_time": 3.782451000461151, "timestamp": "2023-11-03 11:50:04.450524+00:00"},
"1,224,1,2,7,0,1,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5574776785714284, "tegra_power": 7.583660243697298, "ps_energy": 2.9667293148086173, "time": 360.8679722377232, "times": [360.83905029296875, 360.79534912109375, 360.8627624511719, 360.8439025878906, 361.0885009765625, 360.9136962890625, 360.7325439453125], "compile_time": 1171.2158370000907, "verification_time": 0, "benchmark_time": 2529.749599999832, "GB/s": 6.810246929813561, "GB/s/W (Jetson)": 0.9609468034038839, "GPU (W) (Jetson)": 7.087017622297275, "GB/s/W (PS)": 0.8283870010427759, "GPU (W) (PS)": 8.221093427638053, "strategy_time": 0.0453659999948286, "framework_time": 3.928806000203622, "timestamp": "2023-11-03 11:50:08.155861+00:00"},
"2,56,1,2,4,1,0,0": {"block_size_x": 2, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8351004464285716, "tegra_power": 7.512818498075004, "ps_energy": 3.263478780377357, "time": 396.88534109933033, "times": [396.91546630859375, 396.8900146484375, 396.84979248046875, 396.98834228515625, 397.0393371582031, 396.71881103515625, 396.7956237792969], "compile_time": 1143.250475000059, "verification_time": 0, "benchmark_time": 2782.1417440000005, "GB/s": 6.1922166064201525, "GB/s/W (Jetson)": 0.8668475937407734, "GPU (W) (Jetson)": 7.143374049985429, "GB/s/W (PS)": 0.7530614308807692, "GPU (W) (PS)": 8.222724405335473, "strategy_time": 0.027499999760038918, "framework_time": 2.945408000414318, "timestamp": "2023-11-03 11:50:12.084290+00:00"},
"4,256,1,3,8,1,1,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.499720982142857, "tegra_power": 7.575162854647039, "ps_energy": 2.910677324536664, "time": 353.1004943847656, "times": [353.0849914550781, 353.0042724609375, 353.0896301269531, 353.2662353515625, 353.0172424316406, 353.12774658203125, 353.11334228515625], "compile_time": 1104.2643299997508, "verification_time": 0, "benchmark_time": 2475.3201859998626, "GB/s": 6.96005822444986, "GB/s/W (Jetson)": 0.9831497265319789, "GPU (W) (Jetson)": 7.079347160072134, "GB/s/W (PS)": 0.8443395560485952, "GPU (W) (PS)": 8.243198100325978, "strategy_time": 0.02614599998196354, "framework_time": 3.045200000542536, "timestamp": "2023-11-03 11:50:15.667000+00:00"},
"4,80,1,2,6,1,1,0": {"block_size_x": 4, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.4857700892857144, "tegra_power": 7.567578780700975, "ps_energy": 2.8860001202836947, "time": 352.4951956612723, "times": [352.4093322753906, 352.4761962890625, 352.6128234863281, 352.5232238769531, 352.4369812011719, 352.4635314941406, 352.5442810058594], "compile_time": 1125.3322340003251, "verification_time": 0, "benchmark_time": 2470.902400000341, "GB/s": 6.972009917439024, "GB/s/W (Jetson)": 0.9886674598720394, "GPU (W) (Jetson)": 7.051926153553585, "GB/s/W (PS)": 0.8515592160676754, "GPU (W) (PS)": 8.187345971821346, "strategy_time": 0.02849000020432868, "framework_time": 3.384215998721629, "timestamp": "2023-11-03 11:50:19.266705+00:00"},
"4,56,1,4,6,0,1,0": {"block_size_x": 4, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5775669642857144, "tegra_power": 7.583448050974563, "ps_energy": 3.022669579057817, "time": 360.93775721958707, "times": [360.520263671875, 362.0670166015625, 360.67694091796875, 360.90972900390625, 360.7392272949219, 361.0132141113281, 360.6379089355469], "compile_time": 1116.1354270002448, "verification_time": 0, "benchmark_time": 2532.335102000161, "GB/s": 6.80893021259853, "GB/s/W (Jetson)": 0.9534572851266506, "GPU (W) (Jetson)": 7.141305980680696, "GB/s/W (PS)": 0.8130561200030496, "GPU (W) (PS)": 8.37448983542857, "strategy_time": 0.039010999898891896, "framework_time": 4.197248999844305, "timestamp": "2023-11-03 11:50:22.919471+00:00"},
"8,64,1,1,1,0,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5150669642857144, "tegra_power": 7.548943185820945, "ps_energy": 2.974425170050381, "time": 356.47218540736606, "times": [356.3843688964844, 356.49578857421875, 356.4527587890625, 356.39764404296875, 356.608642578125, 356.52459716796875, 356.4414978027344], "compile_time": 1097.4231709997184, "verification_time": 0, "benchmark_time": 2505.838869999934, "GB/s": 6.894226536052247, "GB/s/W (Jetson)": 0.9771509207898823, "GPU (W) (Jetson)": 7.055436769664284, "GB/s/W (PS)": 0.8262436805422719, "GPU (W) (PS)": 8.34405962600222, "strategy_time": 0.028385999939928297, "framework_time": 3.423122000640433, "timestamp": "2023-11-03 11:50:26.526254+00:00"},
"1,112,1,3,6,1,0,0": {"block_size_x": 1, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.0108816964285716, "tegra_power": 7.693520269208378, "ps_energy": 3.4495445026945424, "time": 410.0328848702567, "times": [410.0508728027344, 410.0911560058594, 410.02520751953125, 410.0569763183594, 410.0865478515625, 409.7580261230469, 410.1614074707031], "compile_time": 967.926597999849, "verification_time": 0, "benchmark_time": 2873.854873000255, "GB/s": 5.993665607522279, "GB/s/W (Jetson)": 0.8162393105365581, "GPU (W) (Jetson)": 7.343024931722928, "GB/s/W (PS)": 0.7124418885102931, "GPU (W) (PS)": 8.412848407966237, "strategy_time": 0.026094000077137025, "framework_time": 3.84370299980219, "timestamp": "2023-11-03 11:50:30.371987+00:00"},
"1,224,1,2,5,0,1,0": {"block_size_x": 1, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 5, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.536830357142857, "tegra_power": 7.543341702552632, "ps_energy": 2.9888161067356123, "time": 359.4529593331473, "times": [359.4864501953125, 359.5938415527344, 359.51031494140625, 359.44879150390625, 359.4119873046875, 359.3326721191406, 359.38665771484375], "compile_time": 1161.346013000184, "verification_time": 0, "benchmark_time": 2520.3606159998344, "GB/s": 6.83705596570775, "GB/s/W (Jetson)": 0.9687679718433787, "GPU (W) (Jetson)": 7.057475230831744, "GB/s/W (PS)": 0.8222653760669781, "GPU (W) (PS)": 8.314901933984427, "strategy_time": 0.02557299967520521, "framework_time": 3.0217110002013214, "timestamp": "2023-11-03 11:50:34.056826+00:00"},
"1,136,1,2,3,0,0,0": {"block_size_x": 1, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 3.302455357142857, "tegra_power": 7.483488887437216, "ps_energy": 3.8174519452181164, "time": 464.19264439174106, "times": [463.9248962402344, 464.2785339355469, 464.2618103027344, 464.12847900390625, 464.2659912109375, 464.2239990234375, 464.2648010253906], "compile_time": 981.7621010001858, "verification_time": 0, "benchmark_time": 3254.616923999947, "GB/s": 5.2943536044616515, "GB/s/W (Jetson)": 0.7441735721527543, "GPU (W) (Jetson)": 7.114406910670157, "GB/s/W (PS)": 0.6437802060818295, "GPU (W) (PS)": 8.223852728688426, "strategy_time": 0.04448000026968657, "framework_time": 4.299541999444045, "timestamp": "2023-11-03 11:50:38.298046+00:00"},
"2,248,1,3,5,1,0,0": {"block_size_x": 2, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7631138392857144, "tegra_power": 7.562055009839191, "ps_energy": 3.2939175281644566, "time": 390.67276436941967, "times": [390.5367126464844, 390.60797119140625, 390.79937744140625, 390.5690612792969, 390.7639465332031, 390.63775634765625, 390.7945251464844], "compile_time": 1101.1941379997552, "verification_time": 0, "benchmark_time": 2738.648541999737, "GB/s": 6.290686795038766, "GB/s/W (Jetson)": 0.8894313238412601, "GPU (W) (Jetson)": 7.07270660074199, "GB/s/W (PS)": 0.7461024688646358, "GPU (W) (PS)": 8.431397907865756, "strategy_time": 0.04406300013215514, "framework_time": 4.44240900060322, "timestamp": "2023-11-03 11:50:42.142882+00:00"},
"4,256,1,2,6,0,0,0": {"block_size_x": 4, "block_size_y": 256, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.597935267857143, "tegra_power": 7.504787397030326, "ps_energy": 2.987498057766061, "time": 366.8378383091518, "times": [366.614013671875, 366.78619384765625, 366.8486328125, 366.79693603515625, 366.9528503417969, 366.9252014160156, 366.9410400390625], "compile_time": 1143.6517790002654, "verification_time": 0, "benchmark_time": 2571.183809000104, "GB/s": 6.699417953523275, "GB/s/W (Jetson)": 0.9459819997852003, "GPU (W) (Jetson)": 7.081971913888934, "GB/s/W (PS)": 0.8226281498698952, "GPU (W) (PS)": 8.143920135218858, "strategy_time": 0.06765699981770013, "framework_time": 4.069903000072372, "timestamp": "2023-11-03 11:50:45.861934+00:00"},
"1,64,1,4,4,1,1,0": {"block_size_x": 1, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5616629464285716, "tegra_power": 7.542460948853294, "ps_energy": 3.0420492217594335, "time": 363.97320556640625, "times": [363.63787841796875, 364.0361328125, 364.0718688964844, 363.9562072753906, 363.67120361328125, 363.9862365722656, 364.4529113769531], "compile_time": 1109.93232599958, "verification_time": 0, "benchmark_time": 2552.2268030003943, "GB/s": 6.752145384371199, "GB/s/W (Jetson)": 0.9593767999128634, "GPU (W) (Jetson)": 7.038053645850589, "GB/s/W (PS)": 0.8078764743256175, "GPU (W) (PS)": 8.357893315321029, "strategy_time": 0.028021000161970733, "framework_time": 3.5150520002389385, "timestamp": "2023-11-03 11:50:49.527693+00:00"},
"8,120,1,1,2,0,1,0": {"block_size_x": 8, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.494140625, "tegra_power": 7.516806212293638, "ps_energy": 2.962446188276122, "time": 355.2292742047991, "times": [355.0910949707031, 355.22515869140625, 355.20166015625, 355.1033935546875, 355.2717590332031, 355.45697021484375, 355.2548828125], "compile_time": 1147.972923999987, "verification_time": 0, "benchmark_time": 2490.330060999895, "GB/s": 6.918348735479295, "GB/s/W (Jetson)": 0.9853494126859826, "GPU (W) (Jetson)": 7.021213638947058, "GB/s/W (PS)": 0.8295846890741676, "GPU (W) (PS)": 8.33953281273827, "strategy_time": 0.027655999929265818, "framework_time": 6.771139000193216, "timestamp": "2023-11-03 11:50:53.172851+00:00"},
"4,216,1,2,8,0,1,0": {"block_size_x": 4, "block_size_y": 216, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5708705357142856, "tegra_power": 7.391914737396582, "ps_energy": 3.012700047302912, "time": 370.16304670061385, "times": [368.5580139160156, 372.0087585449219, 368.8159484863281, 372.13531494140625, 368.88287353515625, 372.0682678222656, 368.6721496582031], "compile_time": 1133.0380139997942, "verification_time": 0, "benchmark_time": 2595.3462560000844, "GB/s": 6.639236471347977, "GB/s/W (Jetson)": 0.9559407857607988, "GPU (W) (Jetson)": 6.9452382095655105, "GB/s/W (PS)": 0.8157466596119121, "GPU (W) (PS)": 8.138846041375842, "strategy_time": 0.027499999760038918, "framework_time": 2.9599900003631774, "timestamp": "2023-11-03 11:50:56.904665+00:00"},
"4,96,1,4,3,0,0,0": {"block_size_x": 4, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6010044642857144, "tegra_power": 7.602022689594705, "ps_energy": 3.073476155946472, "time": 367.2509024483817, "times": [367.20281982421875, 367.3606262207031, 367.20166015625, 367.4120178222656, 367.2279052734375, 367.1606750488281, 367.19061279296875], "compile_time": 1120.039486999758, "verification_time": 0, "benchmark_time": 2574.4104709997373, "GB/s": 6.691882807137346, "GB/s/W (Jetson)": 0.9448657369663161, "GPU (W) (Jetson)": 7.0823637108728255, "GB/s/W (PS)": 0.7996157690194234, "GPU (W) (PS)": 8.368872984263012, "strategy_time": 0.026770999738801038, "framework_time": 2.6844650005841686, "timestamp": "2023-11-03 11:51:00.601902+00:00"},
"1,120,1,4,3,0,0,0": {"block_size_x": 1, "block_size_y": 120, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9341517857142856, "tegra_power": 7.646325435176721, "ps_energy": 3.401948833890596, "time": 405.4594508579799, "times": [405.3017578125, 405.420166015625, 405.430419921875, 405.3641662597656, 405.4713134765625, 405.5494384765625, 405.67889404296875], "compile_time": 1101.3881170001696, "verification_time": 0, "benchmark_time": 2841.6807799999333, "GB/s": 6.061271959007368, "GB/s/W (Jetson)": 0.8375844807911753, "GPU (W) (Jetson)": 7.2366096770106605, "GB/s/W (PS)": 0.7224094541096894, "GPU (W) (PS)": 8.390355254247595, "strategy_time": 0.02718799987633247, "framework_time": 8.525124000243522, "timestamp": "2023-11-03 11:51:04.553581+00:00"},
"4,72,1,4,1,1,0,0": {"block_size_x": 4, "block_size_y": 72, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 1, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5239955357142856, "tegra_power": 7.558286055206062, "ps_energy": 2.9448040643546847, "time": 356.79799107142856, "times": [356.7160949707031, 356.6221923828125, 356.8241271972656, 356.8930358886719, 356.7399597167969, 356.9388122558594, 356.8517150878906], "compile_time": 1100.8204469999328, "verification_time": 0, "benchmark_time": 2501.172249999854, "GB/s": 6.8879311585249505, "GB/s/W (Jetson)": 0.9736942737121379, "GPU (W) (Jetson)": 7.074018348968222, "GB/s/W (PS)": 0.834554675385016, "GPU (W) (PS)": 8.253421089933084, "strategy_time": 0.028125999961048365, "framework_time": 2.966552000543743, "timestamp": "2023-11-03 11:51:08.158627+00:00"},
"2,96,1,2,7,0,0,0": {"block_size_x": 2, "block_size_y": 96, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.937220982142857, "tegra_power": 7.4191997600739175, "ps_energy": 3.4531387479115176, "time": 419.61597115652904, "times": [419.3056335449219, 419.92431640625, 419.6020202636719, 419.75067138671875, 419.9998474121094, 419.3932189941406, 419.3360900878906], "compile_time": 1000.7725899999969, "verification_time": 0, "benchmark_time": 2941.2541700003203, "GB/s": 5.8567837473546565, "GB/s/W (Jetson)": 0.8367092618979766, "GPU (W) (Jetson)": 6.99978357365046, "GB/s/W (PS)": 0.7117003339313758, "GPU (W) (PS)": 8.22928340500032, "strategy_time": 0.027709000278264284, "framework_time": 3.403172999696835, "timestamp": "2023-11-03 11:51:12.104144+00:00"},
"2,40,1,2,3,0,1,0": {"block_size_x": 2, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 3, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.9444754464285716, "tegra_power": 7.462324865045962, "ps_energy": 3.4580993856694215, "time": 420.2990243094308, "times": [420.2729797363281, 420.17431640625, 420.13885498046875, 420.41693115234375, 420.4150390625, 420.3529052734375, 420.3221435546875], "compile_time": 1138.7636929998735, "verification_time": 0, "benchmark_time": 2946.6574600000968, "GB/s": 5.8472655368114195, "GB/s/W (Jetson)": 0.8346478157869799, "GPU (W) (Jetson)": 7.005668050898929, "GB/s/W (PS)": 0.7106794009982613, "GPU (W) (PS)": 8.22771214220929, "strategy_time": 0.02677100019354839, "framework_time": 3.0719189999217633, "timestamp": "2023-11-03 11:51:16.192724+00:00"},
"16,56,1,2,4,1,1,0": {"block_size_x": 16, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 4, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.521763392857143, "tegra_power": 7.570004139809318, "ps_energy": 2.9294801943823194, "time": 355.01464407784596, "times": [354.9411926269531, 355.02618408203125, 355.0782165527344, 354.9746398925781, 354.9440612792969, 355.04864501953125, 355.0895690917969], "compile_time": 998.6984340002891, "verification_time": 0, "benchmark_time": 2488.106188999609, "GB/s": 6.922531340597626, "GB/s/W (Jetson)": 0.9745561407391015, "GPU (W) (Jetson)": 7.103265836843008, "GB/s/W (PS)": 0.8389201622570398, "GPU (W) (PS)": 8.251716494658053, "strategy_time": 0.026355000045441557, "framework_time": 2.7202999999644817, "timestamp": "2023-11-03 11:51:19.682645+00:00"},
"1,80,1,3,8,0,0,0": {"block_size_x": 1, "block_size_y": 80, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7720424107142856, "tegra_power": 7.6110589665612105, "ps_energy": 3.2077936677700825, "time": 382.31136213030135, "times": [381.9336853027344, 383.0533447265625, 382.2394714355469, 381.49395751953125, 382.8155822753906, 382.319580078125, 382.32391357421875], "compile_time": 1110.522544000105, "verification_time": 0, "benchmark_time": 2690.5943599999773, "GB/s": 6.428268274073392, "GB/s/W (Jetson)": 0.8865665223955712, "GPU (W) (Jetson)": 7.250745557934801, "GB/s/W (PS)": 0.7661340642611891, "GPU (W) (PS)": 8.39052663749184, "strategy_time": 0.02614599998196354, "framework_time": 2.734675999818137, "timestamp": "2023-11-03 11:51:23.486577+00:00"},
"4,248,1,3,8,0,0,0": {"block_size_x": 4, "block_size_y": 248, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5619419642857144, "tegra_power": 7.432846083537283, "ps_energy": 3.0108027245644604, "time": 368.9067862374442, "times": [368.5952453613281, 369.1707763671875, 368.5626525878906, 369.322509765625, 368.6709289550781, 369.2930603027344, 368.7323303222656], "compile_time": 1093.2731220000278, "verification_time": 0, "benchmark_time": 2585.8794509999825, "GB/s": 6.661845462550487, "GB/s/W (Jetson)": 0.9592723153996949, "GPU (W) (Jetson)": 6.944686462440783, "GB/s/W (PS)": 0.8162607200893621, "GPU (W) (PS)": 8.16141864797949, "strategy_time": 0.02588600000308361, "framework_time": 3.0379610002455593, "timestamp": "2023-11-03 11:51:27.169187+00:00"},
"4,224,1,2,2,0,0,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5496651785714284, "tegra_power": 7.524642854517161, "ps_energy": 2.934165938173724, "time": 362.28538295200894, "times": [361.6230773925781, 361.9465637207031, 361.4449462890625, 367.0217590332031, 361.2988586425781, 361.5373840332031, 361.1250915527344], "compile_time": 1154.8693179997827, "verification_time": 0, "benchmark_time": 2540.281332000177, "GB/s": 6.783602418553972, "GB/s/W (Jetson)": 0.9638912672357189, "GPU (W) (Jetson)": 7.03772577793782, "GB/s/W (PS)": 0.837580440842297, "GPU (W) (PS)": 8.09904587997801, "strategy_time": 0.025832999654085143, "framework_time": 2.903377000166074, "timestamp": "2023-11-03 11:51:30.867350+00:00"},
"2,176,1,1,7,0,0,0": {"block_size_x": 2, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 7, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7734375, "tegra_power": 7.627354982403942, "ps_energy": 3.2137975403030787, "time": 385.7301330566406, "times": [385.4122314453125, 385.4178771972656, 385.9859924316406, 385.76104736328125, 385.7254638671875, 386.0199890136719, 385.788330078125], "compile_time": 1096.1378930001047, "verification_time": 0, "benchmark_time": 2704.304779999802, "GB/s": 6.371293786475131, "GB/s/W (Jetson)": 0.8861205633802817, "GPU (W) (Jetson)": 7.190098108287403, "GB/s/W (PS)": 0.7647028069379364, "GPU (W) (PS)": 8.331725382292507, "strategy_time": 0.02630200015119044, "framework_time": 3.291194000212272, "timestamp": "2023-11-03 11:51:34.671497+00:00"},
"2,112,1,3,1,0,0,0": {"block_size_x": 2, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 1, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5320870535714284, "tegra_power": 7.57388455352691, "ps_energy": 2.9724991068937276, "time": 357.59163556780135, "times": [357.3876037597656, 357.5001525878906, 357.7572937011719, 357.3770751953125, 357.6298522949219, 357.90087890625, 357.5885925292969], "compile_time": 1118.5511280000355, "verification_time": 0, "benchmark_time": 2507.6621920002253, "GB/s": 6.872643975851682, "GB/s/W (Jetson)": 0.9705827438016529, "GPU (W) (Jetson)": 7.080945977807501, "GB/s/W (PS)": 0.826779054130045, "GPU (W) (PS)": 8.312552115973993, "strategy_time": 0.041355000121257035, "framework_time": 3.145253999718989, "timestamp": "2023-11-03 11:51:38.300968+00:00"},
"8,32,1,2,7,1,1,0": {"block_size_x": 8, "block_size_y": 32, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 7, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.505859375, "tegra_power": 7.551945297026064, "ps_energy": 2.8927437293891023, "time": 353.7992902483259, "times": [353.7474365234375, 353.8041687011719, 353.7073059082031, 353.7462463378906, 353.9302978515625, 353.8843078613281, 353.7752685546875], "compile_time": 1151.986448000116, "verification_time": 0, "benchmark_time": 2479.8569370000223, "GB/s": 6.946311277999034, "GB/s/W (Jetson)": 0.9807413873733436, "GPU (W) (Jetson)": 7.082714533545781, "GB/s/W (PS)": 0.8495740479987153, "GPU (W) (PS)": 8.176228186774296, "strategy_time": 0.047032000111357775, "framework_time": 3.5764569997809303, "timestamp": "2023-11-03 11:51:41.936874+00:00"},
"1,152,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 152, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8247767857142856, "tegra_power": 7.551654858180773, "ps_energy": 3.28891337267383, "time": 396.4046718052455, "times": [396.7676696777344, 396.30511474609375, 396.8489685058594, 396.3879089355469, 395.7322998046875, 397.13494873046875, 395.6557922363281], "compile_time": 1099.651053999878, "verification_time": 0, "benchmark_time": 2778.1370550001157, "GB/s": 6.199725116275683, "GB/s/W (Jetson)": 0.8700156459897274, "GPU (W) (Jetson)": 7.125992670192607, "GB/s/W (PS)": 0.7472376805114855, "GPU (W) (PS)": 8.296858252694056, "strategy_time": 0.026824000087799504, "framework_time": 2.6649329997781024, "timestamp": "2023-11-03 11:51:45.817418+00:00"},
"2,232,1,4,2,1,1,0": {"block_size_x": 2, "block_size_y": 232, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.633091517857143, "tegra_power": 7.592092901597689, "ps_energy": 3.0384772617487346, "time": 367.00425938197543, "times": [367.0073547363281, 367.10858154296875, 366.94744873046875, 367.0205078125, 366.991455078125, 367.0191650390625, 366.935302734375], "compile_time": 1171.5293229999588, "verification_time": 0, "benchmark_time": 2572.563663999972, "GB/s": 6.696380047846112, "GB/s/W (Jetson)": 0.9333515312069514, "GPU (W) (Jetson)": 7.174553020968183, "GB/s/W (PS)": 0.8088261942712639, "GPU (W) (PS)": 8.279133508873826, "strategy_time": 1.0811610000018845, "framework_time": 11.305059000278561, "timestamp": "2023-11-03 11:51:49.573969+00:00"},
"4,48,1,2,8,0,0,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5398995535714284, "tegra_power": 7.609655726171762, "ps_energy": 2.9418731870765833, "time": 355.3201424734933, "times": [355.0569763183594, 355.2930603027344, 355.4608459472656, 355.5293884277344, 355.3545227050781, 355.1795349121094, 355.3666687011719], "compile_time": 990.7337450003979, "verification_time": 0, "benchmark_time": 2492.0641600001545, "GB/s": 6.9165794623740915, "GB/s/W (Jetson)": 0.9675973195649785, "GPU (W) (Jetson)": 7.148200312795112, "GB/s/W (PS)": 0.8353861107256569, "GPU (W) (PS)": 8.279500189877487, "strategy_time": 0.026043000161735108, "framework_time": 2.608110999517521, "timestamp": "2023-11-03 11:51:53.059455+00:00"},
"2,136,1,2,6,1,0,0": {"block_size_x": 2, "block_size_y": 136, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.829799107142857, "tegra_power": 7.603321499787148, "ps_energy": 3.304557069299335, "time": 397.0881565638951, "times": [397.09686279296875, 397.10821533203125, 396.9160461425781, 397.0306396484375, 397.1849060058594, 397.0649108886719, 397.21551513671875], "compile_time": 1158.1990679997034, "verification_time": 0, "benchmark_time": 2782.9693260000568, "GB/s": 6.189053889862236, "GB/s/W (Jetson)": 0.8684715440741471, "GPU (W) (Jetson)": 7.126374988440424, "GB/s/W (PS)": 0.7437002746395553, "GPU (W) (PS)": 8.321973382169109, "strategy_time": 0.02703199970710557, "framework_time": 2.7508210005180445, "timestamp": "2023-11-03 11:51:57.003456+00:00"},
"4,224,1,4,5,1,1,0": {"block_size_x": 4, "block_size_y": 224, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.545200892857143, "tegra_power": 7.58282566471068, "ps_energy": 2.952889229730707, "time": 357.28538295200894, "times": [357.21881103515625, 357.48394775390625, 357.27423095703125, 357.3531799316406, 357.2804260253906, 357.18365478515625, 357.20343017578125], "compile_time": 1109.3891420000546, "verification_time": 0, "benchmark_time": 2505.1203670000177, "GB/s": 6.878534967466352, "GB/s/W (Jetson)": 0.9655819337864503, "GPU (W) (Jetson)": 7.1237196210711415, "GB/s/W (PS)": 0.8322696209719063, "GPU (W) (PS)": 8.264791594139588, "strategy_time": 0.028178000320622232, "framework_time": 3.0807209996055462, "timestamp": "2023-11-03 11:52:00.621534+00:00"},
"1,176,1,1,4,0,1,0": {"block_size_x": 1, "block_size_y": 176, "block_size_z": 1, "tile_size_x": 1, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.7109375, "tegra_power": 7.4741160220132645, "ps_energy": 3.1206300548167616, "time": 383.9965253557478, "times": [382.9770812988281, 383.0631103515625, 383.0377502441406, 390.1856689453125, 383.13739013671875, 382.85186767578125, 382.7228088378906], "compile_time": 1098.6024710000493, "verification_time": 0, "benchmark_time": 2692.297475000032, "GB/s": 6.400057911261549, "GB/s/W (Jetson)": 0.9065498559077809, "GPU (W) (Jetson)": 7.0597969538617384, "GB/s/W (PS)": 0.7875332727141559, "GPU (W) (PS)": 8.126714302754955, "strategy_time": 0.024896000013541197, "framework_time": 2.7127479997943738, "timestamp": "2023-11-03 11:52:04.415246+00:00"},
"4,184,1,3,6,0,1,0": {"block_size_x": 4, "block_size_y": 184, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5965401785714284, "tegra_power": 7.451489664245101, "ps_energy": 3.0706685019171607, "time": 371.28869192940846, "times": [369.9358825683594, 372.78485107421875, 370.07965087890625, 372.86474609375, 370.16259765625, 372.9436950683594, 370.2494201660156], "compile_time": 1123.1635480003206, "verification_time": 0, "benchmark_time": 2603.0223249999835, "GB/s": 6.61910813181257, "GB/s/W (Jetson)": 0.9464902643455835, "GPU (W) (Jetson)": 6.993318770573001, "GB/s/W (PS)": 0.8003468946470796, "GPU (W) (PS)": 8.270299011694581, "strategy_time": 0.028228999781276798, "framework_time": 4.110268999738764, "timestamp": "2023-11-03 11:52:08.145639+00:00"},
"8,56,1,4,8,1,0,0": {"block_size_x": 8, "block_size_y": 56, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.6046316964285716, "tegra_power": 7.596834929144236, "ps_energy": 3.0264382820766644, "time": 365.2553056989397, "times": [365.5107421875, 364.3211975097656, 365.8045349121094, 364.9462585449219, 364.7126159667969, 365.8085021972656, 365.68328857421875], "compile_time": 1112.4880249999478, "verification_time": 0, "benchmark_time": 2560.753477000162, "GB/s": 6.728444355646587, "GB/s/W (Jetson)": 0.9435499089448312, "GPU (W) (Jetson)": 7.130989353992928, "GB/s/W (PS)": 0.8120436536091057, "GPU (W) (PS)": 8.285816071269323, "strategy_time": 0.02776099972834345, "framework_time": 2.954365000277903, "timestamp": "2023-11-03 11:52:11.822355+00:00"},
"4,88,1,2,2,1,0,0": {"block_size_x": 4, "block_size_y": 88, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.498325892857143, "tegra_power": 7.642811841183326, "ps_energy": 2.9018668506282017, "time": 352.04442051478793, "times": [352.1380310058594, 352.0215148925781, 352.03668212890625, 352.08905029296875, 351.9394836425781, 352.0708312988281, 352.0153503417969], "compile_time": 1006.2247740002022, "verification_time": 0, "benchmark_time": 2468.014997999944, "GB/s": 6.980937224928314, "GB/s/W (Jetson)": 0.9836987268259995, "GPU (W) (Jetson)": 7.096621185485309, "GB/s/W (PS)": 0.846903089115882, "GPU (W) (PS)": 8.24289970676103, "strategy_time": 0.029427999834297225, "framework_time": 3.5686969999915163, "timestamp": "2023-11-03 11:52:15.300287+00:00"},
"4,112,1,2,2,0,0,0": {"block_size_x": 4, "block_size_y": 112, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 2, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5025111607142856, "tegra_power": 7.6407197507655065, "ps_energy": 2.960744793717043, "time": 352.12085396902904, "times": [352.0282897949219, 351.91229248046875, 351.97149658203125, 352.16650390625, 352.16583251953125, 352.28790283203125, 352.31365966796875], "compile_time": 1157.03177999967, "verification_time": 0, "benchmark_time": 2476.9807929997114, "GB/s": 6.979421901027649, "GB/s/W (Jetson)": 0.9820535622700413, "GPU (W) (Jetson)": 7.1069666351950715, "GB/s/W (PS)": 0.8300614106339864, "GPU (W) (PS)": 8.408319928638639, "strategy_time": 0.02817699987645028, "framework_time": 2.972024000428064, "timestamp": "2023-11-03 11:52:18.937683+00:00"},
"4,64,1,3,5,1,0,0": {"block_size_x": 4, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.560267857142857, "tegra_power": 7.582892692977142, "ps_energy": 2.985553300765397, "time": 359.68821498325894, "times": [359.75213623046875, 359.76409912109375, 359.4747314453125, 359.58172607421875, 359.5442810058594, 359.8460388183594, 359.8544921875], "compile_time": 1096.7037740001615, "verification_time": 0, "benchmark_time": 2522.150128999783, "GB/s": 6.832584159351411, "GB/s/W (Jetson)": 0.9598995640802092, "GPU (W) (Jetson)": 7.118019858565621, "GB/s/W (PS)": 0.8231640009139856, "GPU (W) (PS)": 8.300392329796946, "strategy_time": 0.025625000034779077, "framework_time": 2.3864929999035667, "timestamp": "2023-11-03 11:52:22.559008+00:00"},
"8,40,1,3,5,1,0,0": {"block_size_x": 8, "block_size_y": 40, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 5, "tile_stride_x": 1, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.566127232142857, "tegra_power": 7.586797242631507, "ps_energy": 2.9718524302791463, "time": 360.27811540876115, "times": [360.1596374511719, 360.6156311035156, 360.2239685058594, 360.2153015136719, 360.22650146484375, 360.2565002441406, 360.249267578125], "compile_time": 1112.2266489996946, "verification_time": 0, "benchmark_time": 2525.857306999569, "GB/s": 6.821396845633207, "GB/s/W (Jetson)": 0.9577077742742197, "GPU (W) (Jetson)": 7.122628664889632, "GB/s/W (PS)": 0.8269589616766931, "GPU (W) (PS)": 8.248773109372376, "strategy_time": 0.049949000185733894, "framework_time": 3.9284930003304908, "timestamp": "2023-11-03 11:52:26.201491+00:00"},
"4,48,1,3,3,1,1,0": {"block_size_x": 4, "block_size_y": 48, "block_size_z": 1, "tile_size_x": 3, "tile_size_y": 3, "tile_stride_x": 1, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.509486607142857, "tegra_power": 7.53252896250524, "ps_energy": 2.9457639505318576, "time": 354.4355730329241, "times": [354.4297790527344, 354.3236999511719, 354.5485534667969, 354.31610107421875, 354.3997497558594, 354.6066589355469, 354.4244689941406], "compile_time": 1104.2737170000692, "verification_time": 0, "benchmark_time": 2484.5425889998296, "GB/s": 6.933841259132614, "GB/s/W (Jetson)": 0.9793238158772514, "GPU (W) (Jetson)": 7.080233469990178, "GB/s/W (PS)": 0.8342827331960119, "GPU (W) (PS)": 8.311140795842807, "strategy_time": 0.028697999823634746, "framework_time": 2.7076440001110313, "timestamp": "2023-11-03 11:52:29.793106+00:00"},
"8,64,1,2,6,0,0,0": {"block_size_x": 8, "block_size_y": 64, "block_size_z": 1, "tile_size_x": 2, "tile_size_y": 6, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.5948660714285716, "tegra_power": 7.594113687738579, "ps_energy": 3.0248220820540155, "time": 363.9399632045201, "times": [364.156982421875, 363.9556884765625, 364.3477478027344, 363.8800048828125, 363.747802734375, 363.8169860839844, 363.6745300292969], "compile_time": 1156.9117069998356, "verification_time": 0, "benchmark_time": 2553.1928860000335, "GB/s": 6.75276212691961, "GB/s/W (Jetson)": 0.9471009032258063, "GPU (W) (Jetson)": 7.129928927234512, "GB/s/W (PS)": 0.8124775386230844, "GPU (W) (PS)": 8.311321613104036, "strategy_time": 0.02661500002432149, "framework_time": 2.77811300020403, "timestamp": "2023-11-03 11:52:33.506071+00:00"},
"1,168,1,4,8,0,0,0": {"block_size_x": 1, "block_size_y": 168, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 8, "tile_stride_x": 0, "tile_stride_y": 0, "loop_unroll_factor_channel": 0, "tegra_energy": 2.866908482142857, "tegra_power": 7.574283303476157, "ps_energy": 3.3120480626686395, "time": 401.69549560546875, "times": [402.2227478027344, 402.2325134277344, 401.2060852050781, 403.58160400390625, 402.1575927734375, 398.5414123535156, 401.926513671875], "compile_time": 1101.2425180001628, "verification_time": 0, "benchmark_time": 2815.2661140002238, "GB/s": 6.118067110251514, "GB/s/W (Jetson)": 0.8572300145985401, "GPU (W) (Jetson)": 7.13701924344861, "GB/s/W (PS)": 0.7420182175797958, "GPU (W) (PS)": 8.24517102855845, "strategy_time": 0.0276040000244393, "framework_time": 2.734206999775779, "timestamp": "2023-11-03 11:52:37.425399+00:00"},
"1,200,1,4,4,0,1,0": {"block_size_x": 1, "block_size_y": 200, "block_size_z": 1, "tile_size_x": 4, "tile_size_y": 4, "tile_stride_x": 0, "tile_stride_y": 1, "loop_unroll_factor_channel": 0, "tegra_energy": 2.8828125, "tegra_power": 7.545027653320486, "ps_energy": 3.3330518156165323, "time": 405.7639378138951, "times": [405.6911926269531, 405.4156799316406, 405.7197265625, 405.78472900390625, 405.8910827636719, 405.89703369140625, 405.9481201171875], "compile_time": 1105.1087149999148, "verification_time": 0, "benchmark_time": 2843.575569999757, "GB/s": 6.056723555179972, "GB/s/W (Jetson)": 0.85250081300813, "GPU (W) (Jetson)": 7.104654286261908, "GB/s/W (PS)": 0.7373422724739143, "GPU (W) (PS)": 8.214263282177745, "strategy_time": 0.028594000013981713, "framework_time": 2.9256150000946946, "timestamp": "2023-11-03 11:52:41.377120+00:00"},