-
Notifications
You must be signed in to change notification settings - Fork 2
/
isolator-timings.yaml
15703 lines (15703 loc) · 541 KB
/
isolator-timings.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
run_date: 2021-10-25 07:52
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021deae8>
run_epoch: 1635173553
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 50cd5dd5013e6b76bf77b08948c501fc9fdce63c
y1_version: dbd1040a67afa13394d84034b621bd0002d1554e
driver_version: d3e3a249eb8d2dc87c74e40fad476189958d98d8
driver_md5sum: 52afd6cb8a7292f7c8c74fbc41cb8b55
time_startup: 78.49684739112854
time_first_step: 19.601019382476807
time_first_10: 30.98439335823059
time_second_10: 11.455154180526733
---
run_date: 2021-10-25 10:31
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10221ef48>
run_epoch: 1635183108
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 50cd5dd5013e6b76bf77b08948c501fc9fdce63c
y1_version: dbd1040a67afa13394d84034b621bd0002d1554e
driver_version: d3e3a249eb8d2dc87c74e40fad476189958d98d8
driver_md5sum: 52afd6cb8a7292f7c8c74fbc41cb8b55
time_startup: 80.16429400444031
time_first_step: 19.502933740615845
time_first_10: 30.834182024002075
time_second_10: 11.418399095535278
---
run_date: 2021-10-25 16:49
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10221f478>
run_epoch: 1635205792
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 9cc8d602b51c50234ef0a4fe9b8981965801b473
y1_version: aa767452638a11a4b358fde8b02abb84d2268d66
driver_version: d3e3a249eb8d2dc87c74e40fad476189958d98d8
driver_md5sum: 52afd6cb8a7292f7c8c74fbc41cb8b55
time_startup: 97.82574367523193
time_first_step: 331.8957805633545
time_first_10: 333.09961223602295
time_second_10: 1.2068214416503906
comment: Lazy
---
run_date: 2021-10-26 02:57
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10221f228>
run_epoch: 1635242247
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 9cc8d602b51c50234ef0a4fe9b8981965801b473
y1_version: aa767452638a11a4b358fde8b02abb84d2268d66
driver_version: d3e3a249eb8d2dc87c74e40fad476189958d98d8
driver_md5sum: 52afd6cb8a7292f7c8c74fbc41cb8b55
time_startup: 75.12670350074768
time_first_step: 331.7913136482239
time_first_10: 332.9933772087097
time_second_10: 1.2033982276916504
---
run_date: 2021-10-26 07:04
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10215ed88>
run_epoch: 1635257085
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 598519ece0150ec9e50631e29d0f58e9e5b33383
y1_version: 598519ece0150ec9e50631e29d0f58e9e5b33383
driver_version: d3e3a249eb8d2dc87c74e40fad476189958d98d8
driver_md5sum: 52afd6cb8a7292f7c8c74fbc41cb8b55
time_startup: 74.46069312095642
time_first_step: 332.12797713279724
time_first_10: 333.33514404296875
time_second_10: 1.210108995437622
---
run_date: 2021-10-27 02:13
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102216cb8>
run_epoch: 1635325995
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 35191f461ab57e69cb42b7354195d434a96ec099
y1_version: 35191f461ab57e69cb42b7354195d434a96ec099
driver_version: d3e3a249eb8d2dc87c74e40fad476189958d98d8
driver_md5sum: 52afd6cb8a7292f7c8c74fbc41cb8b55
time_startup: 83.83809208869934
time_first_step: 331.15617990493774
time_first_10: 332.36155891418457
time_second_10: 1.2077929973602295
---
run_date: 2021-10-28 04:00
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102217788>
run_epoch: 1635418859
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 35191f461ab57e69cb42b7354195d434a96ec099
y1_version: 35191f461ab57e69cb42b7354195d434a96ec099
driver_version: d3e3a249eb8d2dc87c74e40fad476189958d98d8
driver_md5sum: 52afd6cb8a7292f7c8c74fbc41cb8b55
time_startup: 162.651184797287
time_first_step: 332.4496741294861
time_first_10: 333.6794242858887
time_second_10: 1.2297401428222656
---
run_date: 2021-10-29 02:04
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021d0b38>
run_epoch: 1635498296
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 61de24ad3a66ae128b4ed5e11718824ba68ae25d
y1_version: 61de24ad3a66ae128b4ed5e11718824ba68ae25d
driver_version: 97ba48271a53ac8bf1113bcca50112f8b68b3651
driver_md5sum: 1c122ef0b5d4b03a5d24d59d039ac7f8
time_startup: 80.74994421005249
time_first_step: 283.86808705329895
time_first_10: 284.4893798828125
time_second_10: 0.621025562286377
---
run_date: 2021-10-30 02:04
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021d0b58>
run_epoch: 1635584674
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 52e7e14e9edfc3dce40790a59d732c4a095c00ba
y1_version: 52e7e14e9edfc3dce40790a59d732c4a095c00ba
driver_version: 97ba48271a53ac8bf1113bcca50112f8b68b3651
driver_md5sum: 1c122ef0b5d4b03a5d24d59d039ac7f8
time_startup: 77.23838210105896
time_first_step: 284.6334569454193
time_first_10: 285.25176453590393
time_second_10: 0.6226708889007568
---
run_date: 2021-10-31 01:59
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021d0b38>
run_epoch: 1635670751
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 52e7e14e9edfc3dce40790a59d732c4a095c00ba
y1_version: 52e7e14e9edfc3dce40790a59d732c4a095c00ba
driver_version: 97ba48271a53ac8bf1113bcca50112f8b68b3651
driver_md5sum: 1c122ef0b5d4b03a5d24d59d039ac7f8
time_startup: 80.82288479804993
time_first_step: 285.33715200424194
time_first_10: 285.9572012424469
time_second_10: 0.6232650279998779
---
run_date: 2021-11-01 02:05
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021d07d8>
run_epoch: 1635757549
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 52e7e14e9edfc3dce40790a59d732c4a095c00ba
y1_version: 52e7e14e9edfc3dce40790a59d732c4a095c00ba
driver_version: 97ba48271a53ac8bf1113bcca50112f8b68b3651
driver_md5sum: 1c122ef0b5d4b03a5d24d59d039ac7f8
time_startup: 81.66080331802368
time_first_step: 284.8158826828003
time_first_10: 285.438129901886
time_second_10: 0.6219747066497803
---
run_date: 2021-11-02 02:08
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021ee028>
run_epoch: 1635844092
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0d0c040e50d1fc4cde62faaf946d2345a2726978
y1_version: 0d0c040e50d1fc4cde62faaf946d2345a2726978
driver_version: 97ba48271a53ac8bf1113bcca50112f8b68b3651
driver_md5sum: 1c122ef0b5d4b03a5d24d59d039ac7f8
time_startup: 73.38585710525513
time_first_step: 282.7612113952637
time_first_10: 283.3778154850006
time_second_10: 0.6187276840209961
---
run_date: 2021-11-03 02:27
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021ee028>
run_epoch: 1635931639
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0d0c040e50d1fc4cde62faaf946d2345a2726978
y1_version: 0d0c040e50d1fc4cde62faaf946d2345a2726978
driver_version: 97ba48271a53ac8bf1113bcca50112f8b68b3651
driver_md5sum: 1c122ef0b5d4b03a5d24d59d039ac7f8
time_startup: 75.84283900260925
time_first_step: 281.6349837779999
time_first_10: 282.25684809684753
time_second_10: 0.6236827373504639
---
run_date: 2021-11-04 02:09
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222ee88>
run_epoch: 1636016996
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 6e8bf715c37048ba662a42b2dba32f9085b6e337
y1_version: 6e8bf715c37048ba662a42b2dba32f9085b6e337
driver_version: 28f560a4cad96bbaa45958e6ef4348012cddeb41
driver_md5sum: 3a694e532fe8e18d3c060d23b2d6ce51
time_startup: 81.05308032035828
time_first_step: 284.07324290275574
time_first_10: 284.69954085350037
time_second_10: 0.6217923164367676
---
run_date: 2021-11-10 16:36
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021af8e8>
run_epoch: 1636591000
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
y1_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 104.44778180122375
time_first_step: 291.0855360031128
time_first_10: 291.66617465019226
time_second_10: 0.5809195041656494
---
run_date: 2021-11-11 08:52
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f8e8>
run_epoch: 1636649559
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
y1_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 68.36658191680908
time_first_step: 291.475204706192
time_first_10: 292.060622215271
time_second_10: 0.5840349197387695
---
run_date: 2021-11-13 02:07
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f8e8>
run_epoch: 1636798025
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
y1_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 61.00294375419617
time_first_step: 291.1052215099335
time_first_10: 291.6855673789978
time_second_10: 0.5810487270355225
---
run_date: 2021-11-14 02:04
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f4f8>
run_epoch: 1636884284
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
y1_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 59.371325969696045
time_first_step: 291.7579758167267
time_first_10: 292.34171986579895
time_second_10: 0.5830197334289551
---
run_date: 2021-11-15 02:10
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f488>
run_epoch: 1636971020
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
y1_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 99.01934719085693
time_first_step: 292.3496165275574
time_first_10: 292.94424843788147
time_second_10: 0.5895280838012695
---
run_date: 2021-11-16 02:05
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f618>
run_epoch: 1637057122
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
y1_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 81.98483347892761
time_first_step: 291.4625492095947
time_first_10: 292.0466306209564
time_second_10: 0.587285041809082
---
run_date: 2021-11-17 02:05
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f548>
run_epoch: 1637143542
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
y1_version: 0f6c0ec05db0f63ec7b30a3ae6cccef180d476a3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 93.1847288608551
time_first_step: 291.894900560379
time_first_10: 292.47860622406006
time_second_10: 0.5846915245056152
---
run_date: 2021-11-19 02:11
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10216ebe8>
run_epoch: 1637316667
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: ab9283f288e36a87ac11dca0c54af750507d30e7
y1_version: ab9283f288e36a87ac11dca0c54af750507d30e7
driver_version: 3f8a162da3509adfe51bc98671ebee17a59eeeb6
driver_md5sum: db7abdc13704d5dc213a6633c0327820
time_startup: 67.55095219612122
time_first_step: 171.24847531318665
time_first_10: 172.7434802055359
time_second_10: 0.5092864036560059
---
run_date: 2021-11-25 02:07
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f598>
run_epoch: 1637834827
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 74.84266209602356
time_first_step: 291.8027765750885
time_first_10: 292.3848316669464
time_second_10: 0.582205057144165
---
run_date: 2021-11-26 02:10
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f8e8>
run_epoch: 1637921411
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 93.08465313911438
time_first_step: 291.21540355682373
time_first_10: 291.795729637146
time_second_10: 0.5804867744445801
---
run_date: 2021-11-27 02:06
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f548>
run_epoch: 1638007580
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 74.59158205986023
time_first_step: 291.92700815200806
time_first_10: 292.5106086730957
time_second_10: 0.5819370746612549
---
run_date: 2021-11-28 01:58
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f8e8>
run_epoch: 1638093507
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 73.77414178848267
time_first_step: 291.47209787368774
time_first_10: 292.0547046661377
time_second_10: 0.5802316665649414
---
run_date: 2021-11-29 02:06
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10222f8e8>
run_epoch: 1638180401
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 71.88322138786316
time_first_step: 292.32006311416626
time_first_10: 292.9079518318176
time_second_10: 0.5924828052520752
---
run_date: 2021-11-30 02:07
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021adc38>
run_epoch: 1638266837
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 73.37810349464417
time_first_step: 292.2011728286743
time_first_10: 292.78287267684937
time_second_10: 0.5817246437072754
---
run_date: 2021-12-01 02:06
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10212e3a8>
run_epoch: 1638353160
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 66.62099289894104
time_first_step: 291.7163543701172
time_first_10: 292.3069751262665
time_second_10: 0.5894122123718262
---
run_date: 2021-12-02 02:06
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10212e6a8>
run_epoch: 1638439592
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 64.20685362815857
time_first_step: 291.96122550964355
time_first_10: 292.5430016517639
time_second_10: 0.5812151432037354
---
run_date: 2021-12-03 02:08
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021adc38>
run_epoch: 1638526112
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 104.99184465408325
time_first_step: 291.6787633895874
time_first_10: 292.2565448284149
time_second_10: 0.5741510391235352
---
run_date: 2021-12-04 02:16
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021adc38>
run_epoch: 1638612960
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 89.98044943809509
time_first_step: 295.4213604927063
time_first_10: 296.02236437797546
time_second_10: 0.5852282047271729
---
run_date: 2021-12-05 02:12
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021adc38>
run_epoch: 1638699144
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 108.59737420082092
time_first_step: 292.17704153060913
time_first_10: 292.7585082054138
time_second_10: 0.580669641494751
---
run_date: 2021-12-06 02:08
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021adc38>
run_epoch: 1638785339
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 95.81654834747314
time_first_step: 291.7382047176361
time_first_10: 292.3170597553253
time_second_10: 0.5759468078613281
---
run_date: 2021-12-07 02:08
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021aea08>
run_epoch: 1638871706
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 85.83273506164551
time_first_step: 292.42243790626526
time_first_10: 293.0160536766052
time_second_10: 0.5888810157775879
---
run_date: 2021-12-08 01:41
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021ee738>
run_epoch: 1638956511
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 89.43843936920166
time_first_step: 291.1751217842102
time_first_10: 291.78030705451965
time_second_10: 0.6027920246124268
---
run_date: 2021-12-09 02:09
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1021edc38>
run_epoch: 1639044586
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
y1_version: bda26ab4905fa0c6bb11b837fd85e0ba2db3fed3
driver_version: 27df31177b3862d972f5aa2c1b34f59658e2b8f9
driver_md5sum: 70c14c30596f7ddd4db10a8b4a38f57c
time_startup: 91.6253445148468
time_first_step: 291.7876420021057
time_first_10: 292.39190101623535
time_second_10: 0.7707729339599609
---
run_date: 2021-12-09 21:37
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237828>
run_epoch: 1639114654
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 96f65e66f8de338a0a2274810b7a7b9ec707dafd
y1_version: 96f65e66f8de338a0a2274810b7a7b9ec707dafd
driver_version: 4c67e47048730e2216ef19fc475fbe7fdc77aad4
driver_md5sum: b58dd53104e372a6986924db478fefd7
time_startup: 101.66816926002502
time_first_step: 286.2655522823334
time_first_10: 286.8268229961395
time_second_10: 0.5608665943145752
---
run_date: 2021-12-10 03:56
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237678>
run_epoch: 1639137371
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: eddf5deed80c18d2f02b5fa87b2af738aafc0ae9
y1_version: eddf5deed80c18d2f02b5fa87b2af738aafc0ae9
driver_version: 4c67e47048730e2216ef19fc475fbe7fdc77aad4
driver_md5sum: b58dd53104e372a6986924db478fefd7
time_startup: 74.41677618026733
time_first_step: 286.61958169937134
time_first_10: 287.1822168827057
time_second_10: 0.5661113262176514
---
run_date: 2021-12-11 03:52
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237678>
run_epoch: 1639223567
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: eddf5deed80c18d2f02b5fa87b2af738aafc0ae9
y1_version: eddf5deed80c18d2f02b5fa87b2af738aafc0ae9
driver_version: 4c67e47048730e2216ef19fc475fbe7fdc77aad4
driver_md5sum: b58dd53104e372a6986924db478fefd7
time_startup: 82.56653261184692
time_first_step: 286.8517608642578
time_first_10: 287.4143705368042
time_second_10: 0.5656077861785889
---
run_date: 2021-12-12 02:07
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237cf8>
run_epoch: 1639303620
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: a11fd4c251e4f94b01dca9b6554f7b669f7c77d8
y1_version: a11fd4c251e4f94b01dca9b6554f7b669f7c77d8
driver_version: 0ca0d71421de49503bedb310f790f632cd46083d
driver_md5sum: b40d229f9520ae9df7cdaef040cf80a0
time_startup: 98.83486413955688
time_first_step: 287.08141016960144
time_first_10: 287.64825916290283
time_second_10: 0.5714061260223389
---
run_date: 2021-12-13 01:54
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237d28>
run_epoch: 1639389288
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: d052e57b02d776e7cbeb9abb6bf411907cff4037
y1_version: d052e57b02d776e7cbeb9abb6bf411907cff4037
driver_version: 0ca0d71421de49503bedb310f790f632cd46083d
driver_md5sum: b40d229f9520ae9df7cdaef040cf80a0
time_startup: 65.82474160194397
time_first_step: 285.7953269481659
time_first_10: 286.3623757362366
time_second_10: 0.5610480308532715
---
run_date: 2021-12-14 02:07
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1022375f8>
run_epoch: 1639476462
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: e2605f4f73a77cf404cc151e63cec599c4c7ac15
y1_version: e2605f4f73a77cf404cc151e63cec599c4c7ac15
driver_version: 0ca0d71421de49503bedb310f790f632cd46083d
driver_md5sum: b40d229f9520ae9df7cdaef040cf80a0
time_startup: 84.5358018875122
time_first_step: 290.9259788990021
time_first_10: 291.6934971809387
time_second_10: 0.5773663520812988
---
run_date: 2021-12-15 02:06
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237678>
run_epoch: 1639562816
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: e2605f4f73a77cf404cc151e63cec599c4c7ac15
y1_version: e2605f4f73a77cf404cc151e63cec599c4c7ac15
driver_version: 0ca0d71421de49503bedb310f790f632cd46083d
driver_md5sum: b40d229f9520ae9df7cdaef040cf80a0
time_startup: 97.30173707008362
time_first_step: 291.584290266037
time_first_10: 292.15744185447693
time_second_10: 0.5709688663482666
---
run_date: 2021-12-16 02:07
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1022376c8>
run_epoch: 1639649270
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 9fdf80389b9cb02014e1cd022f099c229788abe8
y1_version: 9fdf80389b9cb02014e1cd022f099c229788abe8
driver_version: 0ca0d71421de49503bedb310f790f632cd46083d
driver_md5sum: b40d229f9520ae9df7cdaef040cf80a0
time_startup: 80.74100875854492
time_first_step: 291.574161529541
time_first_10: 292.15096402168274
time_second_10: 0.5777626037597656
---
run_date: 2021-12-17 02:09
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x1022376c8>
run_epoch: 1639735778
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 5befae0891530e5f8e16b3fa65f33d6ecd652f8f
y1_version: 5befae0891530e5f8e16b3fa65f33d6ecd652f8f
driver_version: 0ca0d71421de49503bedb310f790f632cd46083d
driver_md5sum: b40d229f9520ae9df7cdaef040cf80a0
time_startup: 78.23249936103821
time_first_step: 292.3892126083374
time_first_10: 292.9629340171814
time_second_10: 0.571911096572876
---
run_date: 2021-12-18 02:08
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237868>
run_epoch: 1639822131
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: acb0bfbb95bf3ccbf14bc47bbece6969408aa0c1
y1_version: acb0bfbb95bf3ccbf14bc47bbece6969408aa0c1
driver_version: 90282a3fc89046e7dfa684c5b1acc7b02ab4844c
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 76.80297899246216
time_first_step: 293.0033497810364
time_first_10: 293.57899475097656
time_second_10: 0.5753676891326904
---
run_date: 2021-12-19 02:09
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237868>
run_epoch: 1639908583
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: acb0bfbb95bf3ccbf14bc47bbece6969408aa0c1
y1_version: acb0bfbb95bf3ccbf14bc47bbece6969408aa0c1
driver_version: 90282a3fc89046e7dfa684c5b1acc7b02ab4844c
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 98.93309998512268
time_first_step: 292.29851508140564
time_first_10: 292.8656327724457
time_second_10: 0.5676181316375732
---
run_date: 2021-12-20 02:10
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237b48>
run_epoch: 1639995016
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 4aa86eae17c278626bfb7f968d7c6b7bc2613a1b
y1_version: 4aa86eae17c278626bfb7f968d7c6b7bc2613a1b
driver_version: 90282a3fc89046e7dfa684c5b1acc7b02ab4844c
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 69.5975284576416
time_first_step: 294.96223616600037
time_first_10: 295.53631472587585
time_second_10: 0.6021728515625
---
run_date: 2021-12-21 02:10
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102237b38>
run_epoch: 1640081408
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: 90282a3fc89046e7dfa684c5b1acc7b02ab4844c
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 80.60350370407104
time_first_step: 295.49654364585876
time_first_10: 296.0713276863098
time_second_10: 0.5753426551818848
---
run_date: 2021-12-22 02:09
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102267828>
run_epoch: 1640167757
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: 90282a3fc89046e7dfa684c5b1acc7b02ab4844c
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 77.96714091300964
time_first_step: 294.7235336303711
time_first_10: 295.297819852829
time_second_10: 0.5730047225952148
---
run_date: 2021-12-23 02:25
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102267828>
run_epoch: 1640255148
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: 90282a3fc89046e7dfa684c5b1acc7b02ab4844c
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 64.92442059516907
time_first_step: 294.65953159332275
time_first_10: 295.2349212169647
time_second_10: 0.574852466583252
---
run_date: 2021-12-24 02:11
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102267818>
run_epoch: 1640340708
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 87.56876707077026
time_first_step: 294.6638307571411
time_first_10: 295.2400851249695
time_second_10: 0.5770087242126465
---
run_date: 2021-12-25 02:11
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10225e698>
run_epoch: 1640427116
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 69.31520128250122
time_first_step: 294.82219195365906
time_first_10: 295.39839935302734
time_second_10: 0.5745084285736084
---
run_date: 2021-12-26 02:08
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10225e6e8>
run_epoch: 1640513293
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 96.87674307823181
time_first_step: 294.8519616127014
time_first_10: 295.45990347862244
time_second_10: 0.5748882293701172
---
run_date: 2021-12-28 02:09
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10225e648>
run_epoch: 1640686194
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 102.40142631530762
time_first_step: 290.53313994407654
time_first_10: 291.10920000076294
time_second_10: 0.5690398216247559
---
run_date: 2021-12-29 02:10
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10225e648>
run_epoch: 1640772645
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 82.56341791152954
time_first_step: 289.9997310638428
time_first_10: 290.56990361213684
time_second_10: 0.57240891456604
---
run_date: 2021-12-30 02:14
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10219f598>
run_epoch: 1640859275
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 110.51204466819763
time_first_step: 290.0464951992035
time_first_10: 290.6193675994873
time_second_10: 0.5773694515228271
---
run_date: 2021-12-31 02:08
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10225f3f8>
run_epoch: 1640945335
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 97.06708478927612
time_first_step: 290.55392718315125
time_first_10: 291.12672114372253
time_second_10: 0.5726265907287598
---
run_date: 2022-01-01 10:18
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10225f8c8>
run_epoch: 1641061133
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 110.54622554779053
time_first_step: 291.13965225219727
time_first_10: 291.7138442993164
time_second_10: 0.5743160247802734
---
run_date: 2022-01-02 02:02
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10225f3f8>
run_epoch: 1641117736
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 67.34501028060913
time_first_step: 290.06527614593506
time_first_10: 290.6372857093811
time_second_10: 0.571197509765625
---
run_date: 2022-01-03 02:16
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x10229f168>
run_epoch: 1641204983
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL
mirge_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
y1_version: 19f5029f567c5ef9208d1c96a7e5346f24785e33
driver_version: d0926f19aefbf8f915f052f8c76b78e7ed0d02c3
driver_md5sum: 37dd769c7c5c1955f346e719a79153d0
time_startup: 93.15695405006409
time_first_step: 290.64443254470825
time_first_10: 291.21459197998047
time_second_10: 0.5639326572418213
---
run_date: 2022-01-14 07:17
run_host: Lassen
cl_device: <pyopencl.Device 'Tesla V100-SXM2-16GB' on 'Portable Computing Language' at 0x102298638>
run_epoch: 1642173464
run_platform: Linux
run_arch: ppc64le
gpu_arch: GV100GL