diff options
| author | Mahmoud <[email protected]> | 2018-09-18 10:58:11 -0400 |
|---|---|---|
| committer | Mahmoud <[email protected]> | 2018-09-18 10:58:11 -0400 |
| commit | 8706d35c7d4b660f767452b70084200b9c9c40cd (patch) | |
| tree | cc7e4438902c7086e6d7b042ae4b3741a7a904e1 /src/gpgpu-sim | |
| parent | dd0a4eef2ae526984ac3e7dc93a0d1cf92a9a6a8 (diff) | |
| parent | 96bbd0063b479ad51f3d296f5e87a56151536d86 (diff) | |
Merge branch 'dev-purdue-integration' of https://github.rcac.purdue.edu/abdallm/gpgpu-sim_distribution into dev-purdue-integration
Diffstat (limited to 'src/gpgpu-sim')
| -rw-r--r-- | src/gpgpu-sim/shader.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/shader.cc b/src/gpgpu-sim/shader.cc index 51689e3..0e2e1c2 100644 --- a/src/gpgpu-sim/shader.cc +++ b/src/gpgpu-sim/shader.cc @@ -1642,7 +1642,7 @@ bool ldst_unit::memory_cycle( warp_inst_t &inst, mem_stage_stall_type &stall_rea bypassL1D = true; } else if (inst.space.is_global()) { // global memory access // skip L1 cache if the option is enabled - if (m_core->get_config()->gmem_skip_L1D) + if (m_core->get_config()->gmem_skip_L1D && (CACHE_L1 != inst.cache_op)) bypassL1D = true; } |
