mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-04 03:10:21 +00:00
Allow TF32 in CUDA for increased performance #279
This commit is contained in:
10
modules/errors.py
Normal file
10
modules/errors.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import sys
|
||||
import traceback
|
||||
|
||||
|
||||
def run(code, task):
|
||||
try:
|
||||
code()
|
||||
except Exception as e:
|
||||
print(f"{task}: {type(e).__name__}", file=sys.stderr)
|
||||
print(traceback.format_exc(), file=sys.stderr)
|
Reference in New Issue
Block a user