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

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
@sandhya-c sandhya-c force-pushed the level_zero_tests_Late_binding branch 3 times, most recently from 1b01c0a to 800e115 Compare December 17, 2025 07:53
@sandhya-c sandhya-c force-pushed the level_zero_tests_Late_binding branch from 800e115 to 7619592 Compare December 17, 2025 08:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

2 participants