From 8520569a1e854ef0c033e3ded82d4113a5934c9e Mon Sep 17 00:00:00 2001 From: henryruhs Date: Wed, 26 Aug 2026 09:39:54 +0200 Subject: [PATCH] fix install call --- install.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install.js b/install.js index b13226f..58030d1 100644 --- a/install.js +++ b/install.js @@ -6,21 +6,21 @@ function install(kernel) if (platform === 'linux' && gpu === 'amd') { - return 'python install.py --onnxruntime migraphx'; + return 'python install.py migraphx'; } if (platform === 'win32' && gpu === 'amd') { - return 'python install.py --onnxruntime directml'; + return 'python install.py directml'; } if ((platform === 'linux' || platform === 'win32') && gpu === 'intel') { - return 'python install.py --onnxruntime openvino'; + return 'python install.py openvino'; } if ((platform === 'linux' || platform === 'win32') && gpu === 'nvidia') { - return 'python install.py --onnxruntime cuda@12'; + return 'python install.py cuda@12'; } - return 'python install.py --onnxruntime default'; + return 'python install.py default'; } module.exports = async kernel =>