50 cuPort(
name() +
".port", this),
51 maximumSize(params->size),
53 bankConflictPenalty(params->bankConflictPenalty),
57 "Number of LDS banks should be positive number");
58 fatal_if((params->banks & (params->banks - 1)) != 0,
59 "Number of LDS banks should be a power of 2");
61 "cannot allocate an LDS with a size less than 1");
63 "the LDS should be an even number");
70 LdsStateParams::create()
82 fatal_if(!x_parent,
"x_parent should not be nullptr");
84 "should not be setting the parent twice");
104 "did not get the right sort of sender state");
114 unsigned *numBankAccesses)
116 int bank_conflicts = 0;
125 for (
int i = 0;
i < groups;
i++) {
128 addr_array.resize(numBanks, 0);
130 bank.resize(
banks, 0);
134 for (
int j = 0;
j < numBanks;
j++) {
135 if (gpuDynInst->exec_mask[(
i*numBanks)+
j]) {
136 addr_array[
j] = gpuDynInst->addr[(
i*numBanks)+
j];
138 addr_array[
j] = std::numeric_limits<Addr>::max();
142 if (gpuDynInst->isLoad() || gpuDynInst->isStore()) {
144 for (
int j = 0;
j < numBanks; ++
j) {
145 for (
int j0 = 0; j0 <
j; j0++) {
146 if (addr_array[j] != std::numeric_limits<Addr>::max()
147 && addr_array[
j] == addr_array[j0]) {
148 addr_array[
j] = std::numeric_limits<Addr>::max();
154 for (
int j = 0;
j < numBanks; ++
j) {
155 if (addr_array[
j] != std::numeric_limits<Addr>::max()) {
156 int bankId = addr_array[
j] %
banks;
158 max_bank = std::max(max_bank, bank[bankId]);
163 (*numBankAccesses)++;
166 bank_conflicts += max_bank;
169 "Max bank conflicts should match num of work items per instr");
170 return bank_conflicts;
179 return ownerLds->processPacket(packet);
197 unsigned bankAccesses = 0;
212 Tick processingTime =
246 fatal(
"not implemented");
256 assert(ownerLds->isRetryResp());
257 ownerLds->setRetryResp(
false);
267 fatal(
"not implemented");
288 gpuDynInst->initiateAcc(gpuDynInst);
298 panic(
"have not handled timing responses being NACK'd when sent" #define panic(...)
This implements a cprintf based panic() function.
GPUDynInstPtr getDynInstr(PacketPtr packet)
virtual void process()
wake up at this time and perform specified actions
#define fatal(...)
This implements a cprintf based fatal() function.
const std::string & name()
Tick earliestReturnTime() const
std::queue< std::pair< Tick, PacketPtr > > returnQueue
void makeTimingResponse()
bool returnQueuePush(std::pair< Tick, PacketPtr > thePair)
add this to the queue of packets to be returned
virtual void recvFunctional(PacketPtr pkt)
receive a packet in functional mode
LdsState(const Params *params)
the default constructor that works with SWIG
bool processPacket(PacketPtr packet)
process an incoming packet, add it to the return queue
Stats::Distribution ldsBankConflictDist
std::shared_ptr< GPUDynInst > GPUDynInstPtr
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the master port by calling its corresponding receive function...
virtual void recvRetry()
receive a retry
SenderState * predecessor
uint64_t Tick
Tick count type.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
GPUDynInstPtr getMemInst() const
unsigned countBankConflicts(PacketPtr packet, unsigned *bankAccesses)
derive the gpu mem packet from the packet and then count the bank conflicts
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
virtual void recvRespRetry()
receive a retry for a response
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a SimObject that sees the packet.
bool scheduled() const
Determine if the current event is scheduled.
virtual const std::string name() const
SenderState is information carried along with the packet, esp.
SenderState * senderState
This packet's sender state.
Tick ticks(int numCycles) const
Stats::Scalar ldsBankAccesses
bool process()
look for packets to return at this time
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Tick when() const
Get the time that the event is scheduled.
void setParent(ComputeUnit *x_parent)
set the parent and name based on the parent
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
virtual bool recvTimingReq(PacketPtr pkt)
receive the packet from the CU