From 794b23cc2bb85c6d96483c0f1a54c759d5e8b23d Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 19 May 2023 16:56:08 -0400 Subject: [PATCH] add parser to infotext --- TODO.md | 10 ++++++++++ modules/processing.py | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index 1b7df62f5..8927d7ed9 100644 --- a/TODO.md +++ b/TODO.md @@ -56,3 +56,13 @@ Tech that can be integrated as part of the core workflow... - Bunch of stuff: ### Pending Code Updates + +- tested with **torch 2.1** and **cuda 12.1** + (production remains on torch2.0.1+cuda11.8) +- fully extend support of `--data-dir` + allows multiple installations to share pretty much everything, not just models +- add dark/light theme mode toggle +- redo some `clip-skip` functionality +- better matching for vae vs model +- update to `xyz grid` to allow creation of large number of images without +- fixes...amazing how many issues were introduced by porting new a1111 code without adding almost no new functionality diff --git a/modules/processing.py b/modules/processing.py index 69450e341..42d907d0f 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -448,7 +448,8 @@ def create_infotext(p: StableDiffusionProcessing, all_prompts, all_seeds, all_su "Token merging merge cross attention": None if opts.token_merging_merge_cross_attention is False else opts.token_merging_merge_cross_attention, "Token merging merge mlp": None if opts.token_merging_merge_mlp is False else opts.token_merging_merge_mlp, "Token merging stride x": None if opts.token_merging_stride_x == 2 else opts.token_merging_stride_x, - "Token merging stride y": None if opts.token_merging_stride_y == 2 else opts.token_merging_stride_y + "Token merging stride y": None if opts.token_merging_stride_y == 2 else opts.token_merging_stride_y, + "Parser": opts.prompt_attention, } generation_params.update(p.extra_generation_params) generation_params_text = ", ".join([k if k == v else f'{k}: {generation_parameters_copypaste.quote(v)}' for k, v in generation_params.items() if v is not None])