diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-19 07:50:06 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-19 07:50:06 +0000 |
commit | 598da5cd4928618b166886d3485ce30ce3a43490 (patch) | |
tree | 48bdd2fcf47bd88b9283d13fd53ecc39e5f5ff27 /scripts/xyz_grid.py | |
parent | b60e1088db2497e945d36c7500dcbf03afceedf2 (diff) | |
download | stable-diffusion-webui-gfx803-598da5cd4928618b166886d3485ce30ce3a43490.tar.gz stable-diffusion-webui-gfx803-598da5cd4928618b166886d3485ce30ce3a43490.tar.bz2 stable-diffusion-webui-gfx803-598da5cd4928618b166886d3485ce30ce3a43490.zip |
Use options instead of cmd_args
Diffstat (limited to 'scripts/xyz_grid.py')
-rw-r--r-- | scripts/xyz_grid.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/xyz_grid.py b/scripts/xyz_grid.py index 0dc255bc..b2250c04 100644 --- a/scripts/xyz_grid.py +++ b/scripts/xyz_grid.py @@ -270,6 +270,7 @@ axis_options = [ AxisOption("Refiner checkpoint", str, apply_field('refiner_checkpoint'), format_value=format_remove_path, confirm=confirm_checkpoints_or_none, cost=1.0, choices=lambda: ['None'] + sorted(sd_models.checkpoints_list, key=str.casefold)),
AxisOption("Refiner switch at", float, apply_field('refiner_switch_at')),
AxisOption("RNG source", str, apply_override("randn_source"), choices=lambda: ["GPU", "CPU", "NV"]),
+ AxisOption("FP8 mode", str, apply_override("fp8_storage"), cost=0.9, choices=lambda: ["Disable", "Enable for SDXL", "Enable"]),
]
|