vineodd / PIMSim

PIMSim is a Process-In-Memory Simulator with the compatibility of GEM5 full-system simulation.
GNU General Public License v3.0
178 stars 85 forks source link

A question about code #36

Open Mountas-Liu opened 1 year ago

Mountas-Liu commented 1 year ago

Hello, I have a question about code in abstractmem.cc . if(senderState->isRegistration()){ pendingPIMqueue.push_back(senderState); pkt->popLabel(); delete pkt; } When abstractmem receives a request package, it will push it into pendingPIMqueue. However, I didn't find the place where the PIM device handles the requests in this queue. Can you give me some advice? Thank you very much.