summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/gpu-cache.cc
diff options
context:
space:
mode:
authorMahmoud <[email protected]>2017-10-12 17:57:23 -0400
committerMahmoud <[email protected]>2017-10-12 17:57:23 -0400
commit6e60441e5724f3d9dd974c17ca67e7bf3e1f990b (patch)
treed19e2f96c58a047df7e8941938da0a3cb33ab77b /src/gpgpu-sim/gpu-cache.cc
parent5661fa57d14356528a380134b3552876fcd72566 (diff)
remove Tex cache assertion and prevent spunit to execute DP insts
Diffstat (limited to 'src/gpgpu-sim/gpu-cache.cc')
-rw-r--r--src/gpgpu-sim/gpu-cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/gpu-cache.cc b/src/gpgpu-sim/gpu-cache.cc
index 9633874..eadc094 100644
--- a/src/gpgpu-sim/gpu-cache.cc
+++ b/src/gpgpu-sim/gpu-cache.cc
@@ -1483,7 +1483,7 @@ void tex_cache::cycle(){
unsigned rob_index = m_rob.next_pop_index();
const rob_entry &r = m_rob.peek(rob_index);
assert( r.m_request == e.m_request );
- assert( r.m_block_addr == m_config.block_addr(e.m_request->get_addr()) );
+ //assert( r.m_block_addr == m_config.block_addr(e.m_request->get_addr()) );
if ( r.m_ready ) {
assert( r.m_index == e.m_cache_index );
m_cache[r.m_index].m_valid = true;