From 3688c8bd07af67a00748c87581c80c5125d9273a Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Tue, 5 Aug 2025 12:36:50 -0400 Subject: feat: groundwork for fp16 feature in lsfg-vk --- shared_config.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'shared_config.py') diff --git a/shared_config.py b/shared_config.py index 09aa596..cd8b3ed 100644 --- a/shared_config.py +++ b/shared_config.py @@ -28,6 +28,14 @@ CONFIG_SCHEMA_DEF = { "location": "toml" # where this field is stored/used }, + "no_fp16": { + "name": "no_fp16", + "fieldType": ConfigFieldType.BOOLEAN, + "default": False, + "description": "force-disable fp16 (use on older nvidia cards)", + "location": "toml" + }, + "multiplier": { "name": "multiplier", "fieldType": ConfigFieldType.INTEGER, -- cgit v1.2.3 From bb0382dd2be4a548f79d6cd48b0e87fbee3cd1a2 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Thu, 7 Aug 2025 14:31:54 -0400 Subject: default perf mode off, fp16 on --- shared_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shared_config.py') diff --git a/shared_config.py b/shared_config.py index cd8b3ed..c9df045 100644 --- a/shared_config.py +++ b/shared_config.py @@ -55,7 +55,7 @@ CONFIG_SCHEMA_DEF = { "performance_mode": { "name": "performance_mode", "fieldType": ConfigFieldType.BOOLEAN, - "default": True, + "default": False, "description": "use a lighter model for FG (recommended for most games)", "location": "toml" }, -- cgit v1.2.3