* Fix some potential frozen after model mismatch
* Fix crash when cfg=1 when using anime preset
* Added some guidelines for troubleshoot the "CUDA kernel errors asynchronously" problem
This commit is contained in:
lllyasviel
2023-12-14 13:55:49 -08:00
committed by GitHub
parent bac5c882ba
commit 323af5667a
4 changed files with 18 additions and 14 deletions
+3 -3
View File
@@ -801,12 +801,12 @@ def worker():
task = async_tasks.pop(0)
try:
handler(task)
except:
traceback.print_exc()
finally:
build_image_wall(task)
task.yields.append(['finish', task.results])
pipeline.prepare_text_encoder(async_call=True)
except:
traceback.print_exc()
task.yields.append(['finish', task.results])
pass