fix: Update appropriate values in PCI property & state for Windows

Related-To: NEO-12320

Signed-off-by: Vishnu Khanth <vishnu.khanth.b@intel.com>
This commit is contained in:
Vishnu Khanth
2024-08-22 12:09:17 +00:00
committed by Compute-Runtime-Automation
parent fb8921df97
commit 44658fb7d9
9 changed files with 61 additions and 14 deletions

View File

@@ -119,9 +119,9 @@ ze_result_t WddmPciImp::getState(zes_pci_state_t *state) {
std::vector<KmdSysman::ResponseProperty> vResponses = {};
KmdSysman::RequestProperty request = {};
state->qualityIssues = ZES_PCI_LINK_QUAL_ISSUE_FLAG_FORCE_UINT32;
state->stabilityIssues = ZES_PCI_LINK_STAB_ISSUE_FLAG_FORCE_UINT32;
state->status = ZES_PCI_LINK_STATUS_FORCE_UINT32;
state->qualityIssues = 0;
state->stabilityIssues = 0;
state->status = ZES_PCI_LINK_STATUS_UNKNOWN;
state->speed.gen = -1;
state->speed.width = -1;