Go to the documentation of this file.
32 #ifndef __LDS_STATE_HH__
33 #define __LDS_STATE_HH__
38 #include <unordered_map>
44 #include "params/LdsState.hh"
228 std::unordered_map<uint32_t,
232 std::unordered_map<uint32_t,
260 unsigned *numBankAccesses);
299 "reference count should not be below zero");
313 "reference count should not be below zero or at zero to"
332 auto dispatchIter =
chunkMap.find(dispatchId);
334 "could not locate this dispatch id [%d]", dispatchId);
336 auto workgroup = dispatchIter->second.find(wgId);
337 fatal_if(workgroup == dispatchIter->second.end(),
338 "could not find this workgroup id within this dispatch id"
339 " did[%d] wgid[%d]", dispatchId, wgId);
341 auto refCountIter =
refCounter.find(dispatchId);
343 fatal(
"could not locate this dispatch id [%d]", dispatchId);
345 auto workgroup = refCountIter->second.find(wgId);
346 if (workgroup == refCountIter->second.end()) {
347 fatal(
"could not find this workgroup id within this dispatch id"
348 " did[%d] wgid[%d]", dispatchId, wgId);
354 fatal(
"should not reach this point");
369 "duplicate workgroup ID asking for space in the LDS "
370 "did[%d] wgid[%d]", dispatchId, wgId);
379 panic_if(!value.second,
"was unable to allocate a new chunkMap");
395 "fetch for unknown dispatch ID did[%d]", dispatchId);
398 "fetch for unknown workgroup ID wgid[%d] in dispatch ID did[%d]",
466 if (if_name ==
"cuPort") {
470 fatal(
"cannot resolve the port name " + if_name);
490 auto dispatchIter =
chunkMap.find(x_dispatchId);
492 if (dispatchIter ==
chunkMap.end()) {
493 fatal(
"dispatch id not found [%d]", x_dispatchId);
495 auto workgroupIter = dispatchIter->second.find(x_wgId);
496 if (workgroupIter == dispatchIter->second.end()) {
497 fatal(
"workgroup id [%d] not found in dispatch id [%d]",
498 x_wgId, x_dispatchId);
503 "releasing more space than was allocated");
535 #endif // __LDS_STATE_HH__
Tick curTick()
The universal simulation clock.
#define fatal(...)
This implements a cprintf based fatal() function.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
ComputeUnit * getParent() const
virtual void process()
wake up at this time and perform specified actions
Tick when() const
Get the time that the event is scheduled.
int getRefCounter(const uint32_t dispatchId, const uint32_t wgId) const
return the current reference count for this workgroup id
AddrRange getAddrRange() const
virtual void recvFunctional(PacketPtr pkt)
receive a packet in functional mode
std::vector< EventQueue * > mainEventQueue
Array for main event queues.
TickEvent(LdsState *_ldsState)
static SimObject * find(const char *name)
Find the SimObject with the given name and return a pointer to it.
std::unordered_map< uint32_t, std::unordered_map< uint32_t, LdsChunk > > chunkMap
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
CuSidePort is the LDS Port closer to the CU side.
ComputeUnit * getComputeUnit() const
LdsChunk * getLdsChunk(const uint32_t dispatchId, const uint32_t wgId)
virtual AddrRangeList getAddrRanges() const
Get a list of the non-overlapping address ranges the owner is responsible for.
bool canReserve(uint32_t x_size) const
can this much space be reserved for a workgroup?
GPUDynInstPtr getDynInstr(PacketPtr packet)
const Params & params() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
bool releaseSpace(const uint32_t x_dispatchId, const uint32_t x_wgId)
give back the space
virtual bool recvTimingReq(PacketPtr pkt)
receive the packet from the CU
uint64_t Tick
Tick count type.
int getBankConflictPenalty() const
Tick earliestReturnTime() const
bool processPacket(PacketPtr packet)
process an incoming packet, add it to the return queue
virtual Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
std::unordered_map< uint32_t, std::unordered_map< uint32_t, int32_t > > refCounter
the lds reference counter The key is the workgroup ID and dispatch ID The value is the number of wave...
this represents a slice of the overall LDS, intended to be associated with an individual workgroup
virtual void recvRetry()
receive a retry
void write(const uint32_t index, const T value)
a write operation
LdsChunk(const uint32_t x_size)
void storeData(PacketPtr packet)
virtual void recvRangeChange()
int increaseRefCounter(const uint32_t dispatchId, const uint32_t wgId)
use the dynamic wave id to create or just increase the reference count
std::shared_ptr< GPUDynInst > GPUDynInstPtr
void loadData(PacketPtr packet)
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Port & getPort(const std::string &if_name, PortID idx)
Get a port with a given name and index.
std::vector< uint8_t >::size_type size() const
get the size of this chunk
an event to allow event-driven execution
A ResponsePort is a specialization of a port.
void atomicOperation(PacketPtr packet)
LdsState & operator=(const LdsState &)=delete
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
std::vector< uint8_t > chunk
Ports are used to interface objects to each other.
unsigned countBankConflicts(PacketPtr packet, unsigned *bankAccesses)
derive the gpu mem packet from the packet and then count the bank conflicts
std::size_t ldsSize(const uint32_t x_wgId)
get the allocated size for this workgroup
std::queue< std::pair< Tick, PacketPtr > > returnQueue
bool returnQueuePush(std::pair< Tick, PacketPtr > thePair)
add this to the queue of packets to be returned
void setRetryResp(const bool value)
CuSidePort(const std::string &_name, LdsState *_ownerLds)
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
int decreaseRefCounter(const uint32_t dispatchId, const uint32_t wgId)
decrease the reference count after making sure it is in the list give back this chunk if the ref coun...
#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
LdsChunk * reserveSpace(const uint32_t dispatchId, const uint32_t wgId, const uint32_t size)
assign a parent and request this amount of space be set aside for this wgid
virtual void recvRespRetry()
receive a retry for a response
T read(const uint32_t index)
a read operation
Generated on Tue Dec 21 2021 11:34:31 for gem5 by doxygen 1.8.17