gpu-compute: remove unused variable from scoreboard check stage
appease clang by removing the unused private member variable, 'numGlbMemPipes', from the scoreboard check stage
This commit is contained in:
parent
3ba481496d
commit
1ab75c3ee2
2 changed files with 0 additions and 2 deletions
|
@ -44,7 +44,6 @@
|
||||||
ScoreboardCheckStage::ScoreboardCheckStage(const ComputeUnitParams *p)
|
ScoreboardCheckStage::ScoreboardCheckStage(const ComputeUnitParams *p)
|
||||||
: numSIMDs(p->num_SIMDs),
|
: numSIMDs(p->num_SIMDs),
|
||||||
numMemUnits(p->num_global_mem_pipes + p->num_shared_mem_pipes),
|
numMemUnits(p->num_global_mem_pipes + p->num_shared_mem_pipes),
|
||||||
numGlbMemPipes(p->num_global_mem_pipes),
|
|
||||||
numShrMemPipes(p->num_shared_mem_pipes),
|
numShrMemPipes(p->num_shared_mem_pipes),
|
||||||
vectorAluInstAvail(nullptr),
|
vectorAluInstAvail(nullptr),
|
||||||
lastGlbMemSimd(-1),
|
lastGlbMemSimd(-1),
|
||||||
|
|
|
@ -78,7 +78,6 @@ class ScoreboardCheckStage
|
||||||
ComputeUnit *computeUnit;
|
ComputeUnit *computeUnit;
|
||||||
uint32_t numSIMDs;
|
uint32_t numSIMDs;
|
||||||
uint32_t numMemUnits;
|
uint32_t numMemUnits;
|
||||||
uint32_t numGlbMemPipes;
|
|
||||||
uint32_t numShrMemPipes;
|
uint32_t numShrMemPipes;
|
||||||
|
|
||||||
// flag per vector SIMD unit that is set when there is at least one
|
// flag per vector SIMD unit that is set when there is at least one
|
||||||
|
|
Loading…
Reference in a new issue