diff-out (7686:e44757c62695) diff-out (8838:6a859084ee92)
1#!/usr/bin/perl
2# Copyright (c) 2001-2005 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 172 unchanged lines hidden (view full) ---

181#
182# Statistics to ignore: these relate to simulator performance, not
183# correctness, so don't fail on changes here.
184#
185%ignore = (
186 'host_seconds' => 1,
187 'host_tick_rate' => 1,
188 'host_inst_rate' => 1,
1#!/usr/bin/perl
2# Copyright (c) 2001-2005 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 172 unchanged lines hidden (view full) ---

181#
182# Statistics to ignore: these relate to simulator performance, not
183# correctness, so don't fail on changes here.
184#
185%ignore = (
186 'host_seconds' => 1,
187 'host_tick_rate' => 1,
188 'host_inst_rate' => 1,
189 'host_op_rate' => 1,
189 'host_mem_usage' => 1
190);
191
192#
193# List of key statistics (always displayed)
194# ==> list stats here WITHOUT trailing thread ID
195#
196@key_stat_list = (
190 'host_mem_usage' => 1
191);
192
193#
194# List of key statistics (always displayed)
195# ==> list stats here WITHOUT trailing thread ID
196#
197@key_stat_list = (
197 'COM:IPC',
198 'ISSUE:MSIPC',
199 'COM:count',
200 'host_inst_rate',
198 'ipc',
199 'committedInsts',
200 'committedOps',
201 'sim_insts',
201 'sim_insts',
202 'sim_ops',
202 'sim_ticks',
203 'sim_ticks',
204 'host_inst_rate',
203 'host_mem_usage'
204);
205
206$key_stat_pattern = join('|', @key_stat_list);
207
208# initialize first statistics from each file
209
210$max_err_mag = 0;

--- 160 unchanged lines hidden ---
205 'host_mem_usage'
206);
207
208$key_stat_pattern = join('|', @key_stat_list);
209
210# initialize first statistics from each file
211
212$max_err_mag = 0;

--- 160 unchanged lines hidden ---