Kaydet (Commit) 137f872a authored tarafından Michael Meeks's avatar Michael Meeks

GPU Calc: NULL scores are really very high, it's an inverse scale.

Change-Id: Iefe2cd87f499e624cbd3bd2583f6f0df90f4b4cb
üst 45e331ca
...@@ -394,7 +394,7 @@ ds_status pickBestDevice(ds_profile* profile, int* bestDeviceIdx) ...@@ -394,7 +394,7 @@ ds_status pickBestDevice(ds_profile* profile, int* bestDeviceIdx)
ds_device device = profile->devices[d]; ds_device device = profile->devices[d];
LibreOfficeDeviceScore *pScore = (LibreOfficeDeviceScore*)device.score; LibreOfficeDeviceScore *pScore = (LibreOfficeDeviceScore*)device.score;
float fScore = -1; float fScore = DBL_MAX;
if (pScore) if (pScore)
fScore = pScore->fTime; fScore = pScore->fTime;
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment