openvino test fp16/bf16 force false

Signed-off-by: vladmandic <mandic00@live.com>
This commit is contained in:
vladmandic
2026-04-12 19:46:30 +02:00
parent 8070e51777
commit e5edfbc8c8
2 changed files with 13 additions and 3 deletions
+4 -1
View File
@@ -27,7 +27,10 @@
- **ROCm** futher work on advanced configuration and tuning, thanks @resonantsky
now covers both ROCm on Windows and Linux
see *main interface -> scripts -> rocm advanced config*
- **OpenVINO** update to `openvino==2026.1.0`
- **OpenVINO**
update to `openvino==2026.1.0`
default device is now `AUTO`, override which devices are allowed to be used in *settings -> backend settings*
add *experimental* support for `NPU` devices, typically available on AI-PC/Copilot-PC devices
- **SDNQ** add quant support to `nn.Embedding` type
- **Features**
- **nudenet** add `LlavaGuard` and `QwenGuard` as image safety evaulation models
+9 -2
View File
@@ -123,7 +123,9 @@ def get_openvino_capabilities(device=None):
return []
def test_openvino_fp16(opts):
def test_openvino_fp16(opts): # pylint: disable=unused-argument
"""
# TODO OpenVino: proper fp16 support
if 'CPU' in opts.openvino_devices: # disallow=CPU / allow=GPU/NPU
return False
try:
@@ -131,9 +133,12 @@ def test_openvino_fp16(opts):
return 'FP16' in capabilities
except Exception:
return False
"""
return False
def test_openvino_bf16(opts):
def test_openvino_bf16(opts): # pylint: disable=unused-argument
"""
if len(opts.openvino_devices) == 0 or ('CPU' in opts.openvino_devices) or ('GPU' in opts.openvino_devices) or ('NPU' in opts.openvino_devices): # disallow=AUTO/CPU/GPU/NPU
return False
try:
@@ -141,6 +146,8 @@ def test_openvino_bf16(opts):
return 'BF16' in capabilities
except Exception:
return False
"""
return False
def cached_model_name(model_hash_str, device, args, cache_root, reversed = False): # pylint: disable=redefined-builtin