Searched refs:req_cnt (Results 1 - 2 of 2) sorted by relevance

/gem5/src/gpu-compute/
H A Dtlb_coalescer.cc253 int req_cnt = 1; local
256 req_cnt = sender_state->reqCnt.back();
258 sender_state->reqCnt.push_back(req_cnt);
262 req_cnt = sender_state->reqCnt.back();
263 DPRINTF(GPUTLB, "receiving pkt w/ req_cnt %d\n", req_cnt);
264 coalescer->queuingCycles -= (curTick() * req_cnt);
468 // req_cnt is total number of packets represented
471 int req_cnt = tmp_sender_state->reqCnt.back(); local
472 queuingCycles += (curTick() * req_cnt);
[all...]
H A Dgpu_tlb.cc1050 int req_cnt = sender_state->reqCnt.back(); local
1053 accessCycles -= (curTick() * req_cnt);
1056 globalNumTLBAccesses += req_cnt;
1080 globalNumTLBHits += req_cnt;
1084 globalNumTLBMisses += req_cnt;
1255 int req_cnt = tmp_sender_state->reqCnt.back(); local
1263 accessCycles += (req_cnt * curTick());
1271 accessCycles += (req_cnt*curTick());
1280 accessCycles += (req_cnt * 1);
1304 pageTableCycles -= (req_cnt*curTic
[all...]

Completed in 10 milliseconds