2
0

SWDEV-263539 - More Target ID fix in GSL path

On behalf of Tony Tye. The bootleg passes CQE Baffin/Ellesmere test.

Change-Id: I4c21d21b3aaba360682ef15b8a4dda239f8af276
Este cometimento está contido em:
Jason Tang
2020-12-14 15:40:43 -05:00
cometido por Jason Tang
ascendente 18a821acde
cometimento d4316141b7
7 ficheiros modificados com 145 adições e 126 eliminações
+3 -3
Ver ficheiro
@@ -594,9 +594,9 @@ void NullDevice::fillDeviceInfo(const CALdeviceattribs& calAttr, const gslMemInf
info_.globalMemChannelBankWidth_ = hwInfo()->memChannelBankWidth_;
info_.localMemSizePerCU_ = hwInfo()->localMemSizePerCU_;
info_.localMemBanks_ = hwInfo()->localMemBanks_;
info_.gfxipMajor_ = hwInfo()->gfxipVersion_ / 100;
info_.gfxipMinor_ = hwInfo()->gfxipVersion_ / 10 % 10;
info_.gfxipStepping_ = hwInfo()->gfxipVersion_ % 10;
info_.gfxipMajor_ = hwInfo()->gfxipMajor_;
info_.gfxipMinor_ = hwInfo()->gfxipMinor_;
info_.gfxipStepping_ = hwInfo()->gfxipStepping_;
info_.numAsyncQueues_ = numComputeRings;