diff options
| author | sspenst <[email protected]> | 2016-07-06 15:08:11 -0700 |
|---|---|---|
| committer | sspenst <[email protected]> | 2016-07-06 15:08:11 -0700 |
| commit | e841e5f21b9d86910a6cc10de3af016912c43ce0 (patch) | |
| tree | da843578f91339969e57022884abda62c04b9f86 /src/gpgpu-sim/gpu-sim.cc | |
| parent | 35cf76f383ec8de6de901bbbcd8fb478f69e46e4 (diff) | |
Added the ability to load from sstarr memory after data has been stored in it
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.cc')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc index eafb909..e7ba8e5 100644 --- a/src/gpgpu-sim/gpu-sim.cc +++ b/src/gpgpu-sim/gpu-sim.cc @@ -1049,6 +1049,9 @@ void shader_core_ctx::mem_instruction_stats(const warp_inst_t &inst) case shared_space: m_stats->gpgpu_n_shmem_insn += active_count; break; + case sstarr_space: + m_stats->gpgpu_n_sstarr_insn += active_count; + break; case const_space: m_stats->gpgpu_n_const_insn += active_count; break; |
