diff options
| author | Nick <[email protected]> | 2019-02-20 13:46:20 -0500 |
|---|---|---|
| committer | Nick <[email protected]> | 2019-02-20 13:46:20 -0500 |
| commit | c1833f27cdd0ad7d41afc64db0ec693571080c05 (patch) | |
| tree | 8b74b65563383e0cb697544f1e401420a07eaafe /src/gpgpu-sim/mem_latency_stat.h | |
| parent | 13f07a2c820422db7e4e88e43d692dfe8e1b8cad (diff) | |
Add full support for deprecated AerialVision L2 stats
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; |
