Fix Apple Intel

This commit is contained in:
henryruhs
2024-10-01 21:50:38 +02:00
parent 5e884983df
commit 627d480403
+1 -1
View File
@@ -12,7 +12,7 @@ function install(kernel)
{
return 'python install.py --onnxruntime directml';
}
if (platform === 'win32' && gpu === 'intel')
if ((platform === 'linux' || platform === 'win32') && gpu === 'intel')
{
return 'python install.py --onnxruntime openvino';
}