Revert "feature: platform interrupt support detection"

This reverts commit e33865e9c2.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-08-15 02:11:41 +02:00
committed by Compute-Runtime-Automation
parent 0855219087
commit 1e681f8e8b
11 changed files with 4 additions and 63 deletions

View File

@@ -765,10 +765,6 @@ ze_result_t Event::enableExtensions(const EventDescriptor &eventDescriptor) {
kmdWaitMode = (eventSyncModeDesc->syncModeFlags & ZEX_INTEL_EVENT_SYNC_MODE_EXP_FLAG_LOW_POWER_WAIT);
externalInterruptWait = (eventSyncModeDesc->syncModeFlags & ZEX_INTEL_EVENT_SYNC_MODE_EXP_FLAG_EXTERNAL_INTERRUPT_WAIT);
if (interruptMode && !device->getProductHelper().isInterruptSupported()) {
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
}
if (externalInterruptWait) {
setExternalInterruptId(eventSyncModeDesc->externalInterruptId);
UNRECOVERABLE_IF(eventSyncModeDesc->externalInterruptId > 0 && eventDescriptor.eventPoolAllocation);