summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/gpu-cache.h
diff options
context:
space:
mode:
authortgrogers <[email protected]>2017-11-18 21:50:10 -0500
committertgrogers <[email protected]>2017-11-18 21:50:10 -0500
commitb2c4c3e23530799e6e24eb83b2a6b82cf7891cf4 (patch)
tree7dd62b4d340b7a61ffb520ab5643138b3cee48c2 /src/gpgpu-sim/gpu-cache.h
parentdb4011bce0d88b44584eccf3854f3d82876cdc77 (diff)
Getting rid of another assert that crops up cause of our memcpy and L2 interaction
Diffstat (limited to 'src/gpgpu-sim/gpu-cache.h')
-rw-r--r--src/gpgpu-sim/gpu-cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/gpu-cache.h b/src/gpgpu-sim/gpu-cache.h
index 3713126..b649135 100644
--- a/src/gpgpu-sim/gpu-cache.h
+++ b/src/gpgpu-sim/gpu-cache.h
@@ -292,8 +292,8 @@ struct sector_cache_block : public cache_block_t {
{
unsigned sidx = get_sector_index(sector_mask);
- if(!m_ignore_on_fill_status[sidx])
- assert( m_status[sidx] == RESERVED );
+ // if(!m_ignore_on_fill_status[sidx])
+ // assert( m_status[sidx] == RESERVED );
m_status[sidx] = m_set_modified_on_fill[sidx]? MODIFIED : VALID;