summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/shader.cc
diff options
context:
space:
mode:
authorMahmoud Khairy A. Abdallah <[email protected]>2020-03-31 13:33:42 -0400
committerMahmoud Khairy A. Abdallah <[email protected]>2020-03-31 13:33:42 -0400
commiteb618e6bbe0bac135ba800a5880f18040f35acf8 (patch)
tree88274fcd05a738190e6c1d0b1543b52aa4e87011 /src/gpgpu-sim/shader.cc
parented97d2a5b0096fb8afa4bc83fe2df515b2a2399c (diff)
adding some RF stats
Diffstat (limited to 'src/gpgpu-sim/shader.cc')
-rw-r--r--src/gpgpu-sim/shader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/shader.cc b/src/gpgpu-sim/shader.cc
index 297f3bc..afd63e8 100644
--- a/src/gpgpu-sim/shader.cc
+++ b/src/gpgpu-sim/shader.cc
@@ -3250,7 +3250,7 @@ std::list<opndcoll_rfu_t::op_t> opndcoll_rfu_t::arbiter_t::allocate_reads()
// Grant!
_inmatch[input] = output;
_outmatch[output] = input;
- printf("Register File: granting banks %d to OC % \n", input, output);
+ printf("Register File: granting bank %d to OC %d, schedid %d, warpid %d, Regid %d\n", input, output, (m_queue[output].front()).get_sid(), (m_queue[output].front()).get_wid(), (m_queue[output].front()).get_reg());
}
output = ( output + 1 ) % _square;