forked from xtcyclist/Phi-Benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlatency.log
1282 lines (1282 loc) · 53.6 KB
/
latency.log
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
From 4 to 4: Average remote L2 latency 42.175088 ns
From 4 to 20: Average remote L2 latency 42.571628 ns
From 4 to 36: Average remote L2 latency 62.194886 ns
From 4 to 52: Average remote L2 latency 57.385478 ns
From 4 to 68: Average remote L2 latency 39.581209 ns
From 4 to 84: Average remote L2 latency 64.268534 ns
From 4 to 100: Average remote L2 latency 18.018909 ns
From 4 to 116: Average remote L2 latency 25.800546 ns
From 4 to 132: Average remote L2 latency 46.766218 ns
From 4 to 148: Average remote L2 latency 37.245627 ns
From 4 to 164: Average remote L2 latency 52.597898 ns
From 4 to 180: Average remote L2 latency 38.970029 ns
From 4 to 196: Average remote L2 latency 49.334631 ns
From 4 to 212: Average remote L2 latency 62.042091 ns
From 4 to 228: Average remote L2 latency 59.873855 ns
From 20 to 4: Average remote L2 latency 43.426553 ns
From 20 to 20: Average remote L2 latency 43.484761 ns
From 20 to 36: Average remote L2 latency 64.406777 ns
From 20 to 52: Average remote L2 latency 46.569767 ns
From 20 to 68: Average remote L2 latency 60.303137 ns
From 20 to 84: Average remote L2 latency 42.222382 ns
From 20 to 100: Average remote L2 latency 52.612450 ns
From 20 to 116: Average remote L2 latency 26.153430 ns
From 20 to 132: Average remote L2 latency 49.483788 ns
From 20 to 148: Average remote L2 latency 62.696927 ns
From 20 to 164: Average remote L2 latency 54.107659 ns
From 20 to 180: Average remote L2 latency 72.235707 ns
From 20 to 196: Average remote L2 latency 78.216544 ns
From 20 to 212: Average remote L2 latency 59.524609 ns
From 20 to 228: Average remote L2 latency 74.327545 ns
From 36 to 4: Average remote L2 latency 39.624865 ns
From 36 to 20: Average remote L2 latency 70.769602 ns
From 36 to 36: Average remote L2 latency 41.152816 ns
From 36 to 52: Average remote L2 latency 44.572516 ns
From 36 to 68: Average remote L2 latency 83.844498 ns
From 36 to 84: Average remote L2 latency 39.686711 ns
From 36 to 100: Average remote L2 latency 67.444489 ns
From 36 to 116: Average remote L2 latency 43.182808 ns
From 36 to 132: Average remote L2 latency 40.938176 ns
From 36 to 148: Average remote L2 latency 38.253347 ns
From 36 to 164: Average remote L2 latency 41.367457 ns
From 36 to 180: Average remote L2 latency 41.276508 ns
From 36 to 196: Average remote L2 latency 71.624527 ns
From 36 to 212: Average remote L2 latency 43.823093 ns
From 36 to 228: Average remote L2 latency 58.043952 ns
From 52 to 4: Average remote L2 latency 41.807652 ns
From 52 to 20: Average remote L2 latency 63.871994 ns
From 52 to 36: Average remote L2 latency 43.259206 ns
From 52 to 52: Average remote L2 latency 42.298780 ns
From 52 to 68: Average remote L2 latency 29.955117 ns
From 52 to 84: Average remote L2 latency 41.196472 ns
From 52 to 100: Average remote L2 latency 29.296643 ns
From 52 to 116: Average remote L2 latency 79.864549 ns
From 52 to 132: Average remote L2 latency 69.550879 ns
From 52 to 148: Average remote L2 latency 25.618647 ns
From 52 to 164: Average remote L2 latency 88.530214 ns
From 52 to 180: Average remote L2 latency 34.011464 ns
From 52 to 196: Average remote L2 latency 44.463377 ns
From 52 to 212: Average remote L2 latency 58.244041 ns
From 52 to 228: Average remote L2 latency 29.373041 ns
From 68 to 4: Average remote L2 latency 34.575351 ns
From 68 to 20: Average remote L2 latency 44.008630 ns
From 68 to 36: Average remote L2 latency 70.267561 ns
From 68 to 52: Average remote L2 latency 41.276508 ns
From 68 to 68: Average remote L2 latency 29.998773 ns
From 68 to 84: Average remote L2 latency 68.728696 ns
From 68 to 100: Average remote L2 latency 39.108272 ns
From 68 to 116: Average remote L2 latency 47.883077 ns
From 68 to 132: Average remote L2 latency 32.014214 ns
From 68 to 148: Average remote L2 latency 50.702511 ns
From 68 to 164: Average remote L2 latency 41.138264 ns
From 68 to 180: Average remote L2 latency 57.709258 ns
From 68 to 196: Average remote L2 latency 49.698428 ns
From 68 to 212: Average remote L2 latency 48.203219 ns
From 68 to 228: Average remote L2 latency 73.701813 ns
From 84 to 4: Average remote L2 latency 41.516614 ns
From 84 to 20: Average remote L2 latency 43.393811 ns
From 84 to 36: Average remote L2 latency 40.865416 ns
From 84 to 52: Average remote L2 latency 19.546860 ns
From 84 to 68: Average remote L2 latency 73.392584 ns
From 84 to 84: Average remote L2 latency 43.546606 ns
From 84 to 100: Average remote L2 latency 35.401172 ns
From 84 to 116: Average remote L2 latency 36.514393 ns
From 84 to 132: Average remote L2 latency 22.355380 ns
From 84 to 148: Average remote L2 latency 58.043952 ns
From 84 to 164: Average remote L2 latency 26.197085 ns
From 84 to 180: Average remote L2 latency 45.030902 ns
From 84 to 196: Average remote L2 latency 24.356268 ns
From 84 to 212: Average remote L2 latency 41.516614 ns
From 84 to 228: Average remote L2 latency 33.051037 ns
From 100 to 4: Average remote L2 latency 41.611202 ns
From 100 to 20: Average remote L2 latency 42.313332 ns
From 100 to 36: Average remote L2 latency 46.358764 ns
From 100 to 52: Average remote L2 latency 38.238795 ns
From 100 to 68: Average remote L2 latency 53.725671 ns
From 100 to 84: Average remote L2 latency 45.365596 ns
From 100 to 100: Average remote L2 latency 17.102138 ns
From 100 to 116: Average remote L2 latency 41.338353 ns
From 100 to 132: Average remote L2 latency 39.945007 ns
From 100 to 148: Average remote L2 latency 41.884050 ns
From 100 to 164: Average remote L2 latency 15.472324 ns
From 100 to 180: Average remote L2 latency 82.625775 ns
From 100 to 196: Average remote L2 latency 34.895493 ns
From 100 to 212: Average remote L2 latency 67.841029 ns
From 100 to 228: Average remote L2 latency 47.792128 ns
From 116 to 4: Average remote L2 latency 35.295670 ns
From 116 to 20: Average remote L2 latency 76.051947 ns
From 116 to 36: Average remote L2 latency 41.243766 ns
From 116 to 52: Average remote L2 latency 42.280590 ns
From 116 to 68: Average remote L2 latency 55.173587 ns
From 116 to 84: Average remote L2 latency 43.488399 ns
From 116 to 100: Average remote L2 latency 68.830559 ns
From 116 to 116: Average remote L2 latency 41.702151 ns
From 116 to 132: Average remote L2 latency 33.174729 ns
From 116 to 148: Average remote L2 latency 37.187419 ns
From 116 to 164: Average remote L2 latency 40.206942 ns
From 116 to 180: Average remote L2 latency 40.694431 ns
From 116 to 196: Average remote L2 latency 44.128683 ns
From 116 to 212: Average remote L2 latency 47.668436 ns
From 116 to 228: Average remote L2 latency 62.893378 ns
From 132 to 4: Average remote L2 latency 54.380507 ns
From 132 to 20: Average remote L2 latency 40.388841 ns
From 132 to 36: Average remote L2 latency 43.579348 ns
From 132 to 52: Average remote L2 latency 42.069587 ns
From 132 to 68: Average remote L2 latency 21.635060 ns
From 132 to 84: Average remote L2 latency 51.710231 ns
From 132 to 100: Average remote L2 latency 55.741111 ns
From 132 to 116: Average remote L2 latency 42.920874 ns
From 132 to 132: Average remote L2 latency 35.688572 ns
From 132 to 148: Average remote L2 latency 45.944034 ns
From 132 to 164: Average remote L2 latency 57.953002 ns
From 132 to 180: Average remote L2 latency 64.559572 ns
From 132 to 196: Average remote L2 latency 25.527697 ns
From 132 to 212: Average remote L2 latency 42.055035 ns
From 132 to 228: Average remote L2 latency 55.344572 ns
From 148 to 4: Average remote L2 latency 46.416972 ns
From 148 to 20: Average remote L2 latency 41.120074 ns
From 148 to 36: Average remote L2 latency 45.289198 ns
From 148 to 52: Average remote L2 latency 45.074557 ns
From 148 to 68: Average remote L2 latency 39.275619 ns
From 148 to 84: Average remote L2 latency 41.884050 ns
From 148 to 100: Average remote L2 latency 29.831426 ns
From 148 to 116: Average remote L2 latency 37.507562 ns
From 148 to 132: Average remote L2 latency 51.863026 ns
From 148 to 148: Average remote L2 latency 48.996299 ns
From 148 to 164: Average remote L2 latency 42.862666 ns
From 148 to 180: Average remote L2 latency 52.474206 ns
From 148 to 196: Average remote L2 latency 46.067726 ns
From 148 to 212: Average remote L2 latency 76.324795 ns
From 148 to 228: Average remote L2 latency 41.945896 ns
From 164 to 4: Average remote L2 latency 40.527084 ns
From 164 to 20: Average remote L2 latency 50.080416 ns
From 164 to 36: Average remote L2 latency 47.439244 ns
From 164 to 52: Average remote L2 latency 42.648026 ns
From 164 to 68: Average remote L2 latency 93.550625 ns
From 164 to 84: Average remote L2 latency 48.643415 ns
From 164 to 100: Average remote L2 latency 89.341484 ns
From 164 to 116: Average remote L2 latency 59.128070 ns
From 164 to 132: Average remote L2 latency 24.308974 ns
From 164 to 148: Average remote L2 latency 36.696292 ns
From 164 to 164: Average remote L2 latency 42.480679 ns
From 164 to 180: Average remote L2 latency 48.781658 ns
From 164 to 196: Average remote L2 latency 52.903488 ns
From 164 to 212: Average remote L2 latency 33.327524 ns
From 164 to 228: Average remote L2 latency 37.904101 ns
From 180 to 4: Average remote L2 latency 50.844392 ns
From 180 to 20: Average remote L2 latency 28.303475 ns
From 180 to 36: Average remote L2 latency 50.873496 ns
From 180 to 52: Average remote L2 latency 41.778549 ns
From 180 to 68: Average remote L2 latency 70.802344 ns
From 180 to 84: Average remote L2 latency 46.096829 ns
From 180 to 100: Average remote L2 latency 45.747583 ns
From 180 to 116: Average remote L2 latency 43.030013 ns
From 180 to 132: Average remote L2 latency 39.886800 ns
From 180 to 148: Average remote L2 latency 41.516614 ns
From 180 to 164: Average remote L2 latency 26.473572 ns
From 180 to 180: Average remote L2 latency 42.986358 ns
From 180 to 196: Average remote L2 latency 7.981726 ns
From 180 to 212: Average remote L2 latency 24.872861 ns
From 180 to 228: Average remote L2 latency 29.573130 ns
From 196 to 4: Average remote L2 latency 50.949893 ns
From 196 to 20: Average remote L2 latency 20.449079 ns
From 196 to 36: Average remote L2 latency 26.811904 ns
From 196 to 52: Average remote L2 latency 47.315552 ns
From 196 to 68: Average remote L2 latency 42.255124 ns
From 196 to 84: Average remote L2 latency 45.762135 ns
From 196 to 100: Average remote L2 latency 87.675289 ns
From 196 to 116: Average remote L2 latency 25.160261 ns
From 196 to 132: Average remote L2 latency 50.949893 ns
From 196 to 148: Average remote L2 latency 41.825842 ns
From 196 to 164: Average remote L2 latency 42.251486 ns
From 196 to 180: Average remote L2 latency 48.858055 ns
From 196 to 196: Average remote L2 latency 13.656972 ns
From 196 to 212: Average remote L2 latency 7.948984 ns
From 196 to 228: Average remote L2 latency 60.335879 ns
From 212 to 4: Average remote L2 latency 50.749804 ns
From 212 to 20: Average remote L2 latency 28.107024 ns
From 212 to 36: Average remote L2 latency 39.839506 ns
From 212 to 52: Average remote L2 latency 42.025931 ns
From 212 to 68: Average remote L2 latency 41.425665 ns
From 212 to 84: Average remote L2 latency 60.179445 ns
From 212 to 100: Average remote L2 latency 66.786015 ns
From 212 to 116: Average remote L2 latency 41.080057 ns
From 212 to 132: Average remote L2 latency 24.767360 ns
From 212 to 148: Average remote L2 latency 68.666850 ns
From 212 to 164: Average remote L2 latency 25.924237 ns
From 212 to 180: Average remote L2 latency 41.320163 ns
From 212 to 196: Average remote L2 latency 41.887688 ns
From 212 to 212: Average remote L2 latency 63.871994 ns
From 212 to 228: Average remote L2 latency 44.037733 ns
From 228 to 4: Average remote L2 latency 41.807652 ns
From 228 to 20: Average remote L2 latency 54.184056 ns
From 228 to 36: Average remote L2 latency 71.351678 ns
From 228 to 52: Average remote L2 latency 41.029125 ns
From 228 to 68: Average remote L2 latency 24.523615 ns
From 228 to 84: Average remote L2 latency 48.232323 ns
From 228 to 100: Average remote L2 latency 75.531716 ns
From 228 to 116: Average remote L2 latency 57.203579 ns
From 228 to 132: Average remote L2 latency 16.370905 ns
From 228 to 148: Average remote L2 latency 37.827704 ns
From 228 to 164: Average remote L2 latency 43.044565 ns
From 228 to 180: Average remote L2 latency 35.568519 ns
From 228 to 196: Average remote L2 latency 14.602847 ns
From 228 to 212: Average remote L2 latency 58.273145 ns
From 228 to 228: Average remote L2 latency 27.892384 ns
Average memory latency 166.578275 ns
From 4 to 3: L2 latency 26.056114 ns
From 4 to 12: L2 latency 26.247108 ns
From 4 to 20: L2 latency 22.762379 ns
From 4 to 28: L2 latency 40.611212 ns
From 4 to 36: L2 latency 22.979748 ns
From 4 to 44: L2 latency 72.751845 ns
From 4 to 52: L2 latency 23.046596 ns
From 4 to 60: L2 latency 25.144800 ns
From 4 to 68: L2 latency 23.302164 ns
From 4 to 76: L2 latency 27.275291 ns
From 4 to 84: L2 latency 22.989298 ns
From 4 to 92: L2 latency 24.198471 ns
From 4 to 100: L2 latency 23.191660 ns
From 4 to 108: L2 latency 32.856406 ns
From 4 to 116: L2 latency 23.086614 ns
From 4 to 124: L2 latency 22.850145 ns
From 4 to 132: L2 latency 23.889697 ns
From 4 to 140: L2 latency 17.105322 ns
From 4 to 148: L2 latency 21.821961 ns
From 4 to 156: L2 latency 26.033376 ns
From 4 to 164: L2 latency 29.888270 ns
From 4 to 172: L2 latency 22.911081 ns
From 4 to 180: L2 latency 23.689608 ns
From 4 to 188: L2 latency 24.427209 ns
From 4 to 196: L2 latency 22.987479 ns
From 4 to 204: L2 latency 59.818376 ns
From 4 to 212: L2 latency 23.569100 ns
From 4 to 220: L2 latency 34.604909 ns
From 4 to 228: L2 latency 23.222128 ns
From 4 to 236: L2 latency 25.466761 ns
From 4 to 244: L2 latency 26.273938 ns
From 4 to 252: L2 latency 22.981567 ns
From 4 to 255: L2 latency 14.423222 ns
From 12 to 4: L2 latency 18.214905 ns
From 12 to 11: L2 latency 26.399448 ns
From 12 to 20: L2 latency 22.955192 ns
From 12 to 28: L2 latency 39.356109 ns
From 12 to 36: L2 latency 22.901531 ns
From 12 to 44: L2 latency 24.040219 ns
From 12 to 52: L2 latency 20.444986 ns
From 12 to 60: L2 latency 34.991899 ns
From 12 to 68: L2 latency 24.723249 ns
From 12 to 76: L2 latency 22.976110 ns
From 12 to 84: L2 latency 24.015662 ns
From 12 to 92: L2 latency 31.190666 ns
From 12 to 100: L2 latency 60.062575 ns
From 12 to 108: L2 latency 23.338544 ns
From 12 to 116: L2 latency 66.175744 ns
From 12 to 124: L2 latency 117.645413 ns
From 12 to 132: L2 latency 31.560830 ns
From 12 to 140: L2 latency 22.388122 ns
From 12 to 148: L2 latency 24.625933 ns
From 12 to 156: L2 latency 23.388111 ns
From 12 to 164: L2 latency 26.886028 ns
From 12 to 172: L2 latency 20.971584 ns
From 12 to 180: L2 latency 22.964741 ns
From 12 to 188: L2 latency 24.486781 ns
From 12 to 196: L2 latency 22.970198 ns
From 12 to 204: L2 latency 23.139819 ns
From 12 to 212: L2 latency 23.195298 ns
From 12 to 220: L2 latency 28.012892 ns
From 12 to 228: L2 latency 19.973868 ns
From 12 to 236: L2 latency 25.871486 ns
From 12 to 244: L2 latency 20.673724 ns
From 12 to 252: L2 latency 37.704467 ns
From 12 to 255: L2 latency 23.300345 ns
From 20 to 4: L2 latency 23.689154 ns
From 20 to 12: L2 latency 25.961072 ns
From 20 to 19: L2 latency 22.871063 ns
From 20 to 28: L2 latency 24.482688 ns
From 20 to 36: L2 latency 24.040219 ns
From 20 to 44: L2 latency 30.113370 ns
From 20 to 52: L2 latency 25.610007 ns
From 20 to 60: L2 latency 22.987479 ns
From 20 to 68: L2 latency 23.643679 ns
From 20 to 76: L2 latency 14.049419 ns
From 20 to 84: L2 latency 28.814156 ns
From 20 to 92: L2 latency 36.176971 ns
From 20 to 100: L2 latency 22.982022 ns
From 20 to 108: L2 latency 27.168426 ns
From 20 to 116: L2 latency 30.002411 ns
From 20 to 124: L2 latency 23.529083 ns
From 20 to 132: L2 latency 26.576799 ns
From 20 to 140: L2 latency 22.997028 ns
From 20 to 148: L2 latency 19.763775 ns
From 20 to 156: L2 latency 25.341251 ns
From 20 to 164: L2 latency 23.399480 ns
From 20 to 172: L2 latency 28.464910 ns
From 20 to 180: L2 latency 24.253495 ns
From 20 to 188: L2 latency 24.673227 ns
From 20 to 196: L2 latency 22.115728 ns
From 20 to 204: L2 latency 21.968845 ns
From 20 to 212: L2 latency 26.935595 ns
From 20 to 220: L2 latency 42.308784 ns
From 20 to 228: L2 latency 24.095243 ns
From 20 to 236: L2 latency 24.947894 ns
From 20 to 244: L2 latency 83.576197 ns
From 20 to 252: L2 latency 24.755536 ns
From 20 to 255: L2 latency 14.288162 ns
From 28 to 4: L2 latency 47.586127 ns
From 28 to 12: L2 latency 24.492238 ns
From 28 to 20: L2 latency 38.637154 ns
From 28 to 27: L2 latency 26.243015 ns
From 28 to 36: L2 latency 21.917458 ns
From 28 to 44: L2 latency 15.930254 ns
From 28 to 52: L2 latency 25.619556 ns
From 28 to 60: L2 latency 25.104328 ns
From 28 to 68: L2 latency 40.055966 ns
From 28 to 76: L2 latency 27.978786 ns
From 28 to 84: L2 latency 23.172561 ns
From 28 to 92: L2 latency 23.057964 ns
From 28 to 100: L2 latency 25.520421 ns
From 28 to 108: L2 latency 22.968379 ns
From 28 to 116: L2 latency 20.103471 ns
From 28 to 124: L2 latency 20.173957 ns
From 28 to 132: L2 latency 25.173449 ns
From 28 to 140: L2 latency 23.235316 ns
From 28 to 148: L2 latency 20.551852 ns
From 28 to 156: L2 latency 22.966105 ns
From 28 to 164: L2 latency 23.079338 ns
From 28 to 172: L2 latency 25.209829 ns
From 28 to 180: L2 latency 20.948391 ns
From 28 to 188: L2 latency 23.712346 ns
From 28 to 196: L2 latency 22.884251 ns
From 28 to 204: L2 latency 23.424036 ns
From 28 to 212: L2 latency 23.710072 ns
From 28 to 220: L2 latency 26.350335 ns
From 28 to 228: L2 latency 25.920599 ns
From 28 to 236: L2 latency 25.621375 ns
From 28 to 244: L2 latency 24.723249 ns
From 28 to 252: L2 latency 21.984306 ns
From 28 to 255: L2 latency 26.395810 ns
From 36 to 4: L2 latency 26.115231 ns
From 36 to 12: L2 latency 24.250312 ns
From 36 to 20: L2 latency 40.382020 ns
From 36 to 28: L2 latency 14.616035 ns
From 36 to 35: L2 latency 22.273980 ns
From 36 to 44: L2 latency 25.756890 ns
From 36 to 52: L2 latency 24.524979 ns
From 36 to 60: L2 latency 23.055691 ns
From 36 to 68: L2 latency 24.846941 ns
From 36 to 76: L2 latency 22.936092 ns
From 36 to 84: L2 latency 26.529506 ns
From 36 to 92: L2 latency 22.968379 ns
From 36 to 100: L2 latency 23.042503 ns
From 36 to 108: L2 latency 23.548182 ns
From 36 to 116: L2 latency 28.568593 ns
From 36 to 124: L2 latency 31.665877 ns
From 36 to 132: L2 latency 31.568561 ns
From 36 to 140: L2 latency 22.941549 ns
From 36 to 148: L2 latency 22.933818 ns
From 36 to 156: L2 latency 26.100224 ns
From 36 to 164: L2 latency 16.632384 ns
From 36 to 172: L2 latency 22.893801 ns
From 36 to 180: L2 latency 19.939307 ns
From 36 to 188: L2 latency 20.221705 ns
From 36 to 196: L2 latency 24.750079 ns
From 36 to 204: L2 latency 23.954271 ns
From 36 to 212: L2 latency 22.960648 ns
From 36 to 220: L2 latency 30.292540 ns
From 36 to 228: L2 latency 23.521352 ns
From 36 to 236: L2 latency 25.251211 ns
From 36 to 244: L2 latency 24.127985 ns
From 36 to 252: L2 latency 22.930180 ns
From 36 to 255: L2 latency 23.920165 ns
From 44 to 4: L2 latency 22.890163 ns
From 44 to 12: L2 latency 23.987013 ns
From 44 to 20: L2 latency 22.935637 ns
From 44 to 28: L2 latency 19.123036 ns
From 44 to 36: L2 latency 22.939730 ns
From 44 to 43: L2 latency 36.375241 ns
From 44 to 52: L2 latency 26.067482 ns
From 44 to 60: L2 latency 23.433586 ns
From 44 to 68: L2 latency 27.702299 ns
From 44 to 76: L2 latency 23.112989 ns
From 44 to 84: L2 latency 34.053755 ns
From 44 to 92: L2 latency 23.016128 ns
From 44 to 100: L2 latency 23.780558 ns
From 44 to 108: L2 latency 25.564532 ns
From 44 to 116: L2 latency 25.132977 ns
From 44 to 124: L2 latency 37.346126 ns
From 44 to 132: L2 latency 22.859240 ns
From 44 to 140: L2 latency 21.098913 ns
From 44 to 148: L2 latency 24.263045 ns
From 44 to 156: L2 latency 22.739187 ns
From 44 to 164: L2 latency 22.155746 ns
From 44 to 172: L2 latency 14.846592 ns
From 44 to 180: L2 latency 29.369403 ns
From 44 to 188: L2 latency 51.071311 ns
From 44 to 196: L2 latency 27.311216 ns
From 44 to 204: L2 latency 24.423571 ns
From 44 to 212: L2 latency 19.420440 ns
From 44 to 220: L2 latency 24.434939 ns
From 44 to 228: L2 latency 23.288521 ns
From 44 to 236: L2 latency 33.413016 ns
From 44 to 244: L2 latency 23.382199 ns
From 44 to 252: L2 latency 18.852461 ns
From 44 to 255: L2 latency 25.386726 ns
From 52 to 4: L2 latency 25.589088 ns
From 52 to 12: L2 latency 19.453182 ns
From 52 to 20: L2 latency 101.667410 ns
From 52 to 28: L2 latency 22.931999 ns
From 52 to 36: L2 latency 24.360816 ns
From 52 to 44: L2 latency 14.310899 ns
From 52 to 51: L2 latency 21.938376 ns
From 52 to 60: L2 latency 27.462193 ns
From 52 to 68: L2 latency 50.834387 ns
From 52 to 76: L2 latency 21.940195 ns
From 52 to 84: L2 latency 23.053872 ns
From 52 to 92: L2 latency 22.939275 ns
From 52 to 100: L2 latency 14.562374 ns
From 52 to 108: L2 latency 25.918780 ns
From 52 to 116: L2 latency 24.539986 ns
From 52 to 124: L2 latency 27.170245 ns
From 52 to 132: L2 latency 41.794010 ns
From 52 to 140: L2 latency 24.927431 ns
From 52 to 148: L2 latency 26.502676 ns
From 52 to 156: L2 latency 29.277999 ns
From 52 to 164: L2 latency 26.775524 ns
From 52 to 172: L2 latency 80.825885 ns
From 52 to 180: L2 latency 23.153007 ns
From 52 to 188: L2 latency 24.782366 ns
From 52 to 196: L2 latency 38.574399 ns
From 52 to 204: L2 latency 22.991117 ns
From 52 to 212: L2 latency 25.011104 ns
From 52 to 220: L2 latency 23.628218 ns
From 52 to 228: L2 latency 22.979748 ns
From 52 to 236: L2 latency 27.785973 ns
From 52 to 244: L2 latency 26.874659 ns
From 52 to 252: L2 latency 23.424036 ns
From 52 to 255: L2 latency 24.061137 ns
From 60 to 4: L2 latency 29.031526 ns
From 60 to 12: L2 latency 31.047875 ns
From 60 to 20: L2 latency 38.965482 ns
From 60 to 28: L2 latency 27.736405 ns
From 60 to 36: L2 latency 23.794200 ns
From 60 to 44: L2 latency 28.141130 ns
From 60 to 52: L2 latency 23.763732 ns
From 60 to 59: L2 latency 23.283064 ns
From 60 to 68: L2 latency 24.038400 ns
From 60 to 76: L2 latency 22.823315 ns
From 60 to 84: L2 latency 37.183781 ns
From 60 to 92: L2 latency 33.930064 ns
From 60 to 100: L2 latency 27.668193 ns
From 60 to 108: L2 latency 123.712653 ns
From 60 to 116: L2 latency 17.101684 ns
From 60 to 124: L2 latency 29.262537 ns
From 60 to 132: L2 latency 25.892405 ns
From 60 to 140: L2 latency 22.968379 ns
From 60 to 148: L2 latency 31.265245 ns
From 60 to 156: L2 latency 26.489033 ns
From 60 to 164: L2 latency 24.246219 ns
From 60 to 172: L2 latency 29.215244 ns
From 60 to 180: L2 latency 30.473529 ns
From 60 to 188: L2 latency 22.989298 ns
From 60 to 196: L2 latency 25.348527 ns
From 60 to 204: L2 latency 22.924723 ns
From 60 to 212: L2 latency 23.698703 ns
From 60 to 220: L2 latency 22.973836 ns
From 60 to 228: L2 latency 23.081157 ns
From 60 to 236: L2 latency 90.116828 ns
From 60 to 244: L2 latency 23.666416 ns
From 60 to 252: L2 latency 35.106950 ns
From 60 to 255: L2 latency 93.046310 ns
From 68 to 4: L2 latency 23.035227 ns
From 68 to 12: L2 latency 22.891982 ns
From 68 to 20: L2 latency 27.799615 ns
From 68 to 28: L2 latency 26.353973 ns
From 68 to 36: L2 latency 26.512225 ns
From 68 to 44: L2 latency 24.391284 ns
From 68 to 52: L2 latency 23.626399 ns
From 68 to 60: L2 latency 53.398253 ns
From 68 to 67: L2 latency 22.703261 ns
From 68 to 76: L2 latency 17.187176 ns
From 68 to 84: L2 latency 9.605628 ns
From 68 to 92: L2 latency 22.937911 ns
From 68 to 100: L2 latency 24.877409 ns
From 68 to 108: L2 latency 25.346708 ns
From 68 to 116: L2 latency 22.109816 ns
From 68 to 124: L2 latency 24.227120 ns
From 68 to 132: L2 latency 23.542270 ns
From 68 to 140: L2 latency 25.823738 ns
From 68 to 148: L2 latency 23.208941 ns
From 68 to 156: L2 latency 22.352197 ns
From 68 to 164: L2 latency 24.877409 ns
From 68 to 172: L2 latency 42.192823 ns
From 68 to 180: L2 latency 39.415681 ns
From 68 to 188: L2 latency 29.501280 ns
From 68 to 196: L2 latency 25.384907 ns
From 68 to 204: L2 latency 25.300778 ns
From 68 to 212: L2 latency 16.641934 ns
From 68 to 220: L2 latency 25.304416 ns
From 68 to 228: L2 latency 20.053903 ns
From 68 to 236: L2 latency 40.151463 ns
From 68 to 244: L2 latency 39.136921 ns
From 68 to 252: L2 latency 25.470399 ns
From 68 to 255: L2 latency 25.943336 ns
From 76 to 4: L2 latency 23.275334 ns
From 76 to 12: L2 latency 22.992936 ns
From 76 to 20: L2 latency 24.671408 ns
From 76 to 28: L2 latency 23.454504 ns
From 76 to 36: L2 latency 23.048415 ns
From 76 to 44: L2 latency 25.854206 ns
From 76 to 52: L2 latency 60.932052 ns
From 76 to 60: L2 latency 48.793936 ns
From 76 to 68: L2 latency 22.967924 ns
From 76 to 75: L2 latency 15.476417 ns
From 76 to 84: L2 latency 24.665951 ns
From 76 to 92: L2 latency 14.955276 ns
From 76 to 100: L2 latency 22.197582 ns
From 76 to 108: L2 latency 24.037945 ns
From 76 to 116: L2 latency 24.046130 ns
From 76 to 124: L2 latency 37.874543 ns
From 76 to 132: L2 latency 25.310328 ns
From 76 to 140: L2 latency 23.032953 ns
From 76 to 148: L2 latency 22.771928 ns
From 76 to 156: L2 latency 23.792381 ns
From 76 to 164: L2 latency 27.963324 ns
From 76 to 172: L2 latency 25.547251 ns
From 76 to 180: L2 latency 24.377641 ns
From 76 to 188: L2 latency 16.975264 ns
From 76 to 196: L2 latency 22.914719 ns
From 76 to 204: L2 latency 26.725502 ns
From 76 to 212: L2 latency 28.425347 ns
From 76 to 220: L2 latency 23.032953 ns
From 76 to 228: L2 latency 25.865575 ns
From 76 to 236: L2 latency 15.745172 ns
From 76 to 244: L2 latency 24.633209 ns
From 76 to 252: L2 latency 25.911504 ns
From 76 to 255: L2 latency 28.369868 ns
From 84 to 4: L2 latency 16.065314 ns
From 84 to 12: L2 latency 25.161626 ns
From 84 to 20: L2 latency 22.731456 ns
From 84 to 28: L2 latency 24.200290 ns
From 84 to 36: L2 latency 24.679139 ns
From 84 to 44: L2 latency 23.010216 ns
From 84 to 52: L2 latency 25.922873 ns
From 84 to 60: L2 latency 15.781097 ns
From 84 to 68: L2 latency 22.494987 ns
From 84 to 76: L2 latency 22.941549 ns
From 84 to 83: L2 latency 25.987902 ns
From 84 to 92: L2 latency 23.797838 ns
From 84 to 100: L2 latency 22.909262 ns
From 84 to 108: L2 latency 13.910267 ns
From 84 to 116: L2 latency 25.793270 ns
From 84 to 124: L2 latency 24.171641 ns
From 84 to 132: L2 latency 22.525910 ns
From 84 to 140: L2 latency 22.922450 ns
From 84 to 148: L2 latency 13.031240 ns
From 84 to 156: L2 latency 25.434474 ns
From 84 to 164: L2 latency 24.717338 ns
From 84 to 172: L2 latency 24.123892 ns
From 84 to 180: L2 latency 164.039648 ns
From 84 to 188: L2 latency 18.316314 ns
From 84 to 196: L2 latency 185.878889 ns
From 84 to 204: L2 latency 24.621841 ns
From 84 to 212: L2 latency 21.143023 ns
From 84 to 220: L2 latency 23.269422 ns
From 84 to 228: L2 latency 19.058007 ns
From 84 to 236: L2 latency 11.083557 ns
From 84 to 244: L2 latency 27.046099 ns
From 84 to 252: L2 latency 26.623184 ns
From 84 to 255: L2 latency 13.084446 ns
From 92 to 4: L2 latency 23.690973 ns
From 92 to 12: L2 latency 23.941084 ns
From 92 to 20: L2 latency 29.638159 ns
From 92 to 28: L2 latency 27.529040 ns
From 92 to 36: L2 latency 19.701019 ns
From 92 to 44: L2 latency 28.179329 ns
From 92 to 52: L2 latency 23.914254 ns
From 92 to 60: L2 latency 18.964784 ns
From 92 to 68: L2 latency 23.595931 ns
From 92 to 76: L2 latency 24.845122 ns
From 92 to 84: L2 latency 35.888661 ns
From 92 to 91: L2 latency 48.623860 ns
From 92 to 100: L2 latency 24.379460 ns
From 92 to 108: L2 latency 33.140168 ns
From 92 to 116: L2 latency 29.937837 ns
From 92 to 124: L2 latency 68.906957 ns
From 92 to 132: L2 latency 23.345819 ns
From 92 to 140: L2 latency 26.195721 ns
From 92 to 148: L2 latency 24.198926 ns
From 92 to 156: L2 latency 23.077064 ns
From 92 to 164: L2 latency 24.108886 ns
From 92 to 172: L2 latency 24.341261 ns
From 92 to 180: L2 latency 23.891516 ns
From 92 to 188: L2 latency 23.228040 ns
From 92 to 196: L2 latency 22.496806 ns
From 92 to 204: L2 latency 26.393991 ns
From 92 to 212: L2 latency 33.435754 ns
From 92 to 220: L2 latency 22.972017 ns
From 92 to 228: L2 latency 22.926542 ns
From 92 to 236: L2 latency 25.064764 ns
From 92 to 244: L2 latency 24.329893 ns
From 92 to 252: L2 latency 19.776962 ns
From 92 to 255: L2 latency 22.928361 ns
From 100 to 4: L2 latency 26.302132 ns
From 100 to 12: L2 latency 23.206667 ns
From 100 to 20: L2 latency 28.959221 ns
From 100 to 28: L2 latency 23.626399 ns
From 100 to 36: L2 latency 22.996574 ns
From 100 to 44: L2 latency 13.565113 ns
From 100 to 52: L2 latency 28.243903 ns
From 100 to 60: L2 latency 22.951099 ns
From 100 to 68: L2 latency 24.456313 ns
From 100 to 76: L2 latency 23.591838 ns
From 100 to 84: L2 latency 25.970621 ns
From 100 to 92: L2 latency 24.040673 ns
From 100 to 99: L2 latency 44.921762 ns
From 100 to 108: L2 latency 23.159373 ns
From 100 to 116: L2 latency 23.020220 ns
From 100 to 124: L2 latency 25.343070 ns
From 100 to 132: L2 latency 32.629032 ns
From 100 to 140: L2 latency 25.881036 ns
From 100 to 148: L2 latency 34.231562 ns
From 100 to 156: L2 latency 20.530479 ns
From 100 to 164: L2 latency 14.246325 ns
From 100 to 172: L2 latency 27.290298 ns
From 100 to 180: L2 latency 24.791916 ns
From 100 to 188: L2 latency 25.096597 ns
From 100 to 196: L2 latency 24.968813 ns
From 100 to 204: L2 latency 22.909262 ns
From 100 to 212: L2 latency 23.660959 ns
From 100 to 220: L2 latency 28.787781 ns
From 100 to 228: L2 latency 22.718268 ns
From 100 to 236: L2 latency 22.974291 ns
From 100 to 244: L2 latency 24.503606 ns
From 100 to 252: L2 latency 23.185748 ns
From 100 to 255: L2 latency 24.204382 ns
From 108 to 4: L2 latency 36.056463 ns
From 108 to 12: L2 latency 27.784154 ns
From 108 to 20: L2 latency 22.556378 ns
From 108 to 28: L2 latency 20.157131 ns
From 108 to 36: L2 latency 22.861514 ns
From 108 to 44: L2 latency 15.890237 ns
From 108 to 52: L2 latency 24.581823 ns
From 108 to 60: L2 latency 24.482688 ns
From 108 to 68: L2 latency 24.646852 ns
From 108 to 76: L2 latency 28.390787 ns
From 108 to 84: L2 latency 21.967026 ns
From 108 to 92: L2 latency 22.973836 ns
From 108 to 100: L2 latency 34.216100 ns
From 108 to 107: L2 latency 27.868282 ns
From 108 to 116: L2 latency 37.567133 ns
From 108 to 124: L2 latency 150.808319 ns
From 108 to 132: L2 latency 26.399903 ns
From 108 to 140: L2 latency 56.430963 ns
From 108 to 148: L2 latency 24.393103 ns
From 108 to 156: L2 latency 23.132088 ns
From 108 to 164: L2 latency 22.424501 ns
From 108 to 172: L2 latency 23.355824 ns
From 108 to 180: L2 latency 24.299879 ns
From 108 to 188: L2 latency 23.582288 ns
From 108 to 196: L2 latency 28.104751 ns
From 108 to 204: L2 latency 26.779162 ns
From 108 to 212: L2 latency 25.638656 ns
From 108 to 220: L2 latency 16.040758 ns
From 108 to 228: L2 latency 22.911081 ns
From 108 to 236: L2 latency 25.936060 ns
From 108 to 244: L2 latency 27.290298 ns
From 108 to 252: L2 latency 25.653662 ns
From 108 to 255: L2 latency 17.787897 ns
From 116 to 4: L2 latency 28.486284 ns
From 116 to 12: L2 latency 23.717803 ns
From 116 to 20: L2 latency 65.484983 ns
From 116 to 28: L2 latency 22.686436 ns
From 116 to 36: L2 latency 85.214651 ns
From 116 to 44: L2 latency 27.705937 ns
From 116 to 52: L2 latency 17.141247 ns
From 116 to 60: L2 latency 24.246219 ns
From 116 to 68: L2 latency 31.097443 ns
From 116 to 76: L2 latency 23.921984 ns
From 116 to 84: L2 latency 25.772351 ns
From 116 to 92: L2 latency 28.556769 ns
From 116 to 100: L2 latency 22.947006 ns
From 116 to 108: L2 latency 38.616236 ns
From 116 to 115: L2 latency 15.943442 ns
From 116 to 124: L2 latency 24.385372 ns
From 116 to 132: L2 latency 31.265245 ns
From 116 to 140: L2 latency 28.135219 ns
From 116 to 148: L2 latency 49.064965 ns
From 116 to 156: L2 latency 93.858489 ns
From 116 to 164: L2 latency 29.706825 ns
From 116 to 172: L2 latency 22.125278 ns
From 116 to 180: L2 latency 23.754183 ns
From 116 to 188: L2 latency 25.356258 ns
From 116 to 196: L2 latency 24.612291 ns
From 116 to 204: L2 latency 24.042038 ns
From 116 to 212: L2 latency 72.795956 ns
From 116 to 220: L2 latency 22.118002 ns
From 116 to 228: L2 latency 23.090251 ns
From 116 to 236: L2 latency 23.384018 ns
From 116 to 244: L2 latency 22.847871 ns
From 116 to 252: L2 latency 35.768608 ns
From 116 to 255: L2 latency 26.147973 ns
From 124 to 4: L2 latency 27.515398 ns
From 124 to 12: L2 latency 20.353582 ns
From 124 to 20: L2 latency 24.364454 ns
From 124 to 28: L2 latency 52.931227 ns
From 124 to 36: L2 latency 23.418579 ns
From 124 to 44: L2 latency 23.921984 ns
From 124 to 52: L2 latency 25.484496 ns
From 124 to 60: L2 latency 31.680884 ns
From 124 to 68: L2 latency 25.682311 ns
From 124 to 76: L2 latency 24.419933 ns
From 124 to 84: L2 latency 26.750513 ns
From 124 to 92: L2 latency 24.297606 ns
From 124 to 100: L2 latency 25.117970 ns
From 124 to 108: L2 latency 42.776264 ns
From 124 to 116: L2 latency 25.350346 ns
From 124 to 123: L2 latency 24.684596 ns
From 124 to 132: L2 latency 15.010755 ns
From 124 to 140: L2 latency 24.667770 ns
From 124 to 148: L2 latency 33.542619 ns
From 124 to 156: L2 latency 23.075245 ns
From 124 to 164: L2 latency 23.040684 ns
From 124 to 172: L2 latency 23.962002 ns
From 124 to 180: L2 latency 22.714630 ns
From 124 to 188: L2 latency 23.828306 ns
From 124 to 196: L2 latency 44.202807 ns
From 124 to 204: L2 latency 23.736902 ns
From 124 to 212: L2 latency 14.068519 ns
From 124 to 220: L2 latency 22.918812 ns
From 124 to 228: L2 latency 16.277227 ns
From 124 to 236: L2 latency 22.693712 ns
From 124 to 244: L2 latency 27.139322 ns
From 124 to 252: L2 latency 16.090326 ns
From 124 to 255: L2 latency 94.964889 ns
From 132 to 4: L2 latency 21.535470 ns
From 132 to 12: L2 latency 25.409918 ns
From 132 to 20: L2 latency 23.952452 ns
From 132 to 28: L2 latency 24.883320 ns
From 132 to 36: L2 latency 28.709565 ns
From 132 to 44: L2 latency 22.964286 ns
From 132 to 52: L2 latency 23.923803 ns
From 132 to 60: L2 latency 23.170287 ns
From 132 to 68: L2 latency 35.203811 ns
From 132 to 76: L2 latency 24.429482 ns
From 132 to 84: L2 latency 23.502253 ns
From 132 to 92: L2 latency 18.857918 ns
From 132 to 100: L2 latency 24.385372 ns
From 132 to 108: L2 latency 90.219601 ns
From 132 to 116: L2 latency 26.142061 ns
From 132 to 124: L2 latency 26.346243 ns
From 132 to 131: L2 latency 23.983375 ns
From 132 to 140: L2 latency 141.208602 ns
From 132 to 148: L2 latency 22.767836 ns
From 132 to 156: L2 latency 22.947461 ns
From 132 to 164: L2 latency 22.906988 ns
From 132 to 172: L2 latency 73.371666 ns
From 132 to 180: L2 latency 23.004304 ns
From 132 to 188: L2 latency 16.443209 ns
From 132 to 196: L2 latency 23.866960 ns
From 132 to 204: L2 latency 22.954737 ns
From 132 to 212: L2 latency 22.943368 ns
From 132 to 220: L2 latency 23.065695 ns
From 132 to 228: L2 latency 14.611942 ns
From 132 to 236: L2 latency 25.659574 ns
From 132 to 244: L2 latency 25.188456 ns
From 132 to 252: L2 latency 22.912900 ns
From 132 to 255: L2 latency 20.341758 ns
From 140 to 4: L2 latency 26.609086 ns
From 140 to 12: L2 latency 22.995209 ns
From 140 to 20: L2 latency 16.674221 ns
From 140 to 28: L2 latency 39.766746 ns
From 140 to 36: L2 latency 48.831680 ns
From 140 to 44: L2 latency 34.238838 ns
From 140 to 52: L2 latency 26.235739 ns
From 140 to 60: L2 latency 95.443283 ns
From 140 to 68: L2 latency 15.653768 ns
From 140 to 76: L2 latency 22.972017 ns
From 140 to 84: L2 latency 71.288923 ns
From 140 to 92: L2 latency 24.017481 ns
From 140 to 100: L2 latency 26.184352 ns
From 140 to 108: L2 latency 25.140707 ns
From 140 to 116: L2 latency 45.341494 ns
From 140 to 124: L2 latency 30.429874 ns
From 140 to 132: L2 latency 23.063421 ns
From 140 to 139: L2 latency 24.208020 ns
From 140 to 148: L2 latency 26.542239 ns
From 140 to 156: L2 latency 22.880613 ns
From 140 to 164: L2 latency 40.508439 ns
From 140 to 172: L2 latency 24.545898 ns
From 140 to 180: L2 latency 14.955731 ns
From 140 to 188: L2 latency 15.622845 ns
From 140 to 196: L2 latency 22.951099 ns
From 140 to 204: L2 latency 23.573193 ns
From 140 to 212: L2 latency 75.803655 ns
From 140 to 220: L2 latency 42.287866 ns
From 140 to 228: L2 latency 42.648480 ns
From 140 to 236: L2 latency 25.846475 ns
From 140 to 244: L2 latency 23.887878 ns
From 140 to 252: L2 latency 13.029421 ns
From 140 to 255: L2 latency 23.035227 ns
From 148 to 4: L2 latency 23.225766 ns
From 148 to 12: L2 latency 23.796474 ns
From 148 to 20: L2 latency 22.972017 ns
From 148 to 28: L2 latency 24.645033 ns
From 148 to 36: L2 latency 25.640475 ns
From 148 to 44: L2 latency 25.251211 ns
From 148 to 52: L2 latency 27.689111 ns
From 148 to 60: L2 latency 22.861514 ns
From 148 to 68: L2 latency 27.972874 ns
From 148 to 76: L2 latency 40.212853 ns
From 148 to 84: L2 latency 27.994247 ns
From 148 to 92: L2 latency 42.730335 ns
From 148 to 100: L2 latency 23.952452 ns
From 148 to 108: L2 latency 24.095698 ns
From 148 to 116: L2 latency 24.477231 ns
From 148 to 124: L2 latency 23.944722 ns
From 148 to 132: L2 latency 24.225301 ns
From 148 to 140: L2 latency 25.262580 ns
From 148 to 147: L2 latency 38.547569 ns
From 148 to 156: L2 latency 22.464974 ns
From 148 to 164: L2 latency 23.956090 ns
From 148 to 172: L2 latency 22.957011 ns
From 148 to 180: L2 latency 31.518994 ns
From 148 to 188: L2 latency 97.189059 ns
From 148 to 196: L2 latency 23.513621 ns
From 148 to 204: L2 latency 23.500434 ns
From 148 to 212: L2 latency 22.972017 ns
From 148 to 220: L2 latency 26.407179 ns
From 148 to 228: L2 latency 22.975655 ns
From 148 to 236: L2 latency 26.638190 ns
From 148 to 244: L2 latency 35.369794 ns
From 148 to 252: L2 latency 22.951099 ns
From 148 to 255: L2 latency 22.209406 ns
From 156 to 4: L2 latency 26.407179 ns
From 156 to 12: L2 latency 28.049271 ns
From 156 to 20: L2 latency 25.854206 ns
From 156 to 28: L2 latency 27.662281 ns
From 156 to 36: L2 latency 22.897439 ns
From 156 to 44: L2 latency 24.459496 ns
From 156 to 52: L2 latency 24.520887 ns
From 156 to 60: L2 latency 33.483502 ns
From 156 to 68: L2 latency 31.574473 ns
From 156 to 76: L2 latency 17.147158 ns
From 156 to 84: L2 latency 22.947006 ns
From 156 to 92: L2 latency 24.267138 ns
From 156 to 100: L2 latency 23.485427 ns
From 156 to 108: L2 latency 23.037046 ns
From 156 to 116: L2 latency 15.070327 ns
From 156 to 124: L2 latency 60.882940 ns
From 156 to 132: L2 latency 26.767339 ns
From 156 to 140: L2 latency 66.797384 ns
From 156 to 148: L2 latency 37.521659 ns
From 156 to 155: L2 latency 45.505658 ns
From 156 to 164: L2 latency 22.888344 ns
From 156 to 172: L2 latency 28.663635 ns
From 156 to 180: L2 latency 34.751793 ns
From 156 to 188: L2 latency 23.952452 ns
From 156 to 196: L2 latency 31.845047 ns
From 156 to 204: L2 latency 70.196165 ns
From 156 to 212: L2 latency 23.677785 ns
From 156 to 220: L2 latency 23.172561 ns
From 156 to 228: L2 latency 25.178906 ns
From 156 to 236: L2 latency 25.596819 ns
From 156 to 244: L2 latency 34.013738 ns
From 156 to 252: L2 latency 22.948825 ns
From 156 to 255: L2 latency 28.686372 ns
From 164 to 4: L2 latency 25.051122 ns
From 164 to 12: L2 latency 24.636847 ns
From 164 to 20: L2 latency 22.949280 ns
From 164 to 28: L2 latency 12.914825 ns
From 164 to 36: L2 latency 23.063421 ns
From 164 to 44: L2 latency 22.968379 ns
From 164 to 52: L2 latency 26.849648 ns
From 164 to 60: L2 latency 22.977474 ns
From 164 to 68: L2 latency 39.230144 ns
From 164 to 76: L2 latency 25.343070 ns
From 164 to 84: L2 latency 13.025328 ns
From 164 to 92: L2 latency 22.914719 ns
From 164 to 100: L2 latency 12.821147 ns
From 164 to 108: L2 latency 24.099336 ns
From 164 to 116: L2 latency 23.685516 ns
From 164 to 124: L2 latency 95.506493 ns
From 164 to 132: L2 latency 22.941549 ns
From 164 to 140: L2 latency 23.891516 ns
From 164 to 148: L2 latency 23.240773 ns
From 164 to 156: L2 latency 22.995209 ns
From 164 to 163: L2 latency 24.303517 ns
From 164 to 172: L2 latency 24.629571 ns
From 164 to 180: L2 latency 23.069788 ns
From 164 to 188: L2 latency 24.881501 ns
From 164 to 196: L2 latency 24.831934 ns
From 164 to 204: L2 latency 24.179371 ns
From 164 to 212: L2 latency 39.554379 ns
From 164 to 220: L2 latency 24.471319 ns
From 164 to 228: L2 latency 22.521817 ns
From 164 to 236: L2 latency 22.968379 ns
From 164 to 244: L2 latency 28.627255 ns
From 164 to 252: L2 latency 26.411271 ns
From 164 to 255: L2 latency 23.004304 ns
From 172 to 4: L2 latency 42.900410 ns
From 172 to 12: L2 latency 37.452537 ns
From 172 to 20: L2 latency 17.616458 ns
From 172 to 28: L2 latency 23.700522 ns
From 172 to 36: L2 latency 23.687335 ns
From 172 to 44: L2 latency 22.800577 ns
From 172 to 52: L2 latency 26.706857 ns
From 172 to 60: L2 latency 22.117547 ns
From 172 to 68: L2 latency 25.722329 ns
From 172 to 76: L2 latency 23.486791 ns
From 172 to 84: L2 latency 23.760094 ns
From 172 to 92: L2 latency 23.118901 ns
From 172 to 100: L2 latency 24.940618 ns
From 172 to 108: L2 latency 23.061602 ns
From 172 to 116: L2 latency 61.907031 ns
From 172 to 124: L2 latency 25.653662 ns
From 172 to 132: L2 latency 26.710495 ns
From 172 to 140: L2 latency 22.953373 ns
From 172 to 148: L2 latency 46.232344 ns
From 172 to 156: L2 latency 24.080236 ns
From 172 to 164: L2 latency 14.049419 ns
From 172 to 171: L2 latency 22.907443 ns
From 172 to 180: L2 latency 40.668510 ns
From 172 to 188: L2 latency 33.239303 ns
From 172 to 196: L2 latency 22.863333 ns
From 172 to 204: L2 latency 35.226549 ns
From 172 to 212: L2 latency 32.655407 ns
From 172 to 220: L2 latency 21.099368 ns
From 172 to 228: L2 latency 23.176199 ns
From 172 to 236: L2 latency 70.323949 ns
From 172 to 244: L2 latency 24.345354 ns
From 172 to 252: L2 latency 24.371730 ns
From 172 to 255: L2 latency 22.430413 ns
From 180 to 4: L2 latency 29.422608 ns
From 180 to 12: L2 latency 24.177552 ns
From 180 to 20: L2 latency 29.533567 ns
From 180 to 28: L2 latency 38.591679 ns
From 180 to 36: L2 latency 33.250672 ns
From 180 to 44: L2 latency 13.197223 ns
From 180 to 52: L2 latency 23.006578 ns
From 180 to 60: L2 latency 26.521775 ns
From 180 to 68: L2 latency 22.897893 ns
From 180 to 76: L2 latency 22.901531 ns
From 180 to 84: L2 latency 22.212589 ns
From 180 to 92: L2 latency 104.154424 ns
From 180 to 100: L2 latency 24.270776 ns
From 180 to 108: L2 latency 23.080702 ns
From 180 to 116: L2 latency 25.032023 ns
From 180 to 124: L2 latency 24.757355 ns
From 180 to 132: L2 latency 22.032054 ns
From 180 to 140: L2 latency 23.982921 ns
From 180 to 148: L2 latency 27.826445 ns
From 180 to 156: L2 latency 21.223059 ns
From 180 to 164: L2 latency 36.983693 ns
From 180 to 172: L2 latency 24.904239 ns
From 180 to 179: L2 latency 30.155206 ns
From 180 to 188: L2 latency 29.735929 ns
From 180 to 196: L2 latency 22.481800 ns
From 180 to 204: L2 latency 44.290118 ns
From 180 to 212: L2 latency 22.661425 ns
From 180 to 220: L2 latency 30.212504 ns
From 180 to 228: L2 latency 27.736405 ns
From 180 to 236: L2 latency 26.675934 ns
From 180 to 244: L2 latency 13.485078 ns
From 180 to 252: L2 latency 34.971436 ns
From 180 to 255: L2 latency 24.303063 ns
From 188 to 4: L2 latency 24.804649 ns
From 188 to 12: L2 latency 25.522240 ns
From 188 to 20: L2 latency 19.506388 ns
From 188 to 28: L2 latency 23.794200 ns
From 188 to 36: L2 latency 26.208909 ns
From 188 to 44: L2 latency 35.056928 ns
From 188 to 52: L2 latency 26.207090 ns
From 188 to 60: L2 latency 23.675511 ns
From 188 to 68: L2 latency 27.105671 ns
From 188 to 76: L2 latency 22.957011 ns
From 188 to 84: L2 latency 13.723366 ns
From 188 to 92: L2 latency 27.993792 ns
From 188 to 100: L2 latency 24.145265 ns
From 188 to 108: L2 latency 26.666839 ns
From 188 to 116: L2 latency 24.293968 ns