diff options
| author | Mahmoud <[email protected]> | 2019-06-24 15:31:06 -0400 |
|---|---|---|
| committer | Mahmoud <[email protected]> | 2019-06-24 15:31:06 -0400 |
| commit | 44ba06730c4e14681eb285e01930148fdd8fabbb (patch) | |
| tree | 9fb312b4ce174dfa39225dfa78c0f887444b99f9 /src/gpgpu-sim/mem_latency_stat.h | |
| parent | f23a5de2c7eec680fc8f5c6ba45c64fcd9544e65 (diff) | |
| parent | a1e2c4273542ca78098c9f4f25eebc087e0aec37 (diff) | |
Merge branch 'dev' of https://github.com/gpgpu-sim/gpgpu-sim_distribution into dev-private
Diffstat (limited to 'src/gpgpu-sim/mem_latency_stat.h')
| -rw-r--r-- | src/gpgpu-sim/mem_latency_stat.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gpgpu-sim/mem_latency_stat.h b/src/gpgpu-sim/mem_latency_stat.h index 5b89202..982b9ae 100644 --- a/src/gpgpu-sim/mem_latency_stat.h +++ b/src/gpgpu-sim/mem_latency_stat.h @@ -47,6 +47,9 @@ public: void visualizer_print( gzFile visualizer_file ); + // Reset local L2 stats that are aggregated each sampling window + void clear_L2_stats_pw(); + unsigned m_n_shader; const struct shader_core_config *m_shader_config; @@ -84,6 +87,11 @@ public: unsigned ***mem_access_type_stats; // dram access type classification + // AerialVision L2 stats + unsigned L2_read_miss; + unsigned L2_write_miss; + unsigned L2_read_hit; + unsigned L2_write_hit; // L2 cache stats unsigned int *L2_cbtoL2length; |
