gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
wavefront.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2017 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __GPU_COMPUTE_WAVEFRONT_HH__
35 #define __GPU_COMPUTE_WAVEFRONT_HH__
36 
37 #include <cassert>
38 #include <deque>
39 #include <list>
40 #include <memory>
41 #include <unordered_map>
42 #include <vector>
43 
44 #include "arch/gpu_isa.hh"
45 #include "base/logging.hh"
46 #include "base/statistics.hh"
47 #include "base/stats/group.hh"
48 #include "base/types.hh"
49 #include "config/the_gpu_isa.hh"
54 #include "gpu-compute/lds_state.hh"
55 #include "gpu-compute/misc.hh"
56 #include "params/Wavefront.hh"
57 #include "sim/sim_object.hh"
58 
59 class Wavefront : public SimObject
60 {
61  public:
62  enum status_e {
63  // wavefront is stalled
65  // wavefront is returning from a kernel
67  // wavefront is running normally
69  // wavefront is stalled
71 
73 
91  };
92 
93  // HW slot id where the WF is mapped to inside a SIMD unit
94  const int wfSlotId;
95  int kernId;
96  // SIMD unit where the WV has been scheduled
97  const int simdId;
98  // id of the execution unit (or pipeline) where the oldest instruction
99  // of the WF is scheduled
103  // pointer to parent CU
106 
108 
110  bool dropFetch;
111  // last tick during which all WFs in the CU are not idle
113 
114  // Execution unit resource ID's associated with this WF
115  // These are static mappings set at WF slot construction and
116  // based off of the simdId and wfSlotId.
117 
118  // Index to scalarALUs resource vector in CU
120 
121  // Indices into readyList/dispatchList of resources used by this
122  // wavefront
125  int localMem;
127 
128  // number of VGPRs required by WF
129  uint32_t maxVgprs;
130  // number of SGPRs required by WF
131  uint32_t maxSgprs;
132  void freeResources();
134  void setStatus(status_e newStatus);
135  status_e getStatus() { return status; }
136  void resizeRegFiles(int num_vregs, int num_sregs);
139  bool isOldestInstWaitcnt();
140  bool isOldestInstSleep();
141  bool isOldestInstGMem();
142  bool isOldestInstLMem();
143  bool isOldestInstPrivMem();
144  bool isOldestInstFlatMem();
145  bool isOldestInstVectorALU();
146  bool isOldestInstScalarALU();
147  bool isOldestInstScalarMem();
148  bool isOldestInstBarrier();
149 
150  // used for passing spill address to DDInstGPU
154  /* kernel launch parameters */
155  uint32_t workGroupId[3];
156  uint32_t workGroupSz[3];
157  uint32_t gridSz[3];
158  uint32_t wgId;
159  uint32_t wgSz;
160  /* the actual WG size can differ than the maximum size */
161  uint32_t actualWgSz[3];
162  uint32_t actualWgSzTotal;
163  void computeActualWgSz(HSAQueueEntry *task);
164  // wavefront id within a workgroup
165  uint32_t wfId;
166  uint32_t maxDynWaveId;
167  uint32_t dispatchId;
168  // vector and scalar memory requests pending in memory system
170  // outstanding global memory write requests
172  // outstanding local memory write requests
174  // outstanding global memory read requests
176  // outstanding local memory read requests
178  // outstanding scalar memory read requests
180  // outstanding scalar memory write requests
188 
190  uint64_t lastTrace;
191  // number of virtual vector registers reserved by WF
193  // number of virtual scalar registers reserved by WF
195  // Index into the Vector Register File's namespace where the WF's registers
196  // will live while the WF is executed
197  uint32_t startVgprIndex;
198  // Index into the Scalar Register File's namespace where the WF's registers
199  // will live while the WF is executed
200  uint32_t startSgprIndex;
201 
202  // Old value of destination gpr (for trace)
204  // Id of destination gpr (for trace)
205  uint32_t oldVgprId;
206  // Tick count of last old_vgpr copy
207  uint64_t oldVgprTcnt;
208 
209  // Old value of destination gpr (for trace)
211  // Id of destination gpr (for trace)
212  uint32_t oldDgprId;
213  // Tick count of last old_vgpr copy
214  uint64_t oldDgprTcnt;
215 
216  // Execution mask at wavefront start
218 
219  // a pointer to the fraction of the LDS allocated
220  // to this workgroup (thus this wavefront)
222 
223  // unique WF id over all WFs executed across all CUs
224  uint64_t wfDynId;
225 
226  // dyn inst id (per SIMD) of last instruction exec from this wave
227  uint64_t lastInstExec;
228 
229  // Map to track the dyn instruction id of each vector register value
230  // produced, indexed by physical vector register ID
231  std::unordered_map<int,uint64_t> rawDist;
232 
233  // Counts the number of reads performed to each physical register
234  // - counts are reset to 0 for each dynamic wavefront launched
236 
237  void initRegState(HSAQueueEntry *task, int wgSizeInWorkItems);
238 
239  // context for save/restore
240  uint8_t *context;
241 
242  typedef WavefrontParams Params;
243  Wavefront(const Params &p);
244  ~Wavefront();
245  virtual void init();
246 
247  void
249  {
250  computeUnit = cu;
251  }
252 
254  void start(uint64_t _wfDynId, uint64_t _base_ptr);
255  void exec();
256  // called by SCH stage to reserve
258  bool stopFetch();
259 
260  Addr pc() const;
261  void pc(Addr new_pc);
262 
263  VectorMask& execMask();
264  bool execMask(int lane) const;
265 
266 
267  void discardFetch();
268 
269  bool waitCntsSatisfied();
270  void setWaitCnts(int vm_wait_cnt, int exp_wait_cnt, int lgkm_wait_cnt);
271  void clearWaitCnts();
272 
273  void incVMemInstsIssued();
274  void incExpInstsIssued();
275  void incLGKMInstsIssued();
276  void decVMemInstsIssued();
277  void decExpInstsIssued();
278  void decLGKMInstsIssued();
279 
281  void freeRegisterFile();
282 
283  bool sleepDone();
284  void setSleepTime(int sleep_time);
285 
286  TheGpuISA::GPUISA&
288  {
289  return _gpuISA;
290  }
291 
292  void barrierId(int bar_id);
293  int barrierId() const;
294  bool hasBarrier() const;
295  void releaseBarrier();
296 
297  private:
298  TheGpuISA::GPUISA _gpuISA;
299 
302 
325  int sleepCnt;
329  int barId;
330 
331  public:
332  struct WavefrontStats : public Stats::Group
333  {
334  WavefrontStats(Stats::Group *parent);
335 
336  // Number of instructions executed by this wavefront slot across all
337  // dynamic wavefronts
339 
340  // Number of cycles this WF spends in SCH stage
342 
343  // Number of stall cycles encounterd by this WF in SCH stage
345 
346  // The following stats sum to the value of schStalls, and record, per
347  // WF slot, what the cause of each stall was at a coarse granularity.
348 
349  // Cycles WF is selected by scheduler, but RFs cannot support
350  // instruction
352  // Cycles spent waiting for execution resources
354  // cycles spent waiting for RF reads to complete in SCH stage
356  // LDS arbitration stall cycles. WF attempts to execute LM instruction,
357  // but another wave is executing FLAT, which requires LM and GM and
358  // forces this WF to stall.
360 
361  // number of times an instruction of a WF is blocked from being issued
362  // due to WAR and WAW dependencies
364  // number of times an instruction of a WF is blocked from being issued
365  // due to WAR and WAW dependencies
367 
368  // Distribution to track the distance between producer and consumer
369  // for vector register values
371 
372  // Distribution to track the number of times every vector register
373  // value produced is consumed.
375  } stats;
376 };
377 
378 #endif // __GPU_COMPUTE_WAVEFRONT_HH__
Wavefront::isOldestInstScalarALU
bool isOldestInstScalarALU()
Definition: wavefront.cc:618
Wavefront::barId
int barId
Definition: wavefront.hh:329
Wavefront::isOldestInstFlatMem
bool isOldestInstFlatMem()
Definition: wavefront.cc:713
hsa_queue_entry.hh
Wavefront::wrGmReqsInPipe
int wrGmReqsInPipe
Definition: wavefront.hh:185
Wavefront::clearWaitCnts
void clearWaitCnts()
Definition: wavefront.cc:1315
Wavefront::lgkmInstsIssued
int lgkmInstsIssued
Definition: wavefront.hh:324
Wavefront::scalarMem
int scalarMem
Definition: wavefront.hh:126
Wavefront::startVgprIndex
uint32_t startVgprIndex
Definition: wavefront.hh:197
Wavefront::WavefrontStats::schResourceStalls
Stats::Scalar schResourceStalls
Definition: wavefront.hh:353
Wavefront::barrierId
int barrierId() const
Definition: wavefront.cc:1424
Wavefront::maxIbSize
int maxIbSize
Definition: wavefront.hh:105
Wavefront::resizeRegFiles
void resizeRegFiles(int num_vregs, int num_sregs)
Definition: wavefront.cc:506
group.hh
Wavefront::vecReads
std::vector< int > vecReads
Definition: wavefront.hh:235
Wavefront::oldVgprTcnt
uint64_t oldVgprTcnt
Definition: wavefront.hh:207
Wavefront::maxDynWaveId
uint32_t maxDynWaveId
Definition: wavefront.hh:166
Wavefront::globalMem
int globalMem
Definition: wavefront.hh:124
Wavefront::_execMask
VectorMask _execMask
Definition: wavefront.hh:328
Wavefront::WavefrontStats::schCycles
Stats::Scalar schCycles
Definition: wavefront.hh:341
Wavefront::oldVgpr
std::vector< uint32_t > oldVgpr
Definition: wavefront.hh:203
Wavefront::vmemInstsIssued
int vmemInstsIssued
Definition: wavefront.hh:322
Wavefront::S_RUNNING
@ S_RUNNING
Definition: wavefront.hh:68
Wavefront::start
void start(uint64_t _wfDynId, uint64_t _base_ptr)
Definition: wavefront.cc:554
compute_unit.hh
Wavefront::WavefrontStats::vecRawDistance
Stats::Distribution vecRawDistance
Definition: wavefront.hh:370
Wavefront::wgSz
uint32_t wgSz
Definition: wavefront.hh:159
Wavefront::setParent
void setParent(ComputeUnit *cu)
Definition: wavefront.hh:248
Wavefront::lastAddr
std::vector< Addr > lastAddr
Definition: wavefront.hh:151
Wavefront::WavefrontStats::numTimesBlockedDueWAXDependencies
Stats::Scalar numTimesBlockedDueWAXDependencies
Definition: wavefront.hh:363
Wavefront::Params
WavefrontParams Params
Definition: wavefront.hh:242
Wavefront::scalarRdGmReqsInPipe
int scalarRdGmReqsInPipe
Definition: wavefront.hh:186
Wavefront::decVMemInstsIssued
void decVMemInstsIssued()
Definition: wavefront.cc:1347
misc.hh
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
Wavefront::isOldestInstPrivMem
bool isOldestInstPrivMem()
Definition: wavefront.cc:700
Wavefront::S_STALLED_SLEEP
@ S_STALLED_SLEEP
Definition: wavefront.hh:72
Wavefront::isOldestInstScalarMem
bool isOldestInstScalarMem()
Definition: wavefront.cc:674
Wavefront::isOldestInstSleep
bool isOldestInstSleep()
Definition: wavefront.cc:587
Wavefront::status
status_e status
Definition: wavefront.hh:326
Wavefront::WavefrontStats::numInstrExecuted
Stats::Scalar numInstrExecuted
Definition: wavefront.hh:338
Wavefront::pc
Addr pc() const
Definition: wavefront.cc:1365
std::vector< Addr >
Wavefront::reserveGmResource
void reserveGmResource(GPUDynInstPtr ii)
Definition: wavefront.cc:759
Wavefront::scalarWrGmReqsInPipe
int scalarWrGmReqsInPipe
Definition: wavefront.hh:187
Wavefront::wfId
uint32_t wfId
Definition: wavefront.hh:165
Wavefront::oldVgprId
uint32_t oldVgprId
Definition: wavefront.hh:205
Wavefront::scalarAluGlobalIdx
int scalarAluGlobalIdx
Definition: wavefront.hh:123
Wavefront::S_BARRIER
@ S_BARRIER
WF is stalled at a barrier.
Definition: wavefront.hh:90
Wavefront::workItemId
std::vector< uint32_t > workItemId[3]
Definition: wavefront.hh:152
Wavefront::dropFetch
bool dropFetch
Definition: wavefront.hh:110
HSAQueueEntry
Definition: hsa_queue_entry.hh:58
Wavefront::stats
Wavefront::WavefrontStats stats
Wavefront::actualWgSz
uint32_t actualWgSz[3]
Definition: wavefront.hh:161
Wavefront::incExpInstsIssued
void incExpInstsIssued()
Definition: wavefront.cc:1335
Wavefront::scalarOutstandingReqsWrGm
int scalarOutstandingReqsWrGm
Definition: wavefront.hh:181
Wavefront::context
uint8_t * context
Definition: wavefront.hh:240
Wavefront::sleepCnt
int sleepCnt
Definition: wavefront.hh:325
Wavefront::wfSlotId
const int wfSlotId
Definition: wavefront.hh:94
Wavefront::vmWaitCnt
int vmWaitCnt
the following are used for waitcnt instructions vmWaitCnt: once set, we wait for the oustanding numbe...
Definition: wavefront.hh:319
Wavefront::setStatus
void setStatus(status_e newStatus)
Definition: wavefront.cc:517
Wavefront::actualWgSzTotal
uint32_t actualWgSzTotal
Definition: wavefront.hh:162
Wavefront::wrLmReqsInPipe
int wrLmReqsInPipe
Definition: wavefront.hh:184
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
ComputeUnit
Definition: compute_unit.hh:200
Wavefront::S_STALLED
@ S_STALLED
Definition: wavefront.hh:70
Wavefront::getStatus
status_e getStatus()
Definition: wavefront.hh:135
Wavefront::ldsChunk
LdsChunk * ldsChunk
Definition: wavefront.hh:221
Wavefront::outstandingReqs
int outstandingReqs
Definition: wavefront.hh:169
Wavefront::computeUnit
ComputeUnit * computeUnit
Definition: wavefront.hh:104
Wavefront::S_RETURNING
@ S_RETURNING
Definition: wavefront.hh:66
Wavefront::WavefrontStats::schLdsArbStalls
Stats::Scalar schLdsArbStalls
Definition: wavefront.hh:359
Wavefront::discardFetch
void discardFetch()
Definition: wavefront.cc:1188
Wavefront::scalarOutstandingReqsRdGm
int scalarOutstandingReqsRdGm
Definition: wavefront.hh:179
Wavefront::exec
void exec()
Definition: wavefront.cc:861
Wavefront::isOldestInstVectorALU
bool isOldestInstVectorALU()
Definition: wavefront.cc:633
Wavefront::localMem
int localMem
Definition: wavefront.hh:125
Wavefront::WavefrontStats::schRfAccessStalls
Stats::Scalar schRfAccessStalls
Definition: wavefront.hh:351
sim_object.hh
Wavefront::isOldestInstWaitcnt
bool isOldestInstWaitcnt()
Definition: wavefront.cc:601
Wavefront::releaseBarrier
void releaseBarrier()
Definition: wavefront.cc:1436
Wavefront::freeResources
void freeResources()
Definition: wavefront.cc:740
Wavefront::setWaitCnts
void setWaitCnts(int vm_wait_cnt, int exp_wait_cnt, int lgkm_wait_cnt)
Definition: wavefront.cc:1270
statistics.hh
Wavefront::startSgprIndex
uint32_t startSgprIndex
Definition: wavefront.hh:200
Wavefront::lastNonIdleTick
Tick lastNonIdleTick
Definition: wavefront.hh:112
Wavefront::S_WAITCNT
@ S_WAITCNT
wavefront has unsatisfied wait counts
Definition: wavefront.hh:86
Wavefront::WavefrontStats::numTimesBlockedDueRAWDependencies
Stats::Scalar numTimesBlockedDueRAWDependencies
Definition: wavefront.hh:366
Wavefront::freeRegisterFile
void freeRegisterFile()
Freeing VRF space.
Definition: wavefront.cc:1389
Wavefront::outstandingReqsRdGm
int outstandingReqsRdGm
Definition: wavefront.hh:175
Wavefront::WavefrontStats::schOpdNrdyStalls
Stats::Scalar schOpdNrdyStalls
Definition: wavefront.hh:355
gpu_dyn_inst.hh
Wavefront::sleepDone
bool sleepDone()
Definition: wavefront.cc:1244
Wavefront::flatGmUnitId
int flatGmUnitId
Definition: wavefront.hh:102
Wavefront::validateRequestCounters
void validateRequestCounters()
Definition: wavefront.cc:745
Wavefront::expInstsIssued
int expInstsIssued
Definition: wavefront.hh:323
Wavefront::isLmInstruction
bool isLmInstruction(GPUDynInstPtr ii)
Definition: wavefront.cc:576
Wavefront::maxSgprs
uint32_t maxSgprs
Definition: wavefront.hh:131
Wavefront::isOldestInstLMem
bool isOldestInstLMem()
Definition: wavefront.cc:687
Wavefront::simdId
const int simdId
Definition: wavefront.hh:97
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Wavefront::lastInstExec
uint64_t lastInstExec
Definition: wavefront.hh:227
Stats::Distribution
A simple distribution stat.
Definition: statistics.hh:2084
Wavefront::isOldestInstGMem
bool isOldestInstGMem()
Definition: wavefront.cc:661
Wavefront::rdLmReqsInPipe
int rdLmReqsInPipe
Definition: wavefront.hh:182
Wavefront::S_STOPPED
@ S_STOPPED
Definition: wavefront.hh:64
Wavefront::lgkmWaitCnt
int lgkmWaitCnt
Definition: wavefront.hh:321
Wavefront::hasBarrier
bool hasBarrier() const
Definition: wavefront.cc:1430
Wavefront::computeActualWgSz
void computeActualWgSz(HSAQueueEntry *task)
Definition: wavefront.cc:1405
Wavefront::nextInstr
GPUDynInstPtr nextInstr()
Definition: wavefront.cc:1169
Wavefront::rawDist
std::unordered_map< int, uint64_t > rawDist
Definition: wavefront.hh:231
Wavefront::decLGKMInstsIssued
void decLGKMInstsIssued()
Definition: wavefront.cc:1359
Wavefront::decExpInstsIssued
void decExpInstsIssued()
Definition: wavefront.cc:1353
Wavefront::pendingFetch
bool pendingFetch
Definition: wavefront.hh:109
Wavefront::outstandingReqsRdLm
int outstandingReqsRdLm
Definition: wavefront.hh:177
Wavefront::waitCntsSatisfied
bool waitCntsSatisfied()
Definition: wavefront.cc:1201
Wavefront::Wavefront
Wavefront(const Params &p)
Definition: wavefront.cc:47
Wavefront::execUnitId
int execUnitId
Definition: wavefront.hh:100
Wavefront::WavefrontStats::schStalls
Stats::Scalar schStalls
Definition: wavefront.hh:344
Wavefront::isGmInstruction
bool isGmInstruction(GPUDynInstPtr ii)
Definition: wavefront.cc:565
Wavefront::reserveLmResource
void reserveLmResource(GPUDynInstPtr ii)
Definition: wavefront.cc:789
Wavefront::memTraceBusy
int memTraceBusy
Definition: wavefront.hh:189
Wavefront::isOldestInstBarrier
bool isOldestInstBarrier()
Definition: wavefront.cc:648
Wavefront::WavefrontStats::readsPerWrite
Stats::Distribution readsPerWrite
Definition: wavefront.hh:374
types.hh
Wavefront::_pc
Addr _pc
Definition: wavefront.hh:327
Wavefront
Definition: wavefront.hh:59
Wavefront::initRegState
void initRegState(HSAQueueEntry *task, int wgSizeInWorkItems)
Definition: wavefront.cc:116
std::deque< GPUDynInstPtr >
Stats::Group
Statistics container.
Definition: group.hh:87
Wavefront::execMask
VectorMask & execMask()
Definition: wavefront.cc:1377
Wavefront::wgId
uint32_t wgId
Definition: wavefront.hh:158
GPUDynInstPtr
std::shared_ptr< GPUDynInst > GPUDynInstPtr
Definition: misc.hh:48
Wavefront::workGroupId
uint32_t workGroupId[3]
Definition: wavefront.hh:155
Wavefront::gpuISA
TheGpuISA::GPUISA & gpuISA()
Definition: wavefront.hh:287
logging.hh
LdsChunk
this represents a slice of the overall LDS, intended to be associated with an individual workgroup
Definition: lds_state.hh:55
Wavefront::init
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: wavefront.cc:101
Wavefront::instructionBuffer
std::deque< GPUDynInstPtr > instructionBuffer
Definition: wavefront.hh:107
Wavefront::kernId
int kernId
Definition: wavefront.hh:95
Wavefront::~Wavefront
~Wavefront()
Definition: wavefront.cc:512
Wavefront::oldDgprTcnt
uint64_t oldDgprTcnt
Definition: wavefront.hh:214
Wavefront::setSleepTime
void setSleepTime(int sleep_time)
Definition: wavefront.cc:1263
Wavefront::expWaitCnt
int expWaitCnt
Definition: wavefront.hh:320
Wavefront::incVMemInstsIssued
void incVMemInstsIssued()
Definition: wavefront.cc:1329
Wavefront::outstandingReqsWrLm
int outstandingReqsWrLm
Definition: wavefront.hh:173
Wavefront::_gpuISA
TheGpuISA::GPUISA _gpuISA
Definition: wavefront.hh:298
dispatcher.hh
Wavefront::scalarAlu
int scalarAlu
Definition: wavefront.hh:119
Wavefront::workItemFlatId
std::vector< uint32_t > workItemFlatId
Definition: wavefront.hh:153
Wavefront::reservedVectorRegs
int reservedVectorRegs
Definition: wavefront.hh:192
Wavefront::oldDgprId
uint32_t oldDgprId
Definition: wavefront.hh:212
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Wavefront::rdGmReqsInPipe
int rdGmReqsInPipe
Definition: wavefront.hh:183
Wavefront::flatLmUnitId
int flatLmUnitId
Definition: wavefront.hh:101
Wavefront::oldDgpr
std::vector< uint64_t > oldDgpr
Definition: wavefront.hh:210
VectorMask
std::bitset< std::numeric_limits< unsigned long long >::digits > VectorMask
Definition: misc.hh:44
Wavefront::stopFetch
bool stopFetch()
Definition: wavefront.cc:726
Wavefront::WavefrontStats::WavefrontStats
WavefrontStats(Stats::Group *parent)
Definition: wavefront.cc:1441
Wavefront::workGroupSz
uint32_t workGroupSz[3]
Definition: wavefront.hh:156
Wavefront::dispatchId
uint32_t dispatchId
Definition: wavefront.hh:167
Wavefront::reservedScalarRegs
int reservedScalarRegs
Definition: wavefront.hh:194
Wavefront::status_e
status_e
Definition: wavefront.hh:62
Wavefront::gridSz
uint32_t gridSz[3]
Definition: wavefront.hh:157
Wavefront::lastTrace
uint64_t lastTrace
Definition: wavefront.hh:190
Wavefront::initMask
VectorMask initMask
Definition: wavefront.hh:217
Wavefront::WavefrontStats
Definition: wavefront.hh:332
Wavefront::outstandingReqsWrGm
int outstandingReqsWrGm
Definition: wavefront.hh:171
Wavefront::wfDynId
uint64_t wfDynId
Definition: wavefront.hh:224
Wavefront::reserveResources
std::vector< int > reserveResources()
Definition: wavefront.cc:807
Wavefront::maxVgprs
uint32_t maxVgprs
Definition: wavefront.hh:129
Wavefront::incLGKMInstsIssued
void incLGKMInstsIssued()
Definition: wavefront.cc:1341
lds_state.hh
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17