changeset 256143419b40 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=256143419b40
description:
        TrafficGen: Add a basic traffic generator regression

        This patch adds a basic regression for the traffic generator. The
        regression also serves as an example of the file formats used. More
        complex regressions that make use of a DRAM controller model will
        follow shortly.

diffstat:

 tests/SConscript                                               |    2 +-
 tests/configs/tgen-simple-mem.py                               |   67 +
 tests/quick/se/70.tgen/ref/arm/linux/tgen-simple-mem/simout    |   10 +
 tests/quick/se/70.tgen/ref/arm/linux/tgen-simple-mem/stats.txt |  365 
++++++++++
 tests/quick/se/70.tgen/test-frfcfs-toy.trc                     |    7 +
 tests/quick/se/70.tgen/test-open-ops.trc                       |    6 +
 tests/quick/se/70.tgen/test-refresh.trc                        |    3 +
 tests/quick/se/70.tgen/test-writebuffer.trc                    |    5 +
 tests/quick/se/70.tgen/test-writefrfcfs.trc                    |   26 +
 tests/quick/se/70.tgen/test.py                                 |   38 +
 tests/quick/se/70.tgen/tgen-simple-mem.cfg                     |   27 +
 tests/quick/se/70.tgen/tgen-simple-mem.trc                     |    2 +
 12 files changed, 557 insertions(+), 1 deletions(-)

diffs (truncated from 612 to 300 lines):

diff -r 6cfb9a7acb1b -r 256143419b40 tests/SConscript
--- a/tests/SConscript  Fri Sep 21 11:48:08 2012 -0400
+++ b/tests/SConscript  Fri Sep 21 11:48:11 2012 -0400
@@ -315,7 +315,7 @@
 
 configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest',
             'simple-atomic-mp', 'simple-timing-mp', 'o3-timing-mp',
-            'inorder-timing', 'rubytest']
+            'inorder-timing', 'rubytest', 'tgen-simple-mem']
 
 if env['PROTOCOL'] != 'None':
     if env['PROTOCOL'] == 'MI_example':
diff -r 6cfb9a7acb1b -r 256143419b40 tests/configs/tgen-simple-mem.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/configs/tgen-simple-mem.py  Fri Sep 21 11:48:11 2012 -0400
@@ -0,0 +1,67 @@
+# Copyright (c) 2012 ARM Limited
+# All rights reserved.
+#
+# The license below extends only to copyright in the software and shall
+# not be construed as granting a license to any other intellectual
+# property including but not limited to intellectual property relating
+# to a hardware implementation of the functionality of the software
+# licensed hereunder.  You may use the software subject to the license
+# terms below provided that you ensure that this notice is replicated
+# unmodified and in its entirety in all distributions of the software,
+# modified or unmodified, in source code or in binary form.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met: redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer;
+# redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution;
+# neither the name of the copyright holders nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
+# Authors: Andreas Hansson
+
+import m5
+from m5.objects import *
+
+# even if this is only a traffic generator, call it cpu to make sure
+# the scripts are happy
+cpu = TrafficGen(config_file = "tests/quick/se/70.tgen/tgen-simple-mem.cfg")
+
+# system simulated
+system = System(cpu = cpu, physmem = SimpleMemory(),
+                membus = NoncoherentBus(clock="1GHz", width = 16))
+
+# add a communication monitor
+system.monitor = CommMonitor()
+
+# connect the traffic generator to the bus via a communication monitor
+system.cpu.port = system.monitor.slave
+system.monitor.master = system.membus.slave
+
+# connect the system port even if it is not used in this example
+system.system_port = system.membus.slave
+
+# connect memory to the membus
+system.physmem.port = system.membus.master
+
+# -----------------------
+# run simulation
+# -----------------------
+
+root = Root(full_system = False, system = system)
+root.system.mem_mode = 'timing'
diff -r 6cfb9a7acb1b -r 256143419b40 
tests/quick/se/70.tgen/ref/arm/linux/tgen-simple-mem/simout
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/quick/se/70.tgen/ref/arm/linux/tgen-simple-mem/simout       Fri Sep 
21 11:48:11 2012 -0400
@@ -0,0 +1,10 @@
+gem5 Simulator System.  http://gem5.org
+gem5 is copyrighted software; use the --copyright option for details.
+
+gem5 compiled Aug 25 2012 13:56:00
+gem5 started Aug 25 2012 13:58:17
+gem5 executing on Andreas-MacBook-Pro.local
+command line: build/ARM/gem5.opt -d 
build/ARM/tests/opt/quick/se/70.tgen/arm/linux/tgen-simple-mem -re tests/run.py 
build/ARM/tests/opt/quick/se/70.tgen/arm/linux/tgen-simple-mem
+Global frequency set at 1000000000000 ticks per second
+info: Entering event queue @ 0.  Starting simulation...
+Exiting @ tick 100000000000 because simulate() limit reached
diff -r 6cfb9a7acb1b -r 256143419b40 
tests/quick/se/70.tgen/ref/arm/linux/tgen-simple-mem/stats.txt
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/quick/se/70.tgen/ref/arm/linux/tgen-simple-mem/stats.txt    Fri Sep 
21 11:48:11 2012 -0400
@@ -0,0 +1,365 @@
+
+---------- Begin Simulation Statistics ----------
+sim_seconds                                  0.100000                       # 
Number of seconds simulated
+sim_ticks                                100000000000                       # 
Number of ticks simulated
+final_tick                               100000000000                       # 
Number of ticks from beginning of simulation (restored from checkpoints and 
never reset)
+sim_freq                                 1000000000000                       # 
Frequency of simulated ticks
+host_tick_rate                            31243111314                       # 
Simulator tick rate (ticks/s)
+host_mem_usage                                 230668                       # 
Number of bytes of host memory used
+host_seconds                                     3.20                       # 
Real time elapsed on the host
+system.physmem.bytes_read::cpu                     64                       # 
Number of bytes read from this memory
+system.physmem.bytes_read::total                   64                       # 
Number of bytes read from this memory
+system.physmem.bytes_written::cpu           213335552                       # 
Number of bytes written to this memory
+system.physmem.bytes_written::total         213335552                       # 
Number of bytes written to this memory
+system.physmem.num_reads::cpu                       1                       # 
Number of read requests responded to by this memory
+system.physmem.num_reads::total                     1                       # 
Number of read requests responded to by this memory
+system.physmem.num_writes::cpu                3333368                       # 
Number of write requests responded to by this memory
+system.physmem.num_writes::total              3333368                       # 
Number of write requests responded to by this memory
+system.physmem.bw_read::cpu                       640                       # 
Total read bandwidth from this memory (bytes/s)
+system.physmem.bw_read::total                     640                       # 
Total read bandwidth from this memory (bytes/s)
+system.physmem.bw_write::cpu               2133355520                       # 
Write bandwidth from this memory (bytes/s)
+system.physmem.bw_write::total             2133355520                       # 
Write bandwidth from this memory (bytes/s)
+system.physmem.bw_total::cpu               2133356160                       # 
Total bandwidth to/from this memory (bytes/s)
+system.physmem.bw_total::total             2133356160                       # 
Total bandwidth to/from this memory (bytes/s)
+system.monitor.readBurstLengthHist::samples            1                       
# Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::mean           64                       # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::gmean    64.000000                       # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::stdev          nan                       # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::0-3             0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::4-7             0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::8-11            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::12-15            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::16-19            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::20-23            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::24-27            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::28-31            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::32-35            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::36-39            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::40-43            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::44-47            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::48-51            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::52-55            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::56-59            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::60-63            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::64-67            1    100.00%    100.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::68-71            0      0.00%    100.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::72-75            0      0.00%    100.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::76-79            0      0.00%    100.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.readBurstLengthHist::total            1                       # 
Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::samples      3333368                      
 # Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::mean           64                       # 
Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::gmean    64.000000                       
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::stdev            0                       
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::0-3            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::4-7            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::8-11            0      0.00%      0.00% # 
Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::12-15            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::16-19            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::20-23            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::24-27            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::28-31            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::32-35            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::36-39            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::40-43            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::44-47            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::48-51            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::52-55            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::56-59            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::60-63            0      0.00%      0.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::64-67      3333368    100.00%    100.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::68-71            0      0.00%    100.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::72-75            0      0.00%    100.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::76-79            0      0.00%    100.00% 
# Histogram of burst lengths of transmitted packets
+system.monitor.writeBurstLengthHist::total      3333368                       
# Histogram of burst lengths of transmitted packets
+system.monitor.readBandwidthHist::samples          100                       # 
Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::mean            640                       # 
Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::gmean             0                       # 
Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::stdev          6400                       # 
Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::0-4095           99     99.00%     99.00% # 
Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::4096-8191            0      0.00%     99.00% 
# Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::8192-12287            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::12288-16383            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::16384-20479            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::20480-24575            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::24576-28671            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::28672-32767            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::32768-36863            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::36864-40959            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::40960-45055            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::45056-49151            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::49152-53247            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::53248-57343            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::57344-61439            0      0.00%     
99.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::61440-65535            1      1.00%    
100.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::65536-69631            0      0.00%    
100.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::69632-73727            0      0.00%    
100.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::73728-77823            0      0.00%    
100.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::77824-81919            0      0.00%    
100.00% # Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.readBandwidthHist::total           100                       # 
Histogram of read bandwidth per sample period (bytes/s)
+system.monitor.averageReadBandwidth               640      0.00%      0.00% # 
Average read bandwidth (bytes/s)
+system.monitor.totalReadBytes                      64                       # 
Number of bytes read
+system.monitor.writeBandwidthHist::samples          100                       
# Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::mean    2133355520                       # 
Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::gmean 2133355510.261974                     
  # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::stdev       204800                       # 
Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::0-1.34218e+08            0      0.00%      
0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.34218e+08-2.68435e+08            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::2.68435e+08-4.02653e+08            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::4.02653e+08-5.36871e+08            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::5.36871e+08-6.71089e+08            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::6.71089e+08-8.05306e+08            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::8.05306e+08-9.39524e+08            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::9.39524e+08-1.07374e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.07374e+09-1.20796e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.20796e+09-1.34218e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.34218e+09-1.4764e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.4764e+09-1.61061e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.61061e+09-1.74483e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.74483e+09-1.87905e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::1.87905e+09-2.01327e+09            0      
0.00%      0.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::2.01327e+09-2.14748e+09          100    
100.00%    100.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::2.14748e+09-2.2817e+09            0      
0.00%    100.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::2.2817e+09-2.41592e+09            0      
0.00%    100.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::2.41592e+09-2.55014e+09            0      
0.00%    100.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::2.55014e+09-2.68435e+09            0      
0.00%    100.00% # Histogram of write bandwidth (bytes/s)
+system.monitor.writeBandwidthHist::total          100                       # 
Histogram of write bandwidth (bytes/s)
+system.monitor.averageWriteBandwidth       2133355520      0.00%      0.00% # 
Average write bandwidth (bytes/s)
+system.monitor.totalWrittenBytes            213335552                       # 
Number of bytes written
+system.monitor.readLatencyHist::samples             1                       # 
Read request-response latency
+system.monitor.readLatencyHist::mean            30000                       # 
Read request-response latency
+system.monitor.readLatencyHist::gmean    30000.000000                       # 
Read request-response latency
+system.monitor.readLatencyHist::stdev             nan                       # 
Read request-response latency
+system.monitor.readLatencyHist::0-2047              0      0.00%      0.00% # 
Read request-response latency
+system.monitor.readLatencyHist::2048-4095            0      0.00%      0.00% # 
Read request-response latency
+system.monitor.readLatencyHist::4096-6143            0      0.00%      0.00% # 
Read request-response latency
+system.monitor.readLatencyHist::6144-8191            0      0.00%      0.00% # 
Read request-response latency
+system.monitor.readLatencyHist::8192-10239            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::10240-12287            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::12288-14335            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::14336-16383            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::16384-18431            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::18432-20479            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::20480-22527            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::22528-24575            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::24576-26623            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::26624-28671            0      0.00%      0.00% 
# Read request-response latency
+system.monitor.readLatencyHist::28672-30719            1    100.00%    100.00% 
# Read request-response latency
+system.monitor.readLatencyHist::30720-32767            0      0.00%    100.00% 
# Read request-response latency
+system.monitor.readLatencyHist::32768-34815            0      0.00%    100.00% 
# Read request-response latency
+system.monitor.readLatencyHist::34816-36863            0      0.00%    100.00% 
# Read request-response latency
+system.monitor.readLatencyHist::36864-38911            0      0.00%    100.00% 
# Read request-response latency
+system.monitor.readLatencyHist::38912-40959            0      0.00%    100.00% 
# Read request-response latency
+system.monitor.readLatencyHist::total               1                       # 
Read request-response latency
+system.monitor.writeLatencyHist::samples      3333367                       # 
Write request-response latency
+system.monitor.writeLatencyHist::mean           30000                       # 
Write request-response latency
+system.monitor.writeLatencyHist::gmean   29999.999984                       # 
Write request-response latency
+system.monitor.writeLatencyHist::stdev              0                       # 
Write request-response latency
+system.monitor.writeLatencyHist::0-2047             0      0.00%      0.00% # 
Write request-response latency
+system.monitor.writeLatencyHist::2048-4095            0      0.00%      0.00% 
# Write request-response latency
+system.monitor.writeLatencyHist::4096-6143            0      0.00%      0.00% 
# Write request-response latency
+system.monitor.writeLatencyHist::6144-8191            0      0.00%      0.00% 
# Write request-response latency
+system.monitor.writeLatencyHist::8192-10239            0      0.00%      0.00% 
# Write request-response latency
+system.monitor.writeLatencyHist::10240-12287            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::12288-14335            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::14336-16383            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::16384-18431            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::18432-20479            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::20480-22527            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::22528-24575            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::24576-26623            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::26624-28671            0      0.00%      
0.00% # Write request-response latency
+system.monitor.writeLatencyHist::28672-30719      3333367    100.00%    
100.00% # Write request-response latency
+system.monitor.writeLatencyHist::30720-32767            0      0.00%    
100.00% # Write request-response latency
+system.monitor.writeLatencyHist::32768-34815            0      0.00%    
100.00% # Write request-response latency
+system.monitor.writeLatencyHist::34816-36863            0      0.00%    
100.00% # Write request-response latency
+system.monitor.writeLatencyHist::36864-38911            0      0.00%    
100.00% # Write request-response latency
+system.monitor.writeLatencyHist::38912-40959            0      0.00%    
100.00% # Write request-response latency
+system.monitor.writeLatencyHist::total        3333367                       # 
Write request-response latency
+system.monitor.ittReadRead::samples                 0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::mean                  nan                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::stdev                 nan                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::underflows              0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::1-5000                  0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::5001-10000              0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::10001-15000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::15001-20000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::20001-25000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::25001-30000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::30001-35000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::35001-40000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::40001-45000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::45001-50000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::50001-55000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::55001-60000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::60001-65000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::65001-70000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::70001-75000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::75001-80000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::80001-85000             0                       # 
Read-to-read inter transaction time
+system.monitor.ittReadRead::85001-90000             0                       # 
Read-to-read inter transaction time
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to