diff options
| author | tgrogers <[email protected]> | 2018-10-07 21:41:35 -0400 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2018-10-07 21:41:35 -0400 |
| commit | afb28556c4f08e4daca17525e7e377d9aaec0ee5 (patch) | |
| tree | ab1d03b510b4fabe8138c0fdf2ed9bf8cb473582 /src/gpgpu-sim/l2cache.h | |
| parent | 2ca656ae40436929f3d1261acabbd1c13db8470a (diff) | |
Unrolling Aksahy's stats - as they seem to be really screwing things up.
Diffstat (limited to 'src/gpgpu-sim/l2cache.h')
| -rw-r--r-- | src/gpgpu-sim/l2cache.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gpgpu-sim/l2cache.h b/src/gpgpu-sim/l2cache.h index 685b1d3..18c0a8b 100644 --- a/src/gpgpu-sim/l2cache.h +++ b/src/gpgpu-sim/l2cache.h @@ -58,7 +58,7 @@ private: class memory_partition_unit { public: - memory_partition_unit( unsigned partition_id, const struct memory_config *config, class memory_stats_t *stats , class gpgpu_sim *gpu); + memory_partition_unit( unsigned partition_id, const struct memory_config *config, class memory_stats_t *stats ); ~memory_partition_unit(); bool busy() const; @@ -93,8 +93,6 @@ public: unsigned get_mpid() const { return m_id; } - gpgpu_sim *m_gpu; - private: unsigned m_id; @@ -147,7 +145,7 @@ private: class memory_sub_partition { public: - memory_sub_partition( unsigned sub_partition_id, const struct memory_config *config, class memory_stats_t *stats, class gpgpu_sim *gpu); + memory_sub_partition( unsigned sub_partition_id, const struct memory_config *config, class memory_stats_t *stats ); ~memory_sub_partition(); unsigned get_id() const { return m_id; } @@ -188,8 +186,6 @@ public: m_memcpy_cycle_offset += 1; } - gpgpu_sim *m_gpu; - private: // data unsigned m_id; //< the global sub partition ID |
