Fixed bug of determine max block size in hipOccupancyMaxPotentialBlockSize (#1235)

[ROCm/clr commit: 6ec476e50a]
Αυτή η υποβολή περιλαμβάνεται σε:
wkwchau
2019-07-17 23:19:29 -04:00
υποβλήθηκε από Maneesh Gupta
γονέας 8b8946f78b
υποβολή d20537e595
@@ -993,7 +993,7 @@ hipError_t ihipOccupancyMaxPotentialBlockSize(uint32_t* gridSize, uint32_t* bloc
tmp_min = min(maxWavesSGPRSLimited, tmp_min);
activeWavefronts = min(maxWavesVGPRSLimited, tmp_min);
if (maxActivWaves < activeWavefronts) {
if (maxActivWaves <= activeWavefronts) {
maxActivWaves = activeWavefronts;
maxWavefronts = wavefrontsPerWG;
}