-
Notifications
You must be signed in to change notification settings - Fork 1
/
stats.txt
989 lines (987 loc) · 114 KB
/
stats.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
---------- Begin Simulation Statistics ----------
final_tick 83982487500 # Number of ticks from beginning of simulation (restored from checkpoints and never reset)
host_inst_rate 238494 # Simulator instruction rate (inst/s)
host_mem_usage 691640 # Number of bytes of host memory used
host_op_rate 238962 # Simulator op (including micro ops) rate (op/s)
host_seconds 419.30 # Real time elapsed on the host
host_tick_rate 200292923 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 100000001 # Number of instructions simulated
sim_ops 100196363 # Number of ops (including micro ops) simulated
sim_seconds 0.083982 # Number of seconds simulated
sim_ticks 83982487500 # Number of ticks simulated
system.cpu.branchPred.BTBCorrect 0 # Number of correct BTB predictions (this stat may not work properly.
system.cpu.branchPred.BTBHitPct 99.694597 # BTB Hit Percentage
system.cpu.branchPred.BTBHits 2095393 # Number of BTB hits
system.cpu.branchPred.BTBLookups 2101812 # Number of BTB lookups
system.cpu.branchPred.RASInCorrect 5 # Number of incorrect RAS predictions.
system.cpu.branchPred.condIncorrect 81341 # Number of conditional branches incorrect
system.cpu.branchPred.condPredicted 3727667 # Number of conditional branches predicted
system.cpu.branchPred.indirectHits 291 # Number of indirect target hits.
system.cpu.branchPred.indirectLookups 808 # Number of indirect predictor lookups.
system.cpu.branchPred.indirectMisses 517 # Number of indirect misses.
system.cpu.branchPred.lookups 4477741 # Number of BP lookups
system.cpu.branchPred.usedRAS 65338 # Number of times the RAS was used to get a target.
system.cpu.branchPredindirectMispredicted 171 # Number of mispredicted indirect branches.
system.cpu.committedInsts 100000001 # Number of instructions committed
system.cpu.committedOps 100196363 # Number of ops (including micro ops) committed
system.cpu.cpi 1.679650 # CPI: cycles per instruction
system.cpu.discardedOps 190645 # Number of ops (including micro ops) which were discarded before commit
system.cpu.dtb.accesses 0 # DTB accesses
system.cpu.dtb.align_faults 0 # Number of TLB faults due to alignment restrictions
system.cpu.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions
system.cpu.dtb.flush_entries 0 # Number of entries that have been flushed from TLB
system.cpu.dtb.flush_tlb 0 # Number of times complete TLB was flushed
system.cpu.dtb.flush_tlb_asid 0 # Number of times TLB was flushed by ASID
system.cpu.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA
system.cpu.dtb.flush_tlb_mva_asid 0 # Number of times TLB was flushed by MVA & ASID
system.cpu.dtb.hits 0 # DTB hits
system.cpu.dtb.inst_accesses 0 # ITB inst accesses
system.cpu.dtb.inst_hits 0 # ITB inst hits
system.cpu.dtb.inst_misses 0 # ITB inst misses
system.cpu.dtb.misses 0 # DTB misses
system.cpu.dtb.perms_faults 0 # Number of TLB faults due to permissions restrictions
system.cpu.dtb.prefetch_faults 0 # Number of TLB faults due to prefetch
system.cpu.dtb.read_accesses 0 # DTB read accesses
system.cpu.dtb.read_hits 0 # DTB read hits
system.cpu.dtb.read_misses 0 # DTB read misses
system.cpu.dtb.stage2_mmu.stage2_tlb.accesses 0 # DTB accesses
system.cpu.dtb.stage2_mmu.stage2_tlb.align_faults 0 # Number of TLB faults due to alignment restrictions
system.cpu.dtb.stage2_mmu.stage2_tlb.domain_faults 0 # Number of TLB faults due to domain restrictions
system.cpu.dtb.stage2_mmu.stage2_tlb.flush_entries 0 # Number of entries that have been flushed from TLB
system.cpu.dtb.stage2_mmu.stage2_tlb.flush_tlb 0 # Number of times complete TLB was flushed
system.cpu.dtb.stage2_mmu.stage2_tlb.flush_tlb_asid 0 # Number of times TLB was flushed by ASID
system.cpu.dtb.stage2_mmu.stage2_tlb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA
system.cpu.dtb.stage2_mmu.stage2_tlb.flush_tlb_mva_asid 0 # Number of times TLB was flushed by MVA & ASID
system.cpu.dtb.stage2_mmu.stage2_tlb.hits 0 # DTB hits
system.cpu.dtb.stage2_mmu.stage2_tlb.inst_accesses 0 # ITB inst accesses
system.cpu.dtb.stage2_mmu.stage2_tlb.inst_hits 0 # ITB inst hits
system.cpu.dtb.stage2_mmu.stage2_tlb.inst_misses 0 # ITB inst misses
system.cpu.dtb.stage2_mmu.stage2_tlb.misses 0 # DTB misses
system.cpu.dtb.stage2_mmu.stage2_tlb.perms_faults 0 # Number of TLB faults due to permissions restrictions
system.cpu.dtb.stage2_mmu.stage2_tlb.prefetch_faults 0 # Number of TLB faults due to prefetch
system.cpu.dtb.stage2_mmu.stage2_tlb.read_accesses 0 # DTB read accesses
system.cpu.dtb.stage2_mmu.stage2_tlb.read_hits 0 # DTB read hits
system.cpu.dtb.stage2_mmu.stage2_tlb.read_misses 0 # DTB read misses
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Requested::Data 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Requested::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Requested::total 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Completed::Data 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Completed::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Completed::total 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin::total 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.walks 0 # Table walker walks requested
system.cpu.dtb.stage2_mmu.stage2_tlb.write_accesses 0 # DTB write accesses
system.cpu.dtb.stage2_mmu.stage2_tlb.write_hits 0 # DTB write hits
system.cpu.dtb.stage2_mmu.stage2_tlb.write_misses 0 # DTB write misses
system.cpu.dtb.walker.walkRequestOrigin_Requested::Data 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.walker.walkRequestOrigin_Requested::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.walker.walkRequestOrigin_Requested::total 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.walker.walkRequestOrigin_Completed::Data 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.walker.walkRequestOrigin_Completed::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.walker.walkRequestOrigin_Completed::total 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.walker.walkRequestOrigin::total 0 # Table walker requests started/completed, data/inst
system.cpu.dtb.walker.walks 0 # Table walker walks requested
system.cpu.dtb.write_accesses 0 # DTB write accesses
system.cpu.dtb.write_hits 0 # DTB write hits
system.cpu.dtb.write_misses 0 # DTB write misses
system.cpu.fetch2.amo_instructions 0 # Number of memory atomic instructions successfully decoded
system.cpu.fetch2.fp_instructions 0 # Number of floating point instructions successfully decoded
system.cpu.fetch2.int_instructions 42610069 # Number of integer instructions successfully decoded
system.cpu.fetch2.load_instructions 43402290 # Number of memory load instructions successfully decoded
system.cpu.fetch2.store_instructions 11001398 # Number of memory store instructions successfully decoded
system.cpu.fetch2.vec_instructions 0 # Number of SIMD instructions successfully decoded
system.cpu.idleCycles 35261060 # Total number of cycles that the object has spent stopped
system.cpu.ipc 0.595362 # IPC: instructions per cycle
system.cpu.itb.accesses 0 # DTB accesses
system.cpu.itb.align_faults 0 # Number of TLB faults due to alignment restrictions
system.cpu.itb.domain_faults 0 # Number of TLB faults due to domain restrictions
system.cpu.itb.flush_entries 0 # Number of entries that have been flushed from TLB
system.cpu.itb.flush_tlb 0 # Number of times complete TLB was flushed
system.cpu.itb.flush_tlb_asid 0 # Number of times TLB was flushed by ASID
system.cpu.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA
system.cpu.itb.flush_tlb_mva_asid 0 # Number of times TLB was flushed by MVA & ASID
system.cpu.itb.hits 0 # DTB hits
system.cpu.itb.inst_accesses 0 # ITB inst accesses
system.cpu.itb.inst_hits 0 # ITB inst hits
system.cpu.itb.inst_misses 0 # ITB inst misses
system.cpu.itb.misses 0 # DTB misses
system.cpu.itb.perms_faults 0 # Number of TLB faults due to permissions restrictions
system.cpu.itb.prefetch_faults 0 # Number of TLB faults due to prefetch
system.cpu.itb.read_accesses 0 # DTB read accesses
system.cpu.itb.read_hits 0 # DTB read hits
system.cpu.itb.read_misses 0 # DTB read misses
system.cpu.itb.stage2_mmu.stage2_tlb.accesses 0 # DTB accesses
system.cpu.itb.stage2_mmu.stage2_tlb.align_faults 0 # Number of TLB faults due to alignment restrictions
system.cpu.itb.stage2_mmu.stage2_tlb.domain_faults 0 # Number of TLB faults due to domain restrictions
system.cpu.itb.stage2_mmu.stage2_tlb.flush_entries 0 # Number of entries that have been flushed from TLB
system.cpu.itb.stage2_mmu.stage2_tlb.flush_tlb 0 # Number of times complete TLB was flushed
system.cpu.itb.stage2_mmu.stage2_tlb.flush_tlb_asid 0 # Number of times TLB was flushed by ASID
system.cpu.itb.stage2_mmu.stage2_tlb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA
system.cpu.itb.stage2_mmu.stage2_tlb.flush_tlb_mva_asid 0 # Number of times TLB was flushed by MVA & ASID
system.cpu.itb.stage2_mmu.stage2_tlb.hits 0 # DTB hits
system.cpu.itb.stage2_mmu.stage2_tlb.inst_accesses 0 # ITB inst accesses
system.cpu.itb.stage2_mmu.stage2_tlb.inst_hits 0 # ITB inst hits
system.cpu.itb.stage2_mmu.stage2_tlb.inst_misses 0 # ITB inst misses
system.cpu.itb.stage2_mmu.stage2_tlb.misses 0 # DTB misses
system.cpu.itb.stage2_mmu.stage2_tlb.perms_faults 0 # Number of TLB faults due to permissions restrictions
system.cpu.itb.stage2_mmu.stage2_tlb.prefetch_faults 0 # Number of TLB faults due to prefetch
system.cpu.itb.stage2_mmu.stage2_tlb.read_accesses 0 # DTB read accesses
system.cpu.itb.stage2_mmu.stage2_tlb.read_hits 0 # DTB read hits
system.cpu.itb.stage2_mmu.stage2_tlb.read_misses 0 # DTB read misses
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Requested::Data 0 # Table walker requests started/completed, data/inst
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Requested::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Requested::total 0 # Table walker requests started/completed, data/inst
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Completed::Data 0 # Table walker requests started/completed, data/inst
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Completed::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin_Completed::total 0 # Table walker requests started/completed, data/inst
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walkRequestOrigin::total 0 # Table walker requests started/completed, data/inst
system.cpu.itb.stage2_mmu.stage2_tlb.walker.walks 0 # Table walker walks requested
system.cpu.itb.stage2_mmu.stage2_tlb.write_accesses 0 # DTB write accesses
system.cpu.itb.stage2_mmu.stage2_tlb.write_hits 0 # DTB write hits
system.cpu.itb.stage2_mmu.stage2_tlb.write_misses 0 # DTB write misses
system.cpu.itb.walker.walkRequestOrigin_Requested::Data 0 # Table walker requests started/completed, data/inst
system.cpu.itb.walker.walkRequestOrigin_Requested::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.itb.walker.walkRequestOrigin_Requested::total 0 # Table walker requests started/completed, data/inst
system.cpu.itb.walker.walkRequestOrigin_Completed::Data 0 # Table walker requests started/completed, data/inst
system.cpu.itb.walker.walkRequestOrigin_Completed::Inst 0 # Table walker requests started/completed, data/inst
system.cpu.itb.walker.walkRequestOrigin_Completed::total 0 # Table walker requests started/completed, data/inst
system.cpu.itb.walker.walkRequestOrigin::total 0 # Table walker requests started/completed, data/inst
system.cpu.itb.walker.walks 0 # Table walker walks requested
system.cpu.itb.write_accesses 0 # DTB write accesses
system.cpu.itb.write_hits 0 # DTB write hits
system.cpu.itb.write_misses 0 # DTB write misses
system.cpu.numCycles 167964975 # number of cpu cycles simulated
system.cpu.numFetchSuspends 0 # Number of times Execute suspended instruction fetching
system.cpu.numWorkItemsCompleted 0 # number of work items this cpu completed
system.cpu.numWorkItemsStarted 0 # number of work items this cpu started
system.cpu.op_class_0::No_OpClass 0 0.00% 0.00% # Class of committed instruction
system.cpu.op_class_0::IntAlu 46531400 46.44% 46.44% # Class of committed instruction
system.cpu.op_class_0::IntMult 20720 0.02% 46.46% # Class of committed instruction
system.cpu.op_class_0::IntDiv 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatAdd 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatCmp 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatCvt 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatMult 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatMultAcc 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatDiv 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatMisc 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::FloatSqrt 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdAdd 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdAddAcc 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdAlu 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdCmp 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdCvt 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdMisc 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdMult 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdMultAcc 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdShift 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdShiftAcc 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdDiv 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdSqrt 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatAdd 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatAlu 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatCmp 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatCvt 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatDiv 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatMisc 18 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatMult 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatMultAcc 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatSqrt 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdReduceAdd 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdReduceAlu 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdReduceCmp 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatReduceAdd 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdFloatReduceCmp 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdAes 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdAesMix 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdSha1Hash 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdSha1Hash2 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdSha256Hash 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdSha256Hash2 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdShaSigma2 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdShaSigma3 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::SimdPredAlu 0 0.00% 46.46% # Class of committed instruction
system.cpu.op_class_0::MemRead 42693601 42.61% 89.07% # Class of committed instruction
system.cpu.op_class_0::MemWrite 10950624 10.93% 100.00% # Class of committed instruction
system.cpu.op_class_0::FloatMemRead 0 0.00% 100.00% # Class of committed instruction
system.cpu.op_class_0::FloatMemWrite 0 0.00% 100.00% # Class of committed instruction
system.cpu.op_class_0::IprAccess 0 0.00% 100.00% # Class of committed instruction
system.cpu.op_class_0::InstPrefetch 0 0.00% 100.00% # Class of committed instruction
system.cpu.op_class_0::total 100196363 # Class of committed instruction
system.cpu.tickCycles 132703915 # Number of cycles that the object actually ticked
system.cpu.workload.numSyscalls 84 # Number of system calls
system.membus.snoop_filter.hit_multi_requests 0 # Number of requests hitting in the snoop filter with multiple (>1) holders of the requested data.
system.membus.snoop_filter.hit_multi_snoops 0 # Number of snoops hitting in the snoop filter with multiple (>1) holders of the requested data.
system.membus.snoop_filter.hit_single_requests 167884 # Number of requests hitting in the snoop filter with a single holder of the requested data.
system.membus.snoop_filter.hit_single_snoops 0 # Number of snoops hitting in the snoop filter with a single holder of the requested data.
system.membus.snoop_filter.tot_requests 368869 # Total number of requests made to the snoop filter.
system.membus.snoop_filter.tot_snoops 0 # Total number of snoops made to the snoop filter.
system.tol2bus.snoop_filter.hit_multi_requests 120 # Number of requests hitting in the snoop filter with multiple (>1) holders of the requested data.
system.tol2bus.snoop_filter.hit_multi_snoops 0 # Number of snoops hitting in the snoop filter with multiple (>1) holders of the requested data.
system.tol2bus.snoop_filter.hit_single_requests 710873 # Number of requests hitting in the snoop filter with a single holder of the requested data.
system.tol2bus.snoop_filter.hit_single_snoops 471 # Number of snoops hitting in the snoop filter with a single holder of the requested data.
system.tol2bus.snoop_filter.tot_requests 1423212 # Total number of requests made to the snoop filter.
system.tol2bus.snoop_filter.tot_snoops 471 # Total number of snoops made to the snoop filter.
system.membus.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.membus.trans_dist::ReadResp 64875 # Transaction distribution
system.membus.trans_dist::WritebackDirty 111090 # Transaction distribution
system.membus.trans_dist::CleanEvict 56787 # Transaction distribution
system.membus.trans_dist::ReadExReq 136117 # Transaction distribution
system.membus.trans_dist::ReadExResp 136116 # Transaction distribution
system.membus.trans_dist::ReadSharedReq 64875 # Transaction distribution
system.membus.pkt_count_system.l2.mem_side::system.mem_ctrls.port 569860 # Packet count per connected master and slave (bytes)
system.membus.pkt_count::total 569860 # Packet count per connected master and slave (bytes)
system.membus.pkt_size_system.l2.mem_side::system.mem_ctrls.port 19973184 # Cumulative packet size per connected master and slave (bytes)
system.membus.pkt_size::total 19973184 # Cumulative packet size per connected master and slave (bytes)
system.membus.snoops 0 # Total snoops (count)
system.membus.snoopTraffic 0 # Total snoop traffic (bytes)
system.membus.snoop_fanout::samples 200992 # Request fanout histogram
system.membus.snoop_fanout::mean 0 # Request fanout histogram
system.membus.snoop_fanout::stdev 0 # Request fanout histogram
system.membus.snoop_fanout::underflows 0 0.00% 0.00% # Request fanout histogram
system.membus.snoop_fanout::0 200992 100.00% 100.00% # Request fanout histogram
system.membus.snoop_fanout::1 0 0.00% 100.00% # Request fanout histogram
system.membus.snoop_fanout::overflows 0 0.00% 100.00% # Request fanout histogram
system.membus.snoop_fanout::min_value 0 # Request fanout histogram
system.membus.snoop_fanout::max_value 0 # Request fanout histogram
system.membus.snoop_fanout::total 200992 # Request fanout histogram
system.membus.respLayer1.occupancy 1082625250 # Layer occupancy (ticks)
system.membus.respLayer1.utilization 1.3 # Layer utilization (%)
system.membus.reqLayer0.occupancy 854965500 # Layer occupancy (ticks)
system.membus.reqLayer0.utilization 1.0 # Layer utilization (%)
system.tol2bus.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.tol2bus.trans_dist::ReadResp 425998 # Transaction distribution
system.tol2bus.trans_dist::WritebackDirty 746644 # Transaction distribution
system.tol2bus.trans_dist::WritebackClean 302 # Transaction distribution
system.tol2bus.trans_dist::CleanEvict 132273 # Transaction distribution
system.tol2bus.trans_dist::ReadExReq 286343 # Transaction distribution
system.tol2bus.trans_dist::ReadExResp 286342 # Transaction distribution
system.tol2bus.trans_dist::ReadCleanReq 747 # Transaction distribution
system.tol2bus.trans_dist::ReadSharedReq 425251 # Transaction distribution
system.tol2bus.pkt_count_system.cpu.icache.mem_side::system.l2.cpu_side 1796 # Packet count per connected master and slave (bytes)
system.tol2bus.pkt_count_system.cpu.dcache.mem_side::system.l2.cpu_side 2133756 # Packet count per connected master and slave (bytes)
system.tol2bus.pkt_count::total 2135552 # Packet count per connected master and slave (bytes)
system.tol2bus.pkt_size_system.cpu.icache.mem_side::system.l2.cpu_side 67136 # Cumulative packet size per connected master and slave (bytes)
system.tol2bus.pkt_size_system.cpu.dcache.mem_side::system.l2.cpu_side 86217408 # Cumulative packet size per connected master and slave (bytes)
system.tol2bus.pkt_size::total 86284544 # Cumulative packet size per connected master and slave (bytes)
system.tol2bus.snoops 168348 # Total snoops (count)
system.tol2bus.snoopTraffic 7109760 # Total snoop traffic (bytes)
system.tol2bus.snoop_fanout::samples 880689 # Request fanout histogram
system.tol2bus.snoop_fanout::mean 0.000673 # Request fanout histogram
system.tol2bus.snoop_fanout::stdev 0.025940 # Request fanout histogram
system.tol2bus.snoop_fanout::underflows 0 0.00% 0.00% # Request fanout histogram
system.tol2bus.snoop_fanout::0 880096 99.93% 99.93% # Request fanout histogram
system.tol2bus.snoop_fanout::1 593 0.07% 100.00% # Request fanout histogram
system.tol2bus.snoop_fanout::2 0 0.00% 100.00% # Request fanout histogram
system.tol2bus.snoop_fanout::overflows 0 0.00% 100.00% # Request fanout histogram
system.tol2bus.snoop_fanout::min_value 0 # Request fanout histogram
system.tol2bus.snoop_fanout::max_value 1 # Request fanout histogram
system.tol2bus.snoop_fanout::total 880689 # Request fanout histogram
system.tol2bus.reqLayer0.occupancy 1347462000 # Layer occupancy (ticks)
system.tol2bus.reqLayer0.utilization 1.6 # Layer utilization (%)
system.tol2bus.respLayer1.occupancy 1067391496 # Layer occupancy (ticks)
system.tol2bus.respLayer1.utilization 1.3 # Layer utilization (%)
system.tol2bus.respLayer0.occupancy 1120500 # Layer occupancy (ticks)
system.tol2bus.respLayer0.utilization 0.0 # Layer utilization (%)
system.voltage_domain.voltage 1 # Voltage in Volts
system.clk_domain.clock 1000 # Clock period in ticks
system.l2.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.l2.demand_hits::.cpu.inst 79 # number of demand (read+write) hits
system.l2.demand_hits::.cpu.data 511266 # number of demand (read+write) hits
system.l2.demand_hits::total 511345 # number of demand (read+write) hits
system.l2.overall_hits::.cpu.inst 79 # number of overall hits
system.l2.overall_hits::.cpu.data 511266 # number of overall hits
system.l2.overall_hits::total 511345 # number of overall hits
system.l2.demand_misses::.cpu.inst 668 # number of demand (read+write) misses
system.l2.demand_misses::.cpu.data 200328 # number of demand (read+write) misses
system.l2.demand_misses::total 200996 # number of demand (read+write) misses
system.l2.overall_misses::.cpu.inst 668 # number of overall misses
system.l2.overall_misses::.cpu.data 200328 # number of overall misses
system.l2.overall_misses::total 200996 # number of overall misses
system.l2.demand_miss_latency::.cpu.inst 52160000 # number of demand (read+write) miss cycles
system.l2.demand_miss_latency::.cpu.data 16948534000 # number of demand (read+write) miss cycles
system.l2.demand_miss_latency::total 17000694000 # number of demand (read+write) miss cycles
system.l2.overall_miss_latency::.cpu.inst 52160000 # number of overall miss cycles
system.l2.overall_miss_latency::.cpu.data 16948534000 # number of overall miss cycles
system.l2.overall_miss_latency::total 17000694000 # number of overall miss cycles
system.l2.demand_accesses::.cpu.inst 747 # number of demand (read+write) accesses
system.l2.demand_accesses::.cpu.data 711594 # number of demand (read+write) accesses
system.l2.demand_accesses::total 712341 # number of demand (read+write) accesses
system.l2.overall_accesses::.cpu.inst 747 # number of overall (read+write) accesses
system.l2.overall_accesses::.cpu.data 711594 # number of overall (read+write) accesses
system.l2.overall_accesses::total 712341 # number of overall (read+write) accesses
system.l2.demand_miss_rate::.cpu.inst 0.894244 # miss rate for demand accesses
system.l2.demand_miss_rate::.cpu.data 0.281520 # miss rate for demand accesses
system.l2.demand_miss_rate::total 0.282163 # miss rate for demand accesses
system.l2.overall_miss_rate::.cpu.inst 0.894244 # miss rate for overall accesses
system.l2.overall_miss_rate::.cpu.data 0.281520 # miss rate for overall accesses
system.l2.overall_miss_rate::total 0.282163 # miss rate for overall accesses
system.l2.demand_avg_miss_latency::.cpu.inst 78083.832335 # average overall miss latency
system.l2.demand_avg_miss_latency::.cpu.data 84603.919572 # average overall miss latency
system.l2.demand_avg_miss_latency::total 84582.250393 # average overall miss latency
system.l2.overall_avg_miss_latency::.cpu.inst 78083.832335 # average overall miss latency
system.l2.overall_avg_miss_latency::.cpu.data 84603.919572 # average overall miss latency
system.l2.overall_avg_miss_latency::total 84582.250393 # average overall miss latency
system.l2.blocked_cycles::no_mshrs 0 # number of cycles access was blocked
system.l2.blocked_cycles::no_targets 0 # number of cycles access was blocked
system.l2.blocked::no_mshrs 0 # number of cycles access was blocked
system.l2.blocked::no_targets 0 # number of cycles access was blocked
system.l2.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked
system.l2.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked
system.l2.writebacks::.writebacks 111090 # number of writebacks
system.l2.writebacks::total 111090 # number of writebacks
system.l2.demand_mshr_hits::.cpu.data 4 # number of demand (read+write) MSHR hits
system.l2.demand_mshr_hits::total 4 # number of demand (read+write) MSHR hits
system.l2.overall_mshr_hits::.cpu.data 4 # number of overall MSHR hits
system.l2.overall_mshr_hits::total 4 # number of overall MSHR hits
system.l2.demand_mshr_misses::.cpu.inst 668 # number of demand (read+write) MSHR misses
system.l2.demand_mshr_misses::.cpu.data 200324 # number of demand (read+write) MSHR misses
system.l2.demand_mshr_misses::total 200992 # number of demand (read+write) MSHR misses
system.l2.overall_mshr_misses::.cpu.inst 668 # number of overall MSHR misses
system.l2.overall_mshr_misses::.cpu.data 200324 # number of overall MSHR misses
system.l2.overall_mshr_misses::total 200992 # number of overall MSHR misses
system.l2.demand_mshr_miss_latency::.cpu.inst 45480000 # number of demand (read+write) MSHR miss cycles
system.l2.demand_mshr_miss_latency::.cpu.data 14945060000 # number of demand (read+write) MSHR miss cycles
system.l2.demand_mshr_miss_latency::total 14990540000 # number of demand (read+write) MSHR miss cycles
system.l2.overall_mshr_miss_latency::.cpu.inst 45480000 # number of overall MSHR miss cycles
system.l2.overall_mshr_miss_latency::.cpu.data 14945060000 # number of overall MSHR miss cycles
system.l2.overall_mshr_miss_latency::total 14990540000 # number of overall MSHR miss cycles
system.l2.demand_mshr_miss_rate::.cpu.inst 0.894244 # mshr miss rate for demand accesses
system.l2.demand_mshr_miss_rate::.cpu.data 0.281514 # mshr miss rate for demand accesses
system.l2.demand_mshr_miss_rate::total 0.282157 # mshr miss rate for demand accesses
system.l2.overall_mshr_miss_rate::.cpu.inst 0.894244 # mshr miss rate for overall accesses
system.l2.overall_mshr_miss_rate::.cpu.data 0.281514 # mshr miss rate for overall accesses
system.l2.overall_mshr_miss_rate::total 0.282157 # mshr miss rate for overall accesses
system.l2.demand_avg_mshr_miss_latency::.cpu.inst 68083.832335 # average overall mshr miss latency
system.l2.demand_avg_mshr_miss_latency::.cpu.data 74604.440806 # average overall mshr miss latency
system.l2.demand_avg_mshr_miss_latency::total 74582.769463 # average overall mshr miss latency
system.l2.overall_avg_mshr_miss_latency::.cpu.inst 68083.832335 # average overall mshr miss latency
system.l2.overall_avg_mshr_miss_latency::.cpu.data 74604.440806 # average overall mshr miss latency
system.l2.overall_avg_mshr_miss_latency::total 74582.769463 # average overall mshr miss latency
system.l2.replacements 168348 # number of replacements
system.l2.WritebackDirty_hits::.writebacks 635554 # number of WritebackDirty hits
system.l2.WritebackDirty_hits::total 635554 # number of WritebackDirty hits
system.l2.WritebackDirty_accesses::.writebacks 635554 # number of WritebackDirty accesses(hits+misses)
system.l2.WritebackDirty_accesses::total 635554 # number of WritebackDirty accesses(hits+misses)
system.l2.WritebackClean_hits::.writebacks 293 # number of WritebackClean hits
system.l2.WritebackClean_hits::total 293 # number of WritebackClean hits
system.l2.WritebackClean_accesses::.writebacks 293 # number of WritebackClean accesses(hits+misses)
system.l2.WritebackClean_accesses::total 293 # number of WritebackClean accesses(hits+misses)
system.l2.ReadExReq_hits::.cpu.data 150226 # number of ReadExReq hits
system.l2.ReadExReq_hits::total 150226 # number of ReadExReq hits
system.l2.ReadExReq_misses::.cpu.data 136117 # number of ReadExReq misses
system.l2.ReadExReq_misses::total 136117 # number of ReadExReq misses
system.l2.ReadExReq_miss_latency::.cpu.data 11816959000 # number of ReadExReq miss cycles
system.l2.ReadExReq_miss_latency::total 11816959000 # number of ReadExReq miss cycles
system.l2.ReadExReq_accesses::.cpu.data 286343 # number of ReadExReq accesses(hits+misses)
system.l2.ReadExReq_accesses::total 286343 # number of ReadExReq accesses(hits+misses)
system.l2.ReadExReq_miss_rate::.cpu.data 0.475363 # miss rate for ReadExReq accesses
system.l2.ReadExReq_miss_rate::total 0.475363 # miss rate for ReadExReq accesses
system.l2.ReadExReq_avg_miss_latency::.cpu.data 86814.718220 # average ReadExReq miss latency
system.l2.ReadExReq_avg_miss_latency::total 86814.718220 # average ReadExReq miss latency
system.l2.ReadExReq_mshr_misses::.cpu.data 136117 # number of ReadExReq MSHR misses
system.l2.ReadExReq_mshr_misses::total 136117 # number of ReadExReq MSHR misses
system.l2.ReadExReq_mshr_miss_latency::.cpu.data 10455799000 # number of ReadExReq MSHR miss cycles
system.l2.ReadExReq_mshr_miss_latency::total 10455799000 # number of ReadExReq MSHR miss cycles
system.l2.ReadExReq_mshr_miss_rate::.cpu.data 0.475363 # mshr miss rate for ReadExReq accesses
system.l2.ReadExReq_mshr_miss_rate::total 0.475363 # mshr miss rate for ReadExReq accesses
system.l2.ReadExReq_avg_mshr_miss_latency::.cpu.data 76814.791687 # average ReadExReq mshr miss latency
system.l2.ReadExReq_avg_mshr_miss_latency::total 76814.791687 # average ReadExReq mshr miss latency
system.l2.ReadCleanReq_hits::.cpu.inst 79 # number of ReadCleanReq hits
system.l2.ReadCleanReq_hits::total 79 # number of ReadCleanReq hits
system.l2.ReadCleanReq_misses::.cpu.inst 668 # number of ReadCleanReq misses
system.l2.ReadCleanReq_misses::total 668 # number of ReadCleanReq misses
system.l2.ReadCleanReq_miss_latency::.cpu.inst 52160000 # number of ReadCleanReq miss cycles
system.l2.ReadCleanReq_miss_latency::total 52160000 # number of ReadCleanReq miss cycles
system.l2.ReadCleanReq_accesses::.cpu.inst 747 # number of ReadCleanReq accesses(hits+misses)
system.l2.ReadCleanReq_accesses::total 747 # number of ReadCleanReq accesses(hits+misses)
system.l2.ReadCleanReq_miss_rate::.cpu.inst 0.894244 # miss rate for ReadCleanReq accesses
system.l2.ReadCleanReq_miss_rate::total 0.894244 # miss rate for ReadCleanReq accesses
system.l2.ReadCleanReq_avg_miss_latency::.cpu.inst 78083.832335 # average ReadCleanReq miss latency
system.l2.ReadCleanReq_avg_miss_latency::total 78083.832335 # average ReadCleanReq miss latency
system.l2.ReadCleanReq_mshr_misses::.cpu.inst 668 # number of ReadCleanReq MSHR misses
system.l2.ReadCleanReq_mshr_misses::total 668 # number of ReadCleanReq MSHR misses
system.l2.ReadCleanReq_mshr_miss_latency::.cpu.inst 45480000 # number of ReadCleanReq MSHR miss cycles
system.l2.ReadCleanReq_mshr_miss_latency::total 45480000 # number of ReadCleanReq MSHR miss cycles
system.l2.ReadCleanReq_mshr_miss_rate::.cpu.inst 0.894244 # mshr miss rate for ReadCleanReq accesses
system.l2.ReadCleanReq_mshr_miss_rate::total 0.894244 # mshr miss rate for ReadCleanReq accesses
system.l2.ReadCleanReq_avg_mshr_miss_latency::.cpu.inst 68083.832335 # average ReadCleanReq mshr miss latency
system.l2.ReadCleanReq_avg_mshr_miss_latency::total 68083.832335 # average ReadCleanReq mshr miss latency
system.l2.ReadSharedReq_hits::.cpu.data 361040 # number of ReadSharedReq hits
system.l2.ReadSharedReq_hits::total 361040 # number of ReadSharedReq hits
system.l2.ReadSharedReq_misses::.cpu.data 64211 # number of ReadSharedReq misses
system.l2.ReadSharedReq_misses::total 64211 # number of ReadSharedReq misses
system.l2.ReadSharedReq_miss_latency::.cpu.data 5131575000 # number of ReadSharedReq miss cycles
system.l2.ReadSharedReq_miss_latency::total 5131575000 # number of ReadSharedReq miss cycles
system.l2.ReadSharedReq_accesses::.cpu.data 425251 # number of ReadSharedReq accesses(hits+misses)
system.l2.ReadSharedReq_accesses::total 425251 # number of ReadSharedReq accesses(hits+misses)
system.l2.ReadSharedReq_miss_rate::.cpu.data 0.150996 # miss rate for ReadSharedReq accesses
system.l2.ReadSharedReq_miss_rate::total 0.150996 # miss rate for ReadSharedReq accesses
system.l2.ReadSharedReq_avg_miss_latency::.cpu.data 79917.381757 # average ReadSharedReq miss latency
system.l2.ReadSharedReq_avg_miss_latency::total 79917.381757 # average ReadSharedReq miss latency
system.l2.ReadSharedReq_mshr_hits::.cpu.data 4 # number of ReadSharedReq MSHR hits
system.l2.ReadSharedReq_mshr_hits::total 4 # number of ReadSharedReq MSHR hits
system.l2.ReadSharedReq_mshr_misses::.cpu.data 64207 # number of ReadSharedReq MSHR misses
system.l2.ReadSharedReq_mshr_misses::total 64207 # number of ReadSharedReq MSHR misses
system.l2.ReadSharedReq_mshr_miss_latency::.cpu.data 4489261000 # number of ReadSharedReq MSHR miss cycles
system.l2.ReadSharedReq_mshr_miss_latency::total 4489261000 # number of ReadSharedReq MSHR miss cycles
system.l2.ReadSharedReq_mshr_miss_rate::.cpu.data 0.150986 # mshr miss rate for ReadSharedReq accesses
system.l2.ReadSharedReq_mshr_miss_rate::total 0.150986 # mshr miss rate for ReadSharedReq accesses
system.l2.ReadSharedReq_avg_mshr_miss_latency::.cpu.data 69918.560282 # average ReadSharedReq mshr miss latency
system.l2.ReadSharedReq_avg_mshr_miss_latency::total 69918.560282 # average ReadSharedReq mshr miss latency
system.l2.tags.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.l2.tags.tagsinuse 31906.830685 # Cycle average of tags in use
system.l2.tags.total_refs 1423087 # Total number of references to valid blocks.
system.l2.tags.sampled_refs 201116 # Sample count of references to valid blocks.
system.l2.tags.avg_refs 7.075951 # Average number of references to valid blocks.
system.l2.tags.warmup_cycle 77000 # Cycle when the warmup percentage was hit.
system.l2.tags.occ_blocks::.writebacks 41.333497 # Average occupied blocks per requestor
system.l2.tags.occ_blocks::.cpu.inst 83.454834 # Average occupied blocks per requestor
system.l2.tags.occ_blocks::.cpu.data 31782.042354 # Average occupied blocks per requestor
system.l2.tags.occ_percent::.writebacks 0.001261 # Average percentage of cache occupancy
system.l2.tags.occ_percent::.cpu.inst 0.002547 # Average percentage of cache occupancy
system.l2.tags.occ_percent::.cpu.data 0.969911 # Average percentage of cache occupancy
system.l2.tags.occ_percent::total 0.973719 # Average percentage of cache occupancy
system.l2.tags.occ_task_id_blocks::1024 32768 # Occupied blocks per task id
system.l2.tags.age_task_id_blocks_1024::0 87 # Occupied blocks per task id
system.l2.tags.age_task_id_blocks_1024::1 116 # Occupied blocks per task id
system.l2.tags.age_task_id_blocks_1024::2 1188 # Occupied blocks per task id
system.l2.tags.age_task_id_blocks_1024::3 15743 # Occupied blocks per task id
system.l2.tags.age_task_id_blocks_1024::4 15634 # Occupied blocks per task id
system.l2.tags.occ_task_id_percent::1024 1 # Percentage of cache occupancy per task id
system.l2.tags.tag_accesses 11585852 # Number of tag accesses
system.l2.tags.data_accesses 11585852 # Number of data accesses
system.cpu_voltage_domain.voltage 1 # Voltage in Volts
system.mem_ctrls.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.mem_ctrls.bytes_read::.cpu.inst 42752 # Number of bytes read from this memory
system.mem_ctrls.bytes_read::.cpu.data 12820736 # Number of bytes read from this memory
system.mem_ctrls.bytes_read::total 12863488 # Number of bytes read from this memory
system.mem_ctrls.bytes_inst_read::.cpu.inst 42752 # Number of instructions bytes read from this memory
system.mem_ctrls.bytes_inst_read::total 42752 # Number of instructions bytes read from this memory
system.mem_ctrls.bytes_written::.writebacks 7109760 # Number of bytes written to this memory
system.mem_ctrls.bytes_written::total 7109760 # Number of bytes written to this memory
system.mem_ctrls.num_reads::.cpu.inst 668 # Number of read requests responded to by this memory
system.mem_ctrls.num_reads::.cpu.data 200324 # Number of read requests responded to by this memory
system.mem_ctrls.num_reads::total 200992 # Number of read requests responded to by this memory
system.mem_ctrls.num_writes::.writebacks 111090 # Number of write requests responded to by this memory
system.mem_ctrls.num_writes::total 111090 # Number of write requests responded to by this memory
system.mem_ctrls.bw_read::.cpu.inst 509059 # Total read bandwidth from this memory (bytes/s)
system.mem_ctrls.bw_read::.cpu.data 152659636 # Total read bandwidth from this memory (bytes/s)
system.mem_ctrls.bw_read::total 153168695 # Total read bandwidth from this memory (bytes/s)
system.mem_ctrls.bw_inst_read::.cpu.inst 509059 # Instruction read bandwidth from this memory (bytes/s)
system.mem_ctrls.bw_inst_read::total 509059 # Instruction read bandwidth from this memory (bytes/s)
system.mem_ctrls.bw_write::.writebacks 84657650 # Write bandwidth from this memory (bytes/s)
system.mem_ctrls.bw_write::total 84657650 # Write bandwidth from this memory (bytes/s)
system.mem_ctrls.bw_total::.writebacks 84657650 # Total bandwidth to/from this memory (bytes/s)
system.mem_ctrls.bw_total::.cpu.inst 509059 # Total bandwidth to/from this memory (bytes/s)
system.mem_ctrls.bw_total::.cpu.data 152659636 # Total bandwidth to/from this memory (bytes/s)
system.mem_ctrls.bw_total::total 237826344 # Total bandwidth to/from this memory (bytes/s)
system.mem_ctrls.avgPriority_.writebacks::samples 111090.00 # Average QoS priority value for accepted requests
system.mem_ctrls.avgPriority_.cpu.inst::samples 668.00 # Average QoS priority value for accepted requests
system.mem_ctrls.avgPriority_.cpu.data::samples 200290.00 # Average QoS priority value for accepted requests
system.mem_ctrls.priorityMinLatency 0.000000018750 # per QoS priority minimum request to response latency (s)
system.mem_ctrls.priorityMaxLatency 0.002984430500 # per QoS priority maximum request to response latency (s)
system.mem_ctrls.numReadWriteTurnArounds 6643 # Number of turnarounds from READ to WRITE
system.mem_ctrls.numWriteReadTurnArounds 6643 # Number of turnarounds from WRITE to READ
system.mem_ctrls.numStayReadState 524068 # Number of times bus staying in READ state
system.mem_ctrls.numStayWriteState 104606 # Number of times bus staying in WRITE state
system.mem_ctrls.readReqs 200992 # Number of read requests accepted
system.mem_ctrls.writeReqs 111090 # Number of write requests accepted
system.mem_ctrls.readBursts 200992 # Number of DRAM read bursts, including those serviced by the write queue
system.mem_ctrls.writeBursts 111090 # Number of DRAM write bursts, including those merged in the write queue
system.mem_ctrls.servicedByWrQ 34 # Number of DRAM read bursts serviced by the write queue
system.mem_ctrls.mergedWrBursts 0 # Number of DRAM write bursts merged with an existing one
system.mem_ctrls.neitherReadNorWriteReqs 0 # Number of requests that are neither read nor write
system.mem_ctrls.perBankRdBursts::0 12843 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::1 12743 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::2 12822 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::3 12536 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::4 12513 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::5 12343 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::6 12295 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::7 12465 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::8 12452 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::9 12399 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::10 12451 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::11 12468 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::12 12637 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::13 12711 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::14 12665 # Per bank write bursts
system.mem_ctrls.perBankRdBursts::15 12615 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::0 7138 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::1 7134 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::2 7163 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::3 6979 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::4 6978 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::5 6933 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::6 6825 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::7 6802 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::8 6794 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::9 6773 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::10 6863 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::11 6811 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::12 6901 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::13 6998 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::14 7010 # Per bank write bursts
system.mem_ctrls.perBankWrBursts::15 6969 # Per bank write bursts
system.mem_ctrls.avgRdQLen 1.08 # Average read queue length when enqueuing
system.mem_ctrls.avgWrQLen 24.58 # Average write queue length when enqueuing
system.mem_ctrls.totQLat 2930300250 # Total ticks spent queuing
system.mem_ctrls.totBusLat 1004790000 # Total ticks spent in databus transfers
system.mem_ctrls.totMemAccLat 6698262750 # Total ticks spent from burst creation until serviced by the DRAM
system.mem_ctrls.avgQLat 14581.66 # Average queueing delay per DRAM burst
system.mem_ctrls.avgBusLat 5000.00 # Average bus latency per DRAM burst
system.mem_ctrls.avgMemAccLat 33331.66 # Average memory access latency per DRAM burst
system.mem_ctrls.numRdRetry 0 # Number of times read queue was full causing retry
system.mem_ctrls.numWrRetry 0 # Number of times write queue was full causing retry
system.mem_ctrls.readRowHits 137919 # Number of row buffer hits during reads
system.mem_ctrls.writeRowHits 69728 # Number of row buffer hits during writes
system.mem_ctrls.readRowHitRate 68.63 # Row buffer hit rate for reads
system.mem_ctrls.writeRowHitRate 62.77 # Row buffer hit rate for writes
system.mem_ctrls.readPktSize::0 0 # Read request sizes (log2)
system.mem_ctrls.readPktSize::1 0 # Read request sizes (log2)
system.mem_ctrls.readPktSize::2 0 # Read request sizes (log2)
system.mem_ctrls.readPktSize::3 0 # Read request sizes (log2)
system.mem_ctrls.readPktSize::4 0 # Read request sizes (log2)
system.mem_ctrls.readPktSize::5 0 # Read request sizes (log2)
system.mem_ctrls.readPktSize::6 200992 # Read request sizes (log2)
system.mem_ctrls.writePktSize::0 0 # Write request sizes (log2)
system.mem_ctrls.writePktSize::1 0 # Write request sizes (log2)
system.mem_ctrls.writePktSize::2 0 # Write request sizes (log2)
system.mem_ctrls.writePktSize::3 0 # Write request sizes (log2)
system.mem_ctrls.writePktSize::4 0 # Write request sizes (log2)
system.mem_ctrls.writePktSize::5 0 # Write request sizes (log2)
system.mem_ctrls.writePktSize::6 111090 # Write request sizes (log2)
system.mem_ctrls.rdQLenPdf::0 139950 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::1 58341 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::2 2363 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::3 303 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::4 1 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::5 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::6 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::7 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::8 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::9 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::10 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::11 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::12 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::13 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::14 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::15 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::16 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::17 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::18 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::19 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::20 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::21 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::22 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::23 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::24 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::25 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::26 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::27 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::28 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::29 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::30 0 # What read queue length does an incoming req see
system.mem_ctrls.rdQLenPdf::31 0 # What read queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::0 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::1 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::2 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::3 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::4 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::5 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::6 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::7 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::8 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::9 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::10 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::11 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::12 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::13 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::14 1 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::15 2259 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::16 2296 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::17 5427 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::18 6684 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::19 6700 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::20 6818 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::21 6697 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::22 6715 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::23 6722 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::24 6736 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::25 6727 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::26 6726 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::27 6674 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::28 7209 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::29 6711 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::30 6663 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::31 6662 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::32 6644 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::33 5 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::34 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::35 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::36 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::37 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::38 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::39 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::40 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::41 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::42 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::43 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::44 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::45 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::46 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::47 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::48 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::49 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::50 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::51 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::52 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::53 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::54 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::55 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::56 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::57 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::58 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::59 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::60 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::61 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::62 0 # What write queue length does an incoming req see
system.mem_ctrls.wrQLenPdf::63 0 # What write queue length does an incoming req see
system.mem_ctrls.bytesPerActivate::samples 104369 # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::mean 191.330989 # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::gmean 111.473225 # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::stdev 256.251570 # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::0-127 69214 66.32% 66.32% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::128-255 13981 13.40% 79.71% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::256-383 2290 2.19% 81.91% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::384-511 1718 1.65% 83.55% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::512-639 9756 9.35% 92.90% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::640-767 895 0.86% 93.76% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::768-895 420 0.40% 94.16% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::896-1023 413 0.40% 94.56% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::1024-1151 5682 5.44% 100.00% # Bytes accessed per row activation
system.mem_ctrls.bytesPerActivate::total 104369 # Bytes accessed per row activation
system.mem_ctrls.rdPerTurnAround::samples 6643 # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::mean 30.250790 # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::gmean 23.773248 # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::stdev 52.354535 # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::0-127 6473 97.44% 97.44% # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::128-255 41 0.62% 98.06% # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::256-383 126 1.90% 99.95% # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::640-767 1 0.02% 99.97% # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::1664-1791 1 0.02% 99.98% # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::2432-2559 1 0.02% 100.00% # Reads before turning the bus around for writes
system.mem_ctrls.rdPerTurnAround::total 6643 # Reads before turning the bus around for writes
system.mem_ctrls.wrPerTurnAround::samples 6643 # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::mean 16.720006 # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::gmean 16.690566 # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::stdev 1.007291 # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::16 4335 65.26% 65.26% # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::17 41 0.62% 65.87% # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::18 2073 31.21% 97.08% # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::19 183 2.75% 99.83% # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::20 8 0.12% 99.95% # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::21 3 0.05% 100.00% # Writes before turning the bus around for reads
system.mem_ctrls.wrPerTurnAround::total 6643 # Writes before turning the bus around for reads
system.mem_ctrls.bytesReadDRAM 12861312 # Total number of bytes read from DRAM
system.mem_ctrls.bytesReadWrQ 2176 # Total number of bytes read from write queue
system.mem_ctrls.bytesWritten 7108544 # Total number of bytes written to DRAM
system.mem_ctrls.bytesReadSys 12863488 # Total read bytes from the system interface side
system.mem_ctrls.bytesWrittenSys 7109760 # Total written bytes from the system interface side
system.mem_ctrls.avgRdBW 153.14 # Average DRAM read bandwidth in MiByte/s
system.mem_ctrls.avgWrBW 84.64 # Average achieved write bandwidth in MiByte/s
system.mem_ctrls.avgRdBWSys 153.17 # Average system read bandwidth in MiByte/s
system.mem_ctrls.avgWrBWSys 84.66 # Average system write bandwidth in MiByte/s
system.mem_ctrls.peakBW 12800.00 # Theoretical peak bandwidth in MiByte/s
system.mem_ctrls.busUtil 1.86 # Data bus utilization in percentage
system.mem_ctrls.busUtilRead 1.20 # Data bus utilization in percentage for reads
system.mem_ctrls.busUtilWrite 0.66 # Data bus utilization in percentage for writes
system.mem_ctrls.totGap 83982467000 # Total gap between requests
system.mem_ctrls.avgGap 269103.85 # Average gap between requests
system.mem_ctrls.masterReadBytes::.cpu.inst 42752 # Per-master bytes read from memory
system.mem_ctrls.masterReadBytes::.cpu.data 12818560 # Per-master bytes read from memory
system.mem_ctrls.masterWriteBytes::.writebacks 7108544 # Per-master bytes write to memory
system.mem_ctrls.masterReadRate::.cpu.inst 509058.510561502539 # Per-master bytes read from memory rate (Bytes/sec)
system.mem_ctrls.masterReadRate::.cpu.data 152633726.168208599091 # Per-master bytes read from memory rate (Bytes/sec)
system.mem_ctrls.masterWriteRate::.writebacks 84643170.399066835642 # Per-master bytes write to memory rate (Bytes/sec)
system.mem_ctrls.masterReadAccesses::.cpu.inst 668 # Per-master read serviced memory accesses
system.mem_ctrls.masterReadAccesses::.cpu.data 200324 # Per-master read serviced memory accesses
system.mem_ctrls.masterWriteAccesses::.writebacks 111090 # Per-master write serviced memory accesses
system.mem_ctrls.masterReadTotalLat::.cpu.inst 18104000 # Per-master read total memory access latency
system.mem_ctrls.masterReadTotalLat::.cpu.data 6680158750 # Per-master read total memory access latency
system.mem_ctrls.masterWriteTotalLat::.writebacks 1981841905750 # Per-master write total memory access latency
system.mem_ctrls.masterReadAvgLat::.cpu.inst 27101.80 # Per-master read average memory access latency
system.mem_ctrls.masterReadAvgLat::.cpu.data 33346.77 # Per-master read average memory access latency
system.mem_ctrls.masterWriteAvgLat::.writebacks 17839966.75 # Per-master write average memory access latency
system.mem_ctrls.pageHitRate 66.54 # Row buffer hit rate, read and write combined
system.mem_ctrls.rank1.actEnergy 371180040 # Energy for activate commands per rank (pJ)
system.mem_ctrls.rank1.preEnergy 197264100 # Energy for precharge commands per rank (pJ)
system.mem_ctrls.rank1.readEnergy 716841720 # Energy for read commands per rank (pJ)
system.mem_ctrls.rank1.writeEnergy 287721180 # Energy for write commands per rank (pJ)
system.mem_ctrls.rank1.refreshEnergy 6628892400.000001 # Energy for refresh commands per rank (pJ)
system.mem_ctrls.rank1.actBackEnergy 21446660970 # Energy for active background per rank (pJ)
system.mem_ctrls.rank1.preBackEnergy 14188929120 # Energy for precharge background per rank (pJ)
system.mem_ctrls.rank1.actPowerDownEnergy 0 # Energy for active power-down per rank (pJ)
system.mem_ctrls.rank1.prePowerDownEnergy 0 # Energy for precharge power-down per rank (pJ)
system.mem_ctrls.rank1.selfRefreshEnergy 0 # Energy for self refresh per rank (pJ)
system.mem_ctrls.rank1.totalEnergy 43837489530 # Total energy per rank (pJ)
system.mem_ctrls.rank1.averagePower 521.983700 # Core power per rank (mW)
system.mem_ctrls.rank1.totalIdleTime 0 # Total Idle time Per DRAM Rank
system.mem_ctrls.rank1.memoryStateTime::IDLE 36664834500 # Time in different power states
system.mem_ctrls.rank1.memoryStateTime::REF 2804100000 # Time in different power states
system.mem_ctrls.rank1.memoryStateTime::SREF 0 # Time in different power states
system.mem_ctrls.rank1.memoryStateTime::PRE_PDN 0 # Time in different power states
system.mem_ctrls.rank1.memoryStateTime::ACT 44513553000 # Time in different power states
system.mem_ctrls.rank1.memoryStateTime::ACT_PDN 0 # Time in different power states
system.mem_ctrls.rank0.actEnergy 374107440 # Energy for activate commands per rank (pJ)
system.mem_ctrls.rank0.preEnergy 198816255 # Energy for precharge commands per rank (pJ)
system.mem_ctrls.rank0.readEnergy 717998400 # Energy for read commands per rank (pJ)
system.mem_ctrls.rank0.writeEnergy 292069440 # Energy for write commands per rank (pJ)
system.mem_ctrls.rank0.refreshEnergy 6628892400.000001 # Energy for refresh commands per rank (pJ)
system.mem_ctrls.rank0.actBackEnergy 21787992930 # Energy for active background per rank (pJ)
system.mem_ctrls.rank0.preBackEnergy 13901491680 # Energy for precharge background per rank (pJ)
system.mem_ctrls.rank0.actPowerDownEnergy 0 # Energy for active power-down per rank (pJ)
system.mem_ctrls.rank0.prePowerDownEnergy 0 # Energy for precharge power-down per rank (pJ)
system.mem_ctrls.rank0.selfRefreshEnergy 0 # Energy for self refresh per rank (pJ)
system.mem_ctrls.rank0.totalEnergy 43901368545 # Total energy per rank (pJ)
system.mem_ctrls.rank0.averagePower 522.744323 # Core power per rank (mW)
system.mem_ctrls.rank0.totalIdleTime 0 # Total Idle time Per DRAM Rank
system.mem_ctrls.rank0.memoryStateTime::IDLE 35915345500 # Time in different power states
system.mem_ctrls.rank0.memoryStateTime::REF 2804100000 # Time in different power states
system.mem_ctrls.rank0.memoryStateTime::SREF 0 # Time in different power states
system.mem_ctrls.rank0.memoryStateTime::PRE_PDN 0 # Time in different power states
system.mem_ctrls.rank0.memoryStateTime::ACT 45263042000 # Time in different power states
system.mem_ctrls.rank0.memoryStateTime::ACT_PDN 0 # Time in different power states
system.cpu_clk_domain.clock 500 # Clock period in ticks
system.cpu.pwrStateResidencyTicks::ON 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.icache.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.icache.demand_hits::.cpu.inst 9662710 # number of demand (read+write) hits
system.cpu.icache.demand_hits::total 9662710 # number of demand (read+write) hits
system.cpu.icache.overall_hits::.cpu.inst 9662710 # number of overall hits
system.cpu.icache.overall_hits::total 9662710 # number of overall hits
system.cpu.icache.demand_misses::.cpu.inst 747 # number of demand (read+write) misses
system.cpu.icache.demand_misses::total 747 # number of demand (read+write) misses
system.cpu.icache.overall_misses::.cpu.inst 747 # number of overall misses
system.cpu.icache.overall_misses::total 747 # number of overall misses
system.cpu.icache.demand_miss_latency::.cpu.inst 54877000 # number of demand (read+write) miss cycles
system.cpu.icache.demand_miss_latency::total 54877000 # number of demand (read+write) miss cycles
system.cpu.icache.overall_miss_latency::.cpu.inst 54877000 # number of overall miss cycles
system.cpu.icache.overall_miss_latency::total 54877000 # number of overall miss cycles
system.cpu.icache.demand_accesses::.cpu.inst 9663457 # number of demand (read+write) accesses
system.cpu.icache.demand_accesses::total 9663457 # number of demand (read+write) accesses
system.cpu.icache.overall_accesses::.cpu.inst 9663457 # number of overall (read+write) accesses
system.cpu.icache.overall_accesses::total 9663457 # number of overall (read+write) accesses
system.cpu.icache.demand_miss_rate::.cpu.inst 0.000077 # miss rate for demand accesses
system.cpu.icache.demand_miss_rate::total 0.000077 # miss rate for demand accesses
system.cpu.icache.overall_miss_rate::.cpu.inst 0.000077 # miss rate for overall accesses
system.cpu.icache.overall_miss_rate::total 0.000077 # miss rate for overall accesses
system.cpu.icache.demand_avg_miss_latency::.cpu.inst 73463.186078 # average overall miss latency
system.cpu.icache.demand_avg_miss_latency::total 73463.186078 # average overall miss latency
system.cpu.icache.overall_avg_miss_latency::.cpu.inst 73463.186078 # average overall miss latency
system.cpu.icache.overall_avg_miss_latency::total 73463.186078 # average overall miss latency
system.cpu.icache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked
system.cpu.icache.blocked_cycles::no_targets 0 # number of cycles access was blocked
system.cpu.icache.blocked::no_mshrs 0 # number of cycles access was blocked
system.cpu.icache.blocked::no_targets 0 # number of cycles access was blocked
system.cpu.icache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked
system.cpu.icache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked
system.cpu.icache.writebacks::.writebacks 302 # number of writebacks
system.cpu.icache.writebacks::total 302 # number of writebacks
system.cpu.icache.demand_mshr_misses::.cpu.inst 747 # number of demand (read+write) MSHR misses
system.cpu.icache.demand_mshr_misses::total 747 # number of demand (read+write) MSHR misses
system.cpu.icache.overall_mshr_misses::.cpu.inst 747 # number of overall MSHR misses
system.cpu.icache.overall_mshr_misses::total 747 # number of overall MSHR misses
system.cpu.icache.demand_mshr_miss_latency::.cpu.inst 54130000 # number of demand (read+write) MSHR miss cycles
system.cpu.icache.demand_mshr_miss_latency::total 54130000 # number of demand (read+write) MSHR miss cycles
system.cpu.icache.overall_mshr_miss_latency::.cpu.inst 54130000 # number of overall MSHR miss cycles
system.cpu.icache.overall_mshr_miss_latency::total 54130000 # number of overall MSHR miss cycles
system.cpu.icache.demand_mshr_miss_rate::.cpu.inst 0.000077 # mshr miss rate for demand accesses
system.cpu.icache.demand_mshr_miss_rate::total 0.000077 # mshr miss rate for demand accesses
system.cpu.icache.overall_mshr_miss_rate::.cpu.inst 0.000077 # mshr miss rate for overall accesses
system.cpu.icache.overall_mshr_miss_rate::total 0.000077 # mshr miss rate for overall accesses
system.cpu.icache.demand_avg_mshr_miss_latency::.cpu.inst 72463.186078 # average overall mshr miss latency
system.cpu.icache.demand_avg_mshr_miss_latency::total 72463.186078 # average overall mshr miss latency
system.cpu.icache.overall_avg_mshr_miss_latency::.cpu.inst 72463.186078 # average overall mshr miss latency
system.cpu.icache.overall_avg_mshr_miss_latency::total 72463.186078 # average overall mshr miss latency
system.cpu.icache.replacements 302 # number of replacements
system.cpu.icache.ReadReq_hits::.cpu.inst 9662710 # number of ReadReq hits
system.cpu.icache.ReadReq_hits::total 9662710 # number of ReadReq hits
system.cpu.icache.ReadReq_misses::.cpu.inst 747 # number of ReadReq misses
system.cpu.icache.ReadReq_misses::total 747 # number of ReadReq misses
system.cpu.icache.ReadReq_miss_latency::.cpu.inst 54877000 # number of ReadReq miss cycles
system.cpu.icache.ReadReq_miss_latency::total 54877000 # number of ReadReq miss cycles
system.cpu.icache.ReadReq_accesses::.cpu.inst 9663457 # number of ReadReq accesses(hits+misses)
system.cpu.icache.ReadReq_accesses::total 9663457 # number of ReadReq accesses(hits+misses)
system.cpu.icache.ReadReq_miss_rate::.cpu.inst 0.000077 # miss rate for ReadReq accesses
system.cpu.icache.ReadReq_miss_rate::total 0.000077 # miss rate for ReadReq accesses
system.cpu.icache.ReadReq_avg_miss_latency::.cpu.inst 73463.186078 # average ReadReq miss latency
system.cpu.icache.ReadReq_avg_miss_latency::total 73463.186078 # average ReadReq miss latency
system.cpu.icache.ReadReq_mshr_misses::.cpu.inst 747 # number of ReadReq MSHR misses
system.cpu.icache.ReadReq_mshr_misses::total 747 # number of ReadReq MSHR misses
system.cpu.icache.ReadReq_mshr_miss_latency::.cpu.inst 54130000 # number of ReadReq MSHR miss cycles
system.cpu.icache.ReadReq_mshr_miss_latency::total 54130000 # number of ReadReq MSHR miss cycles
system.cpu.icache.ReadReq_mshr_miss_rate::.cpu.inst 0.000077 # mshr miss rate for ReadReq accesses
system.cpu.icache.ReadReq_mshr_miss_rate::total 0.000077 # mshr miss rate for ReadReq accesses
system.cpu.icache.ReadReq_avg_mshr_miss_latency::.cpu.inst 72463.186078 # average ReadReq mshr miss latency
system.cpu.icache.ReadReq_avg_mshr_miss_latency::total 72463.186078 # average ReadReq mshr miss latency
system.cpu.icache.tags.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.icache.tags.tagsinuse 360.982403 # Cycle average of tags in use
system.cpu.icache.tags.total_refs 9663457 # Total number of references to valid blocks.
system.cpu.icache.tags.sampled_refs 747 # Sample count of references to valid blocks.
system.cpu.icache.tags.avg_refs 12936.354752 # Average number of references to valid blocks.
system.cpu.icache.tags.warmup_cycle 87500 # Cycle when the warmup percentage was hit.
system.cpu.icache.tags.occ_blocks::.cpu.inst 360.982403 # Average occupied blocks per requestor
system.cpu.icache.tags.occ_percent::.cpu.inst 0.705044 # Average percentage of cache occupancy
system.cpu.icache.tags.occ_percent::total 0.705044 # Average percentage of cache occupancy
system.cpu.icache.tags.occ_task_id_blocks::1024 445 # Occupied blocks per task id
system.cpu.icache.tags.age_task_id_blocks_1024::3 106 # Occupied blocks per task id
system.cpu.icache.tags.age_task_id_blocks_1024::4 339 # Occupied blocks per task id
system.cpu.icache.tags.occ_task_id_percent::1024 0.869141 # Percentage of cache occupancy per task id
system.cpu.icache.tags.tag_accesses 19327661 # Number of tag accesses
system.cpu.icache.tags.data_accesses 19327661 # Number of data accesses
system.cpu.dtb.walker.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.dtb.stage2_mmu.stage2_tlb.walker.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.dcache.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.dcache.demand_hits::.cpu.data 51305864 # number of demand (read+write) hits
system.cpu.dcache.demand_hits::total 51305864 # number of demand (read+write) hits
system.cpu.dcache.overall_hits::.cpu.data 51306370 # number of overall hits
system.cpu.dcache.overall_hits::total 51306370 # number of overall hits
system.cpu.dcache.demand_misses::.cpu.data 762733 # number of demand (read+write) misses
system.cpu.dcache.demand_misses::total 762733 # number of demand (read+write) misses
system.cpu.dcache.overall_misses::.cpu.data 770644 # number of overall misses
system.cpu.dcache.overall_misses::total 770644 # number of overall misses
system.cpu.dcache.demand_miss_latency::.cpu.data 25019289500 # number of demand (read+write) miss cycles
system.cpu.dcache.demand_miss_latency::total 25019289500 # number of demand (read+write) miss cycles
system.cpu.dcache.overall_miss_latency::.cpu.data 25019289500 # number of overall miss cycles
system.cpu.dcache.overall_miss_latency::total 25019289500 # number of overall miss cycles
system.cpu.dcache.demand_accesses::.cpu.data 52068597 # number of demand (read+write) accesses
system.cpu.dcache.demand_accesses::total 52068597 # number of demand (read+write) accesses
system.cpu.dcache.overall_accesses::.cpu.data 52077014 # number of overall (read+write) accesses
system.cpu.dcache.overall_accesses::total 52077014 # number of overall (read+write) accesses
system.cpu.dcache.demand_miss_rate::.cpu.data 0.014649 # miss rate for demand accesses
system.cpu.dcache.demand_miss_rate::total 0.014649 # miss rate for demand accesses
system.cpu.dcache.overall_miss_rate::.cpu.data 0.014798 # miss rate for overall accesses
system.cpu.dcache.overall_miss_rate::total 0.014798 # miss rate for overall accesses
system.cpu.dcache.demand_avg_miss_latency::.cpu.data 32802.159471 # average overall miss latency
system.cpu.dcache.demand_avg_miss_latency::total 32802.159471 # average overall miss latency
system.cpu.dcache.overall_avg_miss_latency::.cpu.data 32465.430860 # average overall miss latency
system.cpu.dcache.overall_avg_miss_latency::total 32465.430860 # average overall miss latency
system.cpu.dcache.blocked_cycles::no_mshrs 206379 # number of cycles access was blocked
system.cpu.dcache.blocked_cycles::no_targets 0 # number of cycles access was blocked
system.cpu.dcache.blocked::no_mshrs 3284 # number of cycles access was blocked
system.cpu.dcache.blocked::no_targets 0 # number of cycles access was blocked
system.cpu.dcache.avg_blocked_cycles::no_mshrs 62.843788 # average number of cycles each access was blocked
system.cpu.dcache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked
system.cpu.dcache.writebacks::.writebacks 635554 # number of writebacks
system.cpu.dcache.writebacks::total 635554 # number of writebacks
system.cpu.dcache.demand_mshr_hits::.cpu.data 59045 # number of demand (read+write) MSHR hits
system.cpu.dcache.demand_mshr_hits::total 59045 # number of demand (read+write) MSHR hits
system.cpu.dcache.overall_mshr_hits::.cpu.data 59045 # number of overall MSHR hits
system.cpu.dcache.overall_mshr_hits::total 59045 # number of overall MSHR hits
system.cpu.dcache.demand_mshr_misses::.cpu.data 703688 # number of demand (read+write) MSHR misses
system.cpu.dcache.demand_mshr_misses::total 703688 # number of demand (read+write) MSHR misses
system.cpu.dcache.overall_mshr_misses::.cpu.data 711594 # number of overall MSHR misses
system.cpu.dcache.overall_mshr_misses::total 711594 # number of overall MSHR misses
system.cpu.dcache.demand_mshr_miss_latency::.cpu.data 22707477000 # number of demand (read+write) MSHR miss cycles
system.cpu.dcache.demand_mshr_miss_latency::total 22707477000 # number of demand (read+write) MSHR miss cycles
system.cpu.dcache.overall_mshr_miss_latency::.cpu.data 23389109499 # number of overall MSHR miss cycles
system.cpu.dcache.overall_mshr_miss_latency::total 23389109499 # number of overall MSHR miss cycles
system.cpu.dcache.demand_mshr_miss_rate::.cpu.data 0.013515 # mshr miss rate for demand accesses
system.cpu.dcache.demand_mshr_miss_rate::total 0.013515 # mshr miss rate for demand accesses
system.cpu.dcache.overall_mshr_miss_rate::.cpu.data 0.013664 # mshr miss rate for overall accesses
system.cpu.dcache.overall_mshr_miss_rate::total 0.013664 # mshr miss rate for overall accesses
system.cpu.dcache.demand_avg_mshr_miss_latency::.cpu.data 32269.240061 # average overall mshr miss latency
system.cpu.dcache.demand_avg_mshr_miss_latency::total 32269.240061 # average overall mshr miss latency
system.cpu.dcache.overall_avg_mshr_miss_latency::.cpu.data 32868.615389 # average overall mshr miss latency
system.cpu.dcache.overall_avg_mshr_miss_latency::total 32868.615389 # average overall mshr miss latency
system.cpu.dcache.replacements 710569 # number of replacements
system.cpu.dcache.ReadReq_hits::.cpu.data 40700535 # number of ReadReq hits
system.cpu.dcache.ReadReq_hits::total 40700535 # number of ReadReq hits
system.cpu.dcache.ReadReq_misses::.cpu.data 417961 # number of ReadReq misses
system.cpu.dcache.ReadReq_misses::total 417961 # number of ReadReq misses
system.cpu.dcache.ReadReq_miss_latency::.cpu.data 9324766000 # number of ReadReq miss cycles
system.cpu.dcache.ReadReq_miss_latency::total 9324766000 # number of ReadReq miss cycles
system.cpu.dcache.ReadReq_accesses::.cpu.data 41118496 # number of ReadReq accesses(hits+misses)
system.cpu.dcache.ReadReq_accesses::total 41118496 # number of ReadReq accesses(hits+misses)
system.cpu.dcache.ReadReq_miss_rate::.cpu.data 0.010165 # miss rate for ReadReq accesses
system.cpu.dcache.ReadReq_miss_rate::total 0.010165 # miss rate for ReadReq accesses
system.cpu.dcache.ReadReq_avg_miss_latency::.cpu.data 22310.134199 # average ReadReq miss latency
system.cpu.dcache.ReadReq_avg_miss_latency::total 22310.134199 # average ReadReq miss latency
system.cpu.dcache.ReadReq_mshr_hits::.cpu.data 616 # number of ReadReq MSHR hits
system.cpu.dcache.ReadReq_mshr_hits::total 616 # number of ReadReq MSHR hits
system.cpu.dcache.ReadReq_mshr_misses::.cpu.data 417345 # number of ReadReq MSHR misses
system.cpu.dcache.ReadReq_mshr_misses::total 417345 # number of ReadReq MSHR misses
system.cpu.dcache.ReadReq_mshr_miss_latency::.cpu.data 8881913500 # number of ReadReq MSHR miss cycles
system.cpu.dcache.ReadReq_mshr_miss_latency::total 8881913500 # number of ReadReq MSHR miss cycles
system.cpu.dcache.ReadReq_mshr_miss_rate::.cpu.data 0.010150 # mshr miss rate for ReadReq accesses
system.cpu.dcache.ReadReq_mshr_miss_rate::total 0.010150 # mshr miss rate for ReadReq accesses
system.cpu.dcache.ReadReq_avg_mshr_miss_latency::.cpu.data 21281.945393 # average ReadReq mshr miss latency
system.cpu.dcache.ReadReq_avg_mshr_miss_latency::total 21281.945393 # average ReadReq mshr miss latency
system.cpu.dcache.WriteReq_hits::.cpu.data 10605329 # number of WriteReq hits
system.cpu.dcache.WriteReq_hits::total 10605329 # number of WriteReq hits
system.cpu.dcache.WriteReq_misses::.cpu.data 344772 # number of WriteReq misses
system.cpu.dcache.WriteReq_misses::total 344772 # number of WriteReq misses
system.cpu.dcache.WriteReq_miss_latency::.cpu.data 15694523500 # number of WriteReq miss cycles
system.cpu.dcache.WriteReq_miss_latency::total 15694523500 # number of WriteReq miss cycles
system.cpu.dcache.WriteReq_accesses::.cpu.data 10950101 # number of WriteReq accesses(hits+misses)
system.cpu.dcache.WriteReq_accesses::total 10950101 # number of WriteReq accesses(hits+misses)
system.cpu.dcache.WriteReq_miss_rate::.cpu.data 0.031486 # miss rate for WriteReq accesses
system.cpu.dcache.WriteReq_miss_rate::total 0.031486 # miss rate for WriteReq accesses
system.cpu.dcache.WriteReq_avg_miss_latency::.cpu.data 45521.456209 # average WriteReq miss latency
system.cpu.dcache.WriteReq_avg_miss_latency::total 45521.456209 # average WriteReq miss latency
system.cpu.dcache.WriteReq_mshr_hits::.cpu.data 58429 # number of WriteReq MSHR hits
system.cpu.dcache.WriteReq_mshr_hits::total 58429 # number of WriteReq MSHR hits
system.cpu.dcache.WriteReq_mshr_misses::.cpu.data 286343 # number of WriteReq MSHR misses
system.cpu.dcache.WriteReq_mshr_misses::total 286343 # number of WriteReq MSHR misses
system.cpu.dcache.WriteReq_mshr_miss_latency::.cpu.data 13825563500 # number of WriteReq MSHR miss cycles
system.cpu.dcache.WriteReq_mshr_miss_latency::total 13825563500 # number of WriteReq MSHR miss cycles
system.cpu.dcache.WriteReq_mshr_miss_rate::.cpu.data 0.026150 # mshr miss rate for WriteReq accesses
system.cpu.dcache.WriteReq_mshr_miss_rate::total 0.026150 # mshr miss rate for WriteReq accesses
system.cpu.dcache.WriteReq_avg_mshr_miss_latency::.cpu.data 48283.225013 # average WriteReq mshr miss latency
system.cpu.dcache.WriteReq_avg_mshr_miss_latency::total 48283.225013 # average WriteReq mshr miss latency
system.cpu.dcache.SoftPFReq_hits::.cpu.data 506 # number of SoftPFReq hits
system.cpu.dcache.SoftPFReq_hits::total 506 # number of SoftPFReq hits
system.cpu.dcache.SoftPFReq_misses::.cpu.data 7911 # number of SoftPFReq misses
system.cpu.dcache.SoftPFReq_misses::total 7911 # number of SoftPFReq misses
system.cpu.dcache.SoftPFReq_accesses::.cpu.data 8417 # number of SoftPFReq accesses(hits+misses)
system.cpu.dcache.SoftPFReq_accesses::total 8417 # number of SoftPFReq accesses(hits+misses)
system.cpu.dcache.SoftPFReq_miss_rate::.cpu.data 0.939884 # miss rate for SoftPFReq accesses
system.cpu.dcache.SoftPFReq_miss_rate::total 0.939884 # miss rate for SoftPFReq accesses
system.cpu.dcache.SoftPFReq_mshr_misses::.cpu.data 7906 # number of SoftPFReq MSHR misses
system.cpu.dcache.SoftPFReq_mshr_misses::total 7906 # number of SoftPFReq MSHR misses
system.cpu.dcache.SoftPFReq_mshr_miss_latency::.cpu.data 681632499 # number of SoftPFReq MSHR miss cycles
system.cpu.dcache.SoftPFReq_mshr_miss_latency::total 681632499 # number of SoftPFReq MSHR miss cycles
system.cpu.dcache.SoftPFReq_mshr_miss_rate::.cpu.data 0.939290 # mshr miss rate for SoftPFReq accesses
system.cpu.dcache.SoftPFReq_mshr_miss_rate::total 0.939290 # mshr miss rate for SoftPFReq accesses
system.cpu.dcache.SoftPFReq_avg_mshr_miss_latency::.cpu.data 86217.113458 # average SoftPFReq mshr miss latency
system.cpu.dcache.SoftPFReq_avg_mshr_miss_latency::total 86217.113458 # average SoftPFReq mshr miss latency
system.cpu.dcache.LoadLockedReq_hits::.cpu.data 38 # number of LoadLockedReq hits
system.cpu.dcache.LoadLockedReq_hits::total 38 # number of LoadLockedReq hits
system.cpu.dcache.LoadLockedReq_accesses::.cpu.data 38 # number of LoadLockedReq accesses(hits+misses)
system.cpu.dcache.LoadLockedReq_accesses::total 38 # number of LoadLockedReq accesses(hits+misses)
system.cpu.dcache.StoreCondReq_hits::.cpu.data 38 # number of StoreCondReq hits
system.cpu.dcache.StoreCondReq_hits::total 38 # number of StoreCondReq hits
system.cpu.dcache.StoreCondReq_accesses::.cpu.data 38 # number of StoreCondReq accesses(hits+misses)
system.cpu.dcache.StoreCondReq_accesses::total 38 # number of StoreCondReq accesses(hits+misses)
system.cpu.dcache.tags.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.dcache.tags.tagsinuse 1008.230017 # Cycle average of tags in use
system.cpu.dcache.tags.total_refs 52018039 # Total number of references to valid blocks.
system.cpu.dcache.tags.sampled_refs 711593 # Sample count of references to valid blocks.
system.cpu.dcache.tags.avg_refs 73.100830 # Average number of references to valid blocks.
system.cpu.dcache.tags.warmup_cycle 176500 # Cycle when the warmup percentage was hit.
system.cpu.dcache.tags.occ_blocks::.cpu.data 1008.230017 # Average occupied blocks per requestor
system.cpu.dcache.tags.occ_percent::.cpu.data 0.984600 # Average percentage of cache occupancy
system.cpu.dcache.tags.occ_percent::total 0.984600 # Average percentage of cache occupancy
system.cpu.dcache.tags.occ_task_id_blocks::1024 1024 # Occupied blocks per task id
system.cpu.dcache.tags.age_task_id_blocks_1024::0 239 # Occupied blocks per task id
system.cpu.dcache.tags.age_task_id_blocks_1024::1 439 # Occupied blocks per task id
system.cpu.dcache.tags.age_task_id_blocks_1024::2 344 # Occupied blocks per task id
system.cpu.dcache.tags.age_task_id_blocks_1024::3 2 # Occupied blocks per task id
system.cpu.dcache.tags.occ_task_id_percent::1024 1 # Percentage of cache occupancy per task id
system.cpu.dcache.tags.tag_accesses 104865773 # Number of tag accesses
system.cpu.dcache.tags.data_accesses 104865773 # Number of data accesses
system.cpu.itb.walker.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
system.cpu.itb.stage2_mmu.stage2_tlb.walker.pwrStateResidencyTicks::UNDEFINED 83982487500 # Cumulative time (in ticks) in various power states
---------- End Simulation Statistics ----------