diff options
| author | JRPAN <[email protected]> | 2021-03-26 16:33:41 -0400 |
|---|---|---|
| committer | JRPAN <[email protected]> | 2021-05-18 16:33:07 -0400 |
| commit | a374b330ac3bec0b47ce588adf72af89e5cd9307 (patch) | |
| tree | ef3f75d1dff12c63acf15fe318043d3fe038c133 /src/gpgpu-sim/gpu-cache.cc | |
| parent | 64bf6fd7a44a32773389e900862bd9c0527a87e9 (diff) | |
remove MSHR_HIT from cache total access
Diffstat (limited to 'src/gpgpu-sim/gpu-cache.cc')
| -rw-r--r-- | src/gpgpu-sim/gpu-cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/gpu-cache.cc b/src/gpgpu-sim/gpu-cache.cc index 5ac202c..d2f9fef 100644 --- a/src/gpgpu-sim/gpu-cache.cc +++ b/src/gpgpu-sim/gpu-cache.cc @@ -819,7 +819,7 @@ void cache_stats::print_stats(FILE *fout, const char *cache_name) const { cache_request_status_str((enum cache_request_status)status), m_stats[type][status]); - if (status != RESERVATION_FAIL) + if (status != RESERVATION_FAIL && status != MSHR_HIT) total_access[type] += m_stats[type][status]; } } |
