summaryrefslogtreecommitdiff
path: root/shared_config.py
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-08-07 14:32:43 -0400
committerGitHub <noreply@github.com>2025-08-07 14:32:43 -0400
commit6489f2273fc246fcca25e95d913e60ea214e0d31 (patch)
tree86f4e4f3f032ea8516a1e1965ab3ef376f83f87d /shared_config.py
parentdd8a192075fa89606e2d4fcb96094939735da502 (diff)
parentbb0382dd2be4a548f79d6cd48b0e87fbee3cd1a2 (diff)
downloaddecky-lsfg-vk-6489f2273fc246fcca25e95d913e60ea214e0d31.tar.gz
decky-lsfg-vk-6489f2273fc246fcca25e95d913e60ea214e0d31.zip
Merge pull request #127 from xXJSONDeruloXx/fp16v0.10.1
feat: groundwork for fp16 feature in lsfg-vk
Diffstat (limited to 'shared_config.py')
-rw-r--r--shared_config.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/shared_config.py b/shared_config.py
index 09aa596..c9df045 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,
@@ -47,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"
},