Go to the documentation of this file.
53 cuPort(
name() +
".port", this),
54 maximumSize(params.size),
56 bankConflictPenalty(params.bankConflictPenalty),
60 "Number of LDS banks should be positive number");
62 "Number of LDS banks should be a power of 2");
64 "cannot allocate an LDS with a size less than 1");
66 "the LDS should be an even number");
76 fatal_if(!x_parent,
"x_parent should not be nullptr");
78 "should not be setting the parent twice");
98 "did not get the right sort of sender state");
108 unsigned *numBankAccesses)
110 int bank_conflicts = 0;
119 for (
int i = 0;
i < groups;
i++) {
122 addr_array.resize(numBanks, 0);
124 bank.resize(
banks, 0);
128 for (
int j = 0;
j < numBanks;
j++) {
129 if (gpuDynInst->exec_mask[(
i*numBanks)+
j]) {
130 addr_array[
j] = gpuDynInst->addr[(
i*numBanks)+
j];
132 addr_array[
j] = std::numeric_limits<Addr>::max();
136 if (gpuDynInst->isLoad() || gpuDynInst->isStore()) {
138 for (
int j = 0;
j < numBanks; ++
j) {
139 for (
int j0 = 0; j0 <
j; j0++) {
140 if (addr_array[
j] != std::numeric_limits<Addr>::max()
141 && addr_array[
j] == addr_array[j0]) {
142 addr_array[
j] = std::numeric_limits<Addr>::max();
148 for (
int j = 0;
j < numBanks; ++
j) {
149 if (addr_array[
j] != std::numeric_limits<Addr>::max()) {
150 int bankId = addr_array[
j] %
banks;
152 max_bank = std::max(max_bank, bank[bankId]);
157 (*numBankAccesses)++;
160 bank_conflicts += max_bank;
163 "Max bank conflicts should match num of work items per instr");
164 return bank_conflicts;
182 return ss->getMemInst();
191 unsigned bankAccesses = 0;
206 Tick processingTime =
240 fatal(
"not implemented");
250 assert(ownerLds->isRetryResp());
251 ownerLds->setRetryResp(
false);
261 fatal(
"not implemented");
282 gpuDynInst->initiateAcc(gpuDynInst);
292 panic(
"have not handled timing responses being NACK'd when sent"
#define fatal(...)
This implements a cprintf based fatal() function.
virtual void process()
wake up at this time and perform specified actions
Tick when() const
Get the time that the event is scheduled.
virtual void recvFunctional(PacketPtr pkt)
receive a packet in functional mode
SenderState is information carried along with the packet, esp.
gem5::ComputeUnit::ComputeUnitStats stats
void setParent(ComputeUnit *x_parent)
set the parent and name based on the parent
LdsState(const Params ¶ms)
the default constructor that works with SWIG
statistics::Distribution ldsBankConflictDist
int storeBusLength() const
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
SenderState * predecessor
Cycles is a wrapper class for representing cycle counts, i.e.
int loadBusLength() const
GPUDynInstPtr getDynInstr(PacketPtr packet)
virtual std::string name() const
Tick cyclesToTicks(Cycles c) const
const Params & params() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
virtual bool recvTimingReq(PacketPtr pkt)
receive the packet from the CU
uint64_t Tick
Tick count type.
Tick earliestReturnTime() const
bool processPacket(PacketPtr packet)
process an incoming packet, add it to the return queue
statistics::Scalar ldsBankAccesses
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the request port by calling its corresponding receive function.
virtual void recvRetry()
receive a retry
A virtual base opaque structure used to hold state associated with the packet (e.g....
SenderState * senderState
This packet's sender state.
const std::string & name()
std::shared_ptr< GPUDynInst > GPUDynInstPtr
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
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...
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void makeTimingResponse()
unsigned countBankConflicts(PacketPtr packet, unsigned *bankAccesses)
derive the gpu mem packet from the packet and then count the bank conflicts
GPUDynInstPtr getMemInst() const
std::queue< std::pair< Tick, PacketPtr > > returnQueue
bool returnQueuePush(std::pair< Tick, PacketPtr > thePair)
add this to the queue of packets to be returned
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
bool process()
look for packets to return at this time
virtual void recvRespRetry()
receive a retry for a response
bool scheduled() const
Determine if the current event is scheduled.
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Sep 7 2021 14:53:47 for gem5 by doxygen 1.8.17