From d367f75987757f7aba41e86cf6b2e2204ab29eb9 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Mon, 3 Aug 2026 16:44:22 +0200 Subject: [PATCH] introduce cuda@12 and cuda@13 for installer --- facefusion/installer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/facefusion/installer.py b/facefusion/installer.py index 37e8f026..dfe80ec8 100644 --- a/facefusion/installer.py +++ b/facefusion/installer.py @@ -22,7 +22,8 @@ ONNXRUNTIME_SET =\ 'default': ('onnxruntime', '1.28.0') } if is_windows() or is_linux(): - ONNXRUNTIME_SET['cuda'] = ('onnxruntime-gpu', '1.28.0') + ONNXRUNTIME_SET['cuda@12'] = ('onnxruntime-gpu', '1.26.0') + ONNXRUNTIME_SET['cuda@13'] = ('onnxruntime-gpu', '1.28.0') ONNXRUNTIME_SET['openvino'] = ('onnxruntime-openvino', '1.24.1') if is_windows(): ONNXRUNTIME_SET['directml'] = ('onnxruntime-directml', '1.24.4')