Go to the documentation of this file.
50 cuPort(
name() +
".port", this),
51 maximumSize(params.size),
53 bankConflictPenalty(params.bankConflictPenalty),
57 "Number of LDS banks should be positive number");
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");
73 fatal_if(!x_parent,
"x_parent should not be nullptr");
75 "should not be setting the parent twice");
95 "did not get the right sort of sender state");
105 unsigned *numBankAccesses)
107 int bank_conflicts = 0;
116 for (
int i = 0;
i < groups;
i++) {
119 addr_array.resize(numBanks, 0);
121 bank.resize(
banks, 0);
125 for (
int j = 0;
j < numBanks;
j++) {
126 if (gpuDynInst->exec_mask[(
i*numBanks)+
j]) {
127 addr_array[
j] = gpuDynInst->addr[(
i*numBanks)+
j];
129 addr_array[
j] = std::numeric_limits<Addr>::max();
133 if (gpuDynInst->isLoad() || gpuDynInst->isStore()) {
135 for (
int j = 0;
j < numBanks; ++
j) {
136 for (
int j0 = 0; j0 <
j; j0++) {
137 if (addr_array[
j] != std::numeric_limits<Addr>::max()
138 && addr_array[
j] == addr_array[j0]) {
139 addr_array[
j] = std::numeric_limits<Addr>::max();
145 for (
int j = 0;
j < numBanks; ++
j) {
146 if (addr_array[
j] != std::numeric_limits<Addr>::max()) {
147 int bankId = addr_array[
j] %
banks;
149 max_bank = std::max(max_bank, bank[bankId]);
154 (*numBankAccesses)++;
157 bank_conflicts += max_bank;
160 "Max bank conflicts should match num of work items per instr");
161 return bank_conflicts;
179 return ss->getMemInst();
188 unsigned bankAccesses = 0;
203 Tick processingTime =
237 fatal(
"not implemented");
247 assert(ownerLds->isRetryResp());
248 ownerLds->setRetryResp(
false);
258 fatal(
"not implemented");
279 gpuDynInst->initiateAcc(gpuDynInst);
289 panic(
"have not handled timing responses being NACK'd when sent"
#define fatal(...)
This implements a cprintf based fatal() function.
bool scheduled() const
Determine if the current event is scheduled.
virtual void recvRetry()
receive a retry
void makeTimingResponse()
int loadBusLength() const
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the request port by calling its corresponding receive function.
virtual void process()
wake up at this time and perform specified actions
uint64_t Tick
Tick count type.
bool returnQueuePush(std::pair< Tick, PacketPtr > thePair)
add this to the queue of packets to be returned
ComputeUnit::ComputeUnitStats stats
virtual bool recvTimingReq(PacketPtr pkt)
receive the packet from the CU
bool process()
look for packets to return at this time
Tick when() const
Get the time that the event is scheduled.
SenderState is information carried along with the packet, esp.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Stats::Distribution ldsBankConflictDist
Tick cyclesToTicks(Cycles c) const
A virtual base opaque structure used to hold state associated with the packet (e.g....
std::queue< std::pair< Tick, PacketPtr > > returnQueue
Tick earliestReturnTime() const
virtual void recvFunctional(PacketPtr pkt)
receive a packet in functional mode
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...
int storeBusLength() const
GPUDynInstPtr getDynInstr(PacketPtr packet)
Stats::Scalar ldsBankAccesses
const std::string & name()
unsigned countBankConflicts(PacketPtr packet, unsigned *bankAccesses)
derive the gpu mem packet from the packet and then count the bank conflicts
void setParent(ComputeUnit *x_parent)
set the parent and name based on the parent
virtual const std::string name() const
bool processPacket(PacketPtr packet)
process an incoming packet, add it to the return queue
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
GPUDynInstPtr getMemInst() const
std::shared_ptr< GPUDynInst > GPUDynInstPtr
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
Cycles is a wrapper class for representing cycle counts, i.e.
virtual void recvRespRetry()
receive a retry for a response
const Params & params() const
SenderState * senderState
This packet's sender state.
LdsState(const Params ¶ms)
the default constructor that works with SWIG
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
SenderState * predecessor
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Jun 22 2021 15:28:28 for gem5 by doxygen 1.8.17