Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gpu-simulator/trace-driven/trace_driven.cc
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ bool trace_warp_inst_t::parse_from_trace_struct(
// Add for LDGSTS instruction
if (m_opcode == OP_LDGSTS) m_is_ldgsts = true;
// check the cache scope, if its strong GPU, then bypass L1
if (trace.check_opcode_contain(opcode_tokens, "STRONG") &&
trace.check_opcode_contain(opcode_tokens, "GPU")) {
if ((trace.check_opcode_contain(opcode_tokens, "STRONG") &&
trace.check_opcode_contain(opcode_tokens, "GPU")) || trace.check_opcode_contain(opcode_tokens, "BYPASS")) {
cache_op = CACHE_GLOBAL;
}
break;
Expand Down