From a3b63960370d6d0bcde3b6473d3589e87cd3b6c6 Mon Sep 17 00:00:00 2001 From: lllyasviel Date: Sat, 27 Jan 2024 14:00:19 -0800 Subject: [PATCH] Update prompt_parser.py --- modules/prompt_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/prompt_parser.py b/modules/prompt_parser.py index ae642529..a7604e97 100644 --- a/modules/prompt_parser.py +++ b/modules/prompt_parser.py @@ -338,7 +338,7 @@ def stack_conds_alter(tensors, weights): full_weights = full_weights + float(w) result = result / full_weights - return result[None] + return result[None].contiguous().clone() def reconstruct_multicond_batch(c: MulticondLearnedConditioning, current_step):