forked from juliusroeder/pmms-heat-diffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult_cache_flops.txt
4560 lines (3600 loc) · 227 KB
/
result_cache_flops.txt
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
params 100,20000, 1
Reservation number 3011509: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:14:47 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.375411e+00 2.608054e+09
Reservation number 3011510: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:14:51 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2813.333193 task-clock (msec) # 0.999 CPUs utilized
7,875,398,741 cycles # 2.799 GHz
19,756,998,637 instructions # 2.51 insn per cycle
141,544,966 cache-references # 50.312 M/sec
12,725,912 cache-misses # 8.991 % of all cache refs
2.815755663 seconds time elapsed
params 100,20000, 1
Reservation number 3011511: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:14:56 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.477041e+00 2.501049e+09
Reservation number 3011512: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:00 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2820.845335 task-clock (msec) # 0.999 CPUs utilized
7,874,650,992 cycles # 2.792 GHz
19,757,007,605 instructions # 2.51 insn per cycle
141,113,549 cache-references # 50.025 M/sec
12,772,683 cache-misses # 9.051 % of all cache refs
2.822572570 seconds time elapsed
params 100,20000, 1
Reservation number 3011513: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:05 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.414956e+00 2.565347e+09
Reservation number 3011514: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:09 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2841.064552 task-clock (msec) # 0.997 CPUs utilized
7,852,557,755 cycles # 2.764 GHz
19,759,228,444 instructions # 2.52 insn per cycle
141,230,539 cache-references # 49.710 M/sec
12,654,386 cache-misses # 8.960 % of all cache refs
2.850960599 seconds time elapsed
params 100,20000, 1
Reservation number 3011515: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:14 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.399029e+00 2.582378e+09
Reservation number 3011516: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:18 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2819.084949 task-clock (msec) # 0.999 CPUs utilized
7,906,513,150 cycles # 2.805 GHz
19,757,052,977 instructions # 2.50 insn per cycle
140,164,167 cache-references # 49.720 M/sec
12,680,160 cache-misses # 9.047 % of all cache refs
2.820911683 seconds time elapsed
params 100,20000, 1
Reservation number 3011517: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:23 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.424063e+00 2.555710e+09
Reservation number 3011518: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:27 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2811.836305 task-clock (msec) # 0.999 CPUs utilized
7,869,759,476 cycles # 2.799 GHz
19,756,953,466 instructions # 2.51 insn per cycle
141,402,366 cache-references # 50.288 M/sec
12,676,037 cache-misses # 8.965 % of all cache refs
2.813423746 seconds time elapsed
params 100,20000, 1
Reservation number 3011519: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:32 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.449346e+00 2.529328e+09
Reservation number 3011520: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:36 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2819.943468 task-clock (msec) # 0.999 CPUs utilized
7,857,027,781 cycles # 2.786 GHz
19,756,878,123 instructions # 2.51 insn per cycle
140,650,714 cache-references # 49.877 M/sec
12,740,573 cache-misses # 9.058 % of all cache refs
2.821706811 seconds time elapsed
params 100,20000, 1
Reservation number 3011521: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:41 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.486502e+00 2.491532e+09
Reservation number 3011522: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:45 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2820.620650 task-clock (msec) # 0.999 CPUs utilized
7,842,522,253 cycles # 2.780 GHz
19,756,872,791 instructions # 2.52 insn per cycle
141,223,404 cache-references # 50.068 M/sec
12,852,829 cache-misses # 9.101 % of all cache refs
2.822136199 seconds time elapsed
params 100,20000, 1
Reservation number 3011523: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:50 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.380504e+00 2.602474e+09
Reservation number 3011524: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:54 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2809.410930 task-clock (msec) # 0.999 CPUs utilized
7,884,105,271 cycles # 2.806 GHz
19,756,905,717 instructions # 2.51 insn per cycle
140,652,723 cache-references # 50.065 M/sec
12,802,080 cache-misses # 9.102 % of all cache refs
2.811101662 seconds time elapsed
params 100,20000, 1
Reservation number 3011525: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:15:59 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.342968e+00 2.644168e+09
Reservation number 3011526: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:03 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2815.950382 task-clock (msec) # 0.999 CPUs utilized
7,882,163,697 cycles # 2.799 GHz
19,756,975,355 instructions # 2.51 insn per cycle
140,989,995 cache-references # 50.068 M/sec
12,742,926 cache-misses # 9.038 % of all cache refs
2.817518381 seconds time elapsed
params 100,20000, 1
Reservation number 3011527: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:08 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 2.418773e+00 2.561298e+09
Reservation number 3011528: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:13 2021
: node054/0
Performance counter stats for './heat_pth -p 1 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2825.244178 task-clock (msec) # 0.999 CPUs utilized
7,910,926,969 cycles # 2.800 GHz
19,757,000,320 instructions # 2.50 insn per cycle
138,962,942 cache-references # 49.186 M/sec
12,585,615 cache-misses # 9.057 % of all cache refs
2.827230490 seconds time elapsed
params 100,20000, 2
Reservation number 3011529: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:17 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.513240e+00 4.093997e+09
Reservation number 3011530: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:21 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3086.035792 task-clock (msec) # 1.656 CPUs utilized
7,837,278,961 cycles # 2.540 GHz
19,758,399,497 instructions # 2.52 insn per cycle
48,904,225 cache-references # 15.847 M/sec
4,421,122 cache-misses # 9.040 % of all cache refs
1.863622435 seconds time elapsed
params 100,20000, 2
Reservation number 3011531: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:25 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.392971e+00 4.447473e+09
Reservation number 3011532: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:28 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3228.844951 task-clock (msec) # 1.656 CPUs utilized
7,647,595,747 cycles # 2.369 GHz
19,758,782,834 instructions # 2.58 insn per cycle
54,013,135 cache-references # 16.728 M/sec
4,692,345 cache-misses # 8.687 % of all cache refs
1.949318052 seconds time elapsed
params 100,20000, 2
Reservation number 3011533: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:32 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.344554e+00 4.607624e+09
Reservation number 3011534: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:35 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2976.505290 task-clock (msec) # 1.667 CPUs utilized
7,743,259,980 cycles # 2.601 GHz
19,758,128,450 instructions # 2.55 insn per cycle
53,496,181 cache-references # 17.973 M/sec
5,091,831 cache-misses # 9.518 % of all cache refs
1.785589818 seconds time elapsed
params 100,20000, 2
Reservation number 3011535: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:39 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.518991e+00 4.078497e+09
Reservation number 3011536: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:42 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3002.538278 task-clock (msec) # 1.665 CPUs utilized
7,783,013,555 cycles # 2.592 GHz
19,758,151,314 instructions # 2.54 insn per cycle
52,785,940 cache-references # 17.580 M/sec
5,176,614 cache-misses # 9.807 % of all cache refs
1.803441306 seconds time elapsed
params 100,20000, 2
Reservation number 3011537: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:46 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.484748e+00 4.172561e+09
Reservation number 3011538: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:49 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3060.580436 task-clock (msec) # 1.668 CPUs utilized
7,721,532,414 cycles # 2.523 GHz
19,758,230,706 instructions # 2.56 insn per cycle
53,457,359 cache-references # 17.466 M/sec
5,315,486 cache-misses # 9.943 % of all cache refs
1.834802020 seconds time elapsed
params 100,20000, 2
Reservation number 3011539: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:53 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.528335e+00 4.053562e+09
Reservation number 3011540: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:16:56 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3077.718479 task-clock (msec) # 1.665 CPUs utilized
7,733,519,097 cycles # 2.513 GHz
19,758,352,062 instructions # 2.55 insn per cycle
55,093,632 cache-references # 17.901 M/sec
5,461,185 cache-misses # 9.913 % of all cache refs
1.848128435 seconds time elapsed
params 100,20000, 2
Reservation number 3011541: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:00 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.382136e+00 4.482337e+09
Reservation number 3011542: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:03 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3176.876579 task-clock (msec) # 1.661 CPUs utilized
7,625,929,771 cycles # 2.400 GHz
19,758,525,415 instructions # 2.59 insn per cycle
56,039,274 cache-references # 17.640 M/sec
5,178,627 cache-misses # 9.241 % of all cache refs
1.913111194 seconds time elapsed
params 100,20000, 2
Reservation number 3011543: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:07 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.485293e+00 4.171030e+09
Reservation number 3011544: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:10 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3369.938492 task-clock (msec) # 1.679 CPUs utilized
7,771,559,980 cycles # 2.306 GHz
19,759,259,876 instructions # 2.54 insn per cycle
46,878,637 cache-references # 13.911 M/sec
4,388,846 cache-misses # 9.362 % of all cache refs
2.006940620 seconds time elapsed
params 100,20000, 2
Reservation number 3011545: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:14 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.471575e+00 4.209910e+09
Reservation number 3011546: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:17 2021
: node054/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3000.827049 task-clock (msec) # 1.667 CPUs utilized
7,719,163,839 cycles # 2.572 GHz
19,758,013,387 instructions # 2.56 insn per cycle
53,079,578 cache-references # 17.688 M/sec
4,981,022 cache-misses # 9.384 % of all cache refs
1.799760847 seconds time elapsed
params 100,20000, 2
Reservation number 3011547: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:21 2021
: node068/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.481485e+00 4.181751e+09
Reservation number 3011548: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:25 2021
: node068/0
Performance counter stats for './heat_pth -p 2 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
2989.962518 task-clock (msec) # 1.659 CPUs utilized
7,685,184,376 cycles # 2.570 GHz
19,758,400,331 instructions # 2.57 insn per cycle
53,570,798 cache-references # 17.917 M/sec
4,709,714 cache-misses # 8.792 % of all cache refs
1.802659369 seconds time elapsed
params 100,20000, 4
Reservation number 3011549: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:29 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.946126e-01 6.925008e+09
Reservation number 3011550: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:32 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3533.783663 task-clock (msec) # 2.621 CPUs utilized
8,188,525,325 cycles # 2.317 GHz
19,761,535,018 instructions # 2.41 insn per cycle
59,958,019 cache-references # 16.967 M/sec
5,434,126 cache-misses # 9.063 % of all cache refs
1.348426454 seconds time elapsed
params 100,20000, 4
Reservation number 3011551: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:35 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 9.000561e-01 6.883127e+09
Reservation number 3011552: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:39 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3602.835597 task-clock (msec) # 2.628 CPUs utilized
8,150,300,355 cycles # 2.262 GHz
19,761,668,494 instructions # 2.42 insn per cycle
58,859,377 cache-references # 16.337 M/sec
5,347,315 cache-misses # 9.085 % of all cache refs
1.370975424 seconds time elapsed
params 100,20000, 4
Reservation number 3011553: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:42 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 9.027925e-01 6.862263e+09
Reservation number 3011554: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:45 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3542.514807 task-clock (msec) # 2.655 CPUs utilized
8,037,190,156 cycles # 2.269 GHz
19,761,116,796 instructions # 2.46 insn per cycle
65,576,131 cache-references # 18.511 M/sec
6,357,045 cache-misses # 9.694 % of all cache refs
1.334448828 seconds time elapsed
params 100,20000, 4
Reservation number 3011555: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:48 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 9.010734e-01 6.875355e+09
Reservation number 3011556: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:51 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3565.612409 task-clock (msec) # 2.623 CPUs utilized
8,153,812,967 cycles # 2.287 GHz
19,761,588,110 instructions # 2.42 insn per cycle
59,701,708 cache-references # 16.744 M/sec
5,552,535 cache-misses # 9.300 % of all cache refs
1.359192570 seconds time elapsed
params 100,20000, 4
Reservation number 3011557: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:54 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.725743e-01 7.099911e+09
Reservation number 3011558: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:17:57 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3525.525988 task-clock (msec) # 2.642 CPUs utilized
8,117,587,348 cycles # 2.303 GHz
19,761,247,959 instructions # 2.43 insn per cycle
61,832,650 cache-references # 17.539 M/sec
5,847,891 cache-misses # 9.458 % of all cache refs
1.334170886 seconds time elapsed
params 100,20000, 4
Reservation number 3011559: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:00 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.989804e-01 6.891363e+09
Reservation number 3011560: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:03 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3483.030721 task-clock (msec) # 2.603 CPUs utilized
7,979,124,644 cycles # 2.291 GHz
19,761,202,122 instructions # 2.48 insn per cycle
67,708,513 cache-references # 19.440 M/sec
6,652,864 cache-misses # 9.826 % of all cache refs
1.337887395 seconds time elapsed
params 100,20000, 4
Reservation number 3011561: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:06 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.939987e-01 6.929764e+09
Reservation number 3011562: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:09 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3485.810334 task-clock (msec) # 2.535 CPUs utilized
8,257,408,302 cycles # 2.369 GHz
19,762,000,989 instructions # 2.39 insn per cycle
65,945,761 cache-references # 18.918 M/sec
5,803,579 cache-misses # 8.801 % of all cache refs
1.375087890 seconds time elapsed
params 100,20000, 4
Reservation number 3011563: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:12 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.825152e-01 7.019935e+09
Reservation number 3011564: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:15 2021
: node054/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3535.470461 task-clock (msec) # 2.625 CPUs utilized
8,070,694,406 cycles # 2.283 GHz
19,761,281,924 instructions # 2.45 insn per cycle
61,268,289 cache-references # 17.330 M/sec
5,402,645 cache-misses # 8.818 % of all cache refs
1.347053677 seconds time elapsed
params 100,20000, 4
Reservation number 3011565: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:18 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.889384e-01 6.969212e+09
Reservation number 3011566: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:21 2021
: node068/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3575.573141 task-clock (msec) # 2.647 CPUs utilized
8,288,120,360 cycles # 2.318 GHz
19,761,641,761 instructions # 2.38 insn per cycle
57,822,413 cache-references # 16.172 M/sec
5,531,647 cache-misses # 9.567 % of all cache refs
1.350585934 seconds time elapsed
params 100,20000, 4
Reservation number 3011567: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:25 2021
: node068/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 9.034505e-01 6.857266e+09
Reservation number 3011569: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:28 2021
: node053/0
Performance counter stats for './heat_pth -p 4 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
3589.454714 task-clock (msec) # 2.647 CPUs utilized
8,267,468,719 cycles # 2.303 GHz
19,761,594,219 instructions # 2.39 insn per cycle
56,680,344 cache-references # 15.791 M/sec
5,386,866 cache-misses # 9.504 % of all cache refs
1.356263543 seconds time elapsed
params 100,20000, 8
Reservation number 3011570: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:32 2021
: node068/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.666550e-01 8.080818e+09
Reservation number 3011571: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:35 2021
: node068/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
4541.283826 task-clock (msec) # 3.870 CPUs utilized
9,519,035,813 cycles # 2.096 GHz
19,775,736,061 instructions # 2.08 insn per cycle
78,952,610 cache-references # 17.386 M/sec
8,311,136 cache-misses # 10.527 % of all cache refs
1.173604084 seconds time elapsed
params 100,20000, 8
Reservation number 3011572: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:38 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.640766e-01 8.108087e+09
Reservation number 3011573: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:41 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
5625.982143 task-clock (msec) # 4.066 CPUs utilized
11,606,703,623 cycles # 2.063 GHz
19,779,158,872 instructions # 1.70 insn per cycle
92,144,801 cache-references # 16.378 M/sec
9,390,446 cache-misses # 10.191 % of all cache refs
1.383568734 seconds time elapsed
params 100,20000, 8
Reservation number 3011574: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:44 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.388012e-01 8.385477e+09
Reservation number 3011575: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:47 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
4818.262231 task-clock (msec) # 3.952 CPUs utilized
9,762,361,177 cycles # 2.026 GHz
19,776,573,468 instructions # 2.03 insn per cycle
83,943,241 cache-references # 17.422 M/sec
8,543,834 cache-misses # 10.178 % of all cache refs
1.219251592 seconds time elapsed
params 100,20000, 8
Reservation number 3011576: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:50 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.449962e-01 8.315747e+09
Reservation number 3011577: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:53 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
6289.382324 task-clock (msec) # 4.212 CPUs utilized
13,503,853,430 cycles # 2.147 GHz
19,781,983,167 instructions # 1.46 insn per cycle
102,132,887 cache-references # 16.239 M/sec
10,018,613 cache-misses # 9.809 % of all cache refs
1.493145227 seconds time elapsed
params 100,20000, 8
Reservation number 3011578: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:56 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.724809e-01 8.019875e+09
Reservation number 3011579: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:18:59 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
4430.534843 task-clock (msec) # 3.832 CPUs utilized
9,232,226,121 cycles # 2.084 GHz
19,775,082,913 instructions # 2.14 insn per cycle
80,717,031 cache-references # 18.218 M/sec
8,384,548 cache-misses # 10.388 % of all cache refs
1.156244314 seconds time elapsed
params 100,20000, 8
Reservation number 3011580: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:02 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.001967e-01 7.742097e+09
Reservation number 3011581: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:05 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
4967.769121 task-clock (msec) # 4.010 CPUs utilized
10,273,383,308 cycles # 2.068 GHz
19,777,407,514 instructions # 1.93 insn per cycle
80,099,606 cache-references # 16.124 M/sec
7,981,561 cache-misses # 9.965 % of all cache refs
1.238749226 seconds time elapsed
params 100,20000, 8
Reservation number 3011583: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:08 2021
: node068/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.310063e-01 8.474893e+09
Reservation number 3011584: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:11 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
5124.011499 task-clock (msec) # 4.000 CPUs utilized
10,545,678,563 cycles # 2.058 GHz
19,778,114,700 instructions # 1.88 insn per cycle
89,529,969 cache-references # 17.473 M/sec
9,220,663 cache-misses # 10.299 % of all cache refs
1.281016917 seconds time elapsed
params 100,20000, 8
Reservation number 3011585: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:14 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.306054e-01 8.479543e+09
Reservation number 3011586: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:17 2021
: node068/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
4766.820833 task-clock (msec) # 3.948 CPUs utilized
9,954,802,150 cycles # 2.088 GHz
19,775,769,077 instructions # 1.99 insn per cycle
81,617,624 cache-references # 17.122 M/sec
7,896,584 cache-misses # 9.675 % of all cache refs
1.207281047 seconds time elapsed
params 100,20000, 8
Reservation number 3011587: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:21 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.689407e-01 8.056798e+09
Reservation number 3011588: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:24 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
4785.333151 task-clock (msec) # 3.986 CPUs utilized
9,722,655,433 cycles # 2.032 GHz
19,776,459,006 instructions # 2.03 insn per cycle
81,100,142 cache-references # 16.948 M/sec
8,637,027 cache-misses # 10.650 % of all cache refs
1.200683968 seconds time elapsed
params 100,20000, 8
Reservation number 3011589: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:27 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.680880e-01 8.065742e+09
Reservation number 3011590: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:30 2021
: node054/0
Performance counter stats for './heat_pth -p 8 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
5383.765362 task-clock (msec) # 4.196 CPUs utilized
11,472,001,146 cycles # 2.131 GHz
19,778,136,392 instructions # 1.72 insn per cycle
86,712,591 cache-references # 16.106 M/sec
8,466,639 cache-misses # 9.764 % of all cache refs
1.283081177 seconds time elapsed
params 100,20000, 16
Reservation number 3011591: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:33 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.050602e-01 8.786767e+09
Reservation number 3011592: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:36 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
7585.157402 task-clock (msec) # 6.220 CPUs utilized
15,152,329,319 cycles # 1.998 GHz
19,813,271,432 instructions # 1.31 insn per cycle
88,284,416 cache-references # 11.639 M/sec
10,618,770 cache-misses # 12.028 % of all cache refs
1.219432971 seconds time elapsed
params 100,20000, 16
Reservation number 3011593: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:39 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.061848e+00 5.834358e+09
Reservation number 3011594: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:42 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
11129.272579 task-clock (msec) # 7.086 CPUs utilized
24,712,832,912 cycles # 2.221 GHz
19,831,107,411 instructions # 0.80 insn per cycle
127,462,675 cache-references # 11.453 M/sec
13,398,368 cache-misses # 10.512 % of all cache refs
1.570639659 seconds time elapsed
params 100,20000, 16
Reservation number 3011595: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:45 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.450824e-01 8.314785e+09
Reservation number 3011596: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:48 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
9489.667868 task-clock (msec) # 6.863 CPUs utilized
20,372,093,599 cycles # 2.147 GHz
19,819,760,156 instructions # 0.97 insn per cycle
110,387,325 cache-references # 11.632 M/sec
12,460,103 cache-misses # 11.288 % of all cache refs
1.382692145 seconds time elapsed
params 100,20000, 16
Reservation number 3011597: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:51 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 8.698999e-01 7.121739e+09
Reservation number 3011598: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:54 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
8971.538240 task-clock (msec) # 6.439 CPUs utilized
19,050,015,860 cycles # 2.123 GHz
19,818,339,353 instructions # 1.04 insn per cycle
108,157,010 cache-references # 12.056 M/sec
12,025,450 cache-misses # 11.119 % of all cache refs
1.393383913 seconds time elapsed
params 100,20000, 16
Reservation number 3011599: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:19:57 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.041377e+00 5.949046e+09
Reservation number 3011600: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:00 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
6446.549462 task-clock (msec) # 5.745 CPUs utilized
13,049,183,205 cycles # 2.024 GHz
19,805,616,632 instructions # 1.52 insn per cycle
87,245,770 cache-references # 13.534 M/sec
11,126,151 cache-misses # 12.753 % of all cache refs
1.122207078 seconds time elapsed
params 100,20000, 16
Reservation number 3011601: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:03 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 6.730744e-01 9.204331e+09
Reservation number 3011602: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:06 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
6689.318112 task-clock (msec) # 6.025 CPUs utilized
13,397,919,905 cycles # 2.003 GHz
19,807,630,375 instructions # 1.48 insn per cycle
85,006,878 cache-references # 12.708 M/sec
10,468,397 cache-misses # 12.315 % of all cache refs
1.110325437 seconds time elapsed
params 100,20000, 16
Reservation number 3011603: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:09 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 9.995020e-01 6.198287e+09
Reservation number 3011604: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:12 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
11584.198599 task-clock (msec) # 7.244 CPUs utilized
25,193,647,166 cycles # 2.175 GHz
19,830,654,264 instructions # 0.79 insn per cycle
122,038,617 cache-references # 10.535 M/sec
13,568,331 cache-misses # 11.118 % of all cache refs
1.599131245 seconds time elapsed
params 100,20000, 16
Reservation number 3011605: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:15 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.128895e+00 5.487842e+09
Reservation number 3011606: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:18 2021
: node054/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
8903.816150 task-clock (msec) # 6.706 CPUs utilized
18,923,487,014 cycles # 2.125 GHz
19,816,889,060 instructions # 1.05 insn per cycle
99,911,012 cache-references # 11.221 M/sec
12,013,967 cache-misses # 12.025 % of all cache refs
1.327804458 seconds time elapsed
params 100,20000, 16
Reservation number 3011607: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:22 2021
: node068/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 7.124575e-01 8.695537e+09
Reservation number 3011608: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:25 2021
: node068/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
6952.659659 task-clock (msec) # 5.962 CPUs utilized
14,365,849,057 cycles # 2.066 GHz
19,810,404,705 instructions # 1.38 insn per cycle
88,850,693 cache-references # 12.779 M/sec
11,071,808 cache-misses # 12.461 % of all cache refs
1.166105477 seconds time elapsed
params 100,20000, 16
Reservation number 3011609: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:29 2021
: node068/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 1.024912e+00 6.044616e+09
Reservation number 3011610: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:32 2021
: node068/0
Performance counter stats for './heat_pth -p 16 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
11100.845407 task-clock (msec) # 7.128 CPUs utilized
24,066,706,264 cycles # 2.168 GHz
19,823,176,905 instructions # 0.82 insn per cycle
117,027,884 cache-references # 10.542 M/sec
12,643,074 cache-misses # 10.803 % of all cache refs
1.557364321 seconds time elapsed
params 100,20000, 32
Reservation number 3011611: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:35 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 6.505163e-01 9.523513e+09
Reservation number 3011612: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:38 2021
: node068/0
Performance counter stats for './heat_pth -p 32 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
13184.622158 task-clock (msec) # 10.856 CPUs utilized
26,778,404,826 cycles # 2.031 GHz
19,900,303,262 instructions # 0.74 insn per cycle
109,597,837 cache-references # 8.313 M/sec
14,196,791 cache-misses # 12.954 % of all cache refs
1.214555586 seconds time elapsed
params 100,20000, 32
Reservation number 3011613: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:41 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 6.415102e-01 9.657211e+09
Reservation number 3011614: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:44 2021
: node068/0
Performance counter stats for './heat_pth -p 32 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
14647.344056 task-clock (msec) # 11.110 CPUs utilized
30,704,755,917 cycles # 2.096 GHz
19,916,285,333 instructions # 0.65 insn per cycle
121,593,987 cache-references # 8.301 M/sec
15,735,942 cache-misses # 12.941 % of all cache refs
1.318347511 seconds time elapsed
params 100,20000, 32
Reservation number 3011615: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:48 2021
: node053/0
256 2.091224e+01 1.000000e+02 0.000000e+00 8.031238e+01 6.175072e-01 1.003260e+10
Reservation number 3011616: Reserved 1 hosts for 900 seconds
Run on 1 hosts for 960 seconds from Fri Mar 5 15:20:50 2021
: node068/0
Performance counter stats for './heat_pth -p 32 -i 256 -c 100x20000.pgm -t 100x20000.pgm -n 100 -m 20000':
12612.696193 task-clock (msec) # 10.674 CPUs utilized