From 24e374228de2c63c8e0a3e6de50a3845b8b3120d Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Fri, 7 Mar 2025 10:28:07 +0530 Subject: [PATCH] Check for half-precision on GeForce MX450 --- scripts/check_modules.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check_modules.py b/scripts/check_modules.py index 6c95c474..ba6c9e81 100644 --- a/scripts/check_modules.py +++ b/scripts/check_modules.py @@ -97,10 +97,10 @@ def update_modules(): # if sdkit is 2.0.15.x (or lower), then diffusers should be restricted to 0.21.4 (see below for the reason) # otherwise use the current sdkit version (with the corresponding diffusers version) - expected_sdkit_version_str = "2.0.22.7" + expected_sdkit_version_str = "2.0.22.8" expected_diffusers_version_str = "0.28.2" - legacy_sdkit_version_str = "2.0.15.16" + legacy_sdkit_version_str = "2.0.15.17" legacy_diffusers_version_str = "0.21.4" sdkit_version_str = version("sdkit")