Add multi GPU support for openvino

This commit is contained in:
henryruhs
2025-03-02 15:32:03 +01:00
parent 7bdd084c20
commit a91cb9a3ed

View File

@@ -73,7 +73,7 @@ def resolve_openvino_device_type(execution_device_id : str) -> str:
return 'GPU' return 'GPU'
if execution_device_id == '': if execution_device_id == '':
return 'MULTI:GPU' return 'MULTI:GPU'
return 'GPU.' + device_id return 'GPU.' + execution_device_id
def is_geforce_16_series() -> bool: def is_geforce_16_series() -> bool: