Skip to content

Conversation

sandhya-c
Copy link

… flashing

Comment on lines 321 to 323
if (count > 0) {
is_fantable_supported = true;
LOG_INFO << "Fan table handles are available on this device!";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

firmware handle count will be >0 even in cases when fan table is not supported. This check is not correct to decide fan table support. We should check the properties like how you have done in line 330

Comment on lines +373 to +374
if (count > 0) {
is_VRConfig_supported = true;
LOG_INFO << "VR Config handles are available on this device!";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here this is not correct

zes_firmware_properties_t props = {
ZES_STRUCTURE_TYPE_FIRMWARE_PROPERTIES};
zesFirmwareGetProperties(fw_handle, &props);
if (std::string(props.name) == "FanTable") {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why FanTable in VR config test?

@sandhya-c sandhya-c force-pushed the level_zero_tests_Late_binding branch from 5c88341 to b03b128 Compare September 8, 2025 09:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants