|
@@ -1,6 +1,8 @@
|
|
import torch
|
|
import torch
|
|
|
|
|
|
# has_mps is only available in nightly pytorch (for now), `getattr` for compatibility
|
|
# has_mps is only available in nightly pytorch (for now), `getattr` for compatibility
|
|
|
|
+from modules import errors
|
|
|
|
+
|
|
has_mps = getattr(torch, 'has_mps', False)
|
|
has_mps = getattr(torch, 'has_mps', False)
|
|
|
|
|
|
cpu = torch.device("cpu")
|
|
cpu = torch.device("cpu")
|
|
@@ -20,3 +22,12 @@ def torch_gc():
|
|
if torch.cuda.is_available():
|
|
if torch.cuda.is_available():
|
|
torch.cuda.empty_cache()
|
|
torch.cuda.empty_cache()
|
|
torch.cuda.ipc_collect()
|
|
torch.cuda.ipc_collect()
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+def enable_tf32():
|
|
|
|
+ if torch.cuda.is_available():
|
|
|
|
+ torch.backends.cuda.matmul.allow_tf32 = True
|
|
|
|
+ torch.backends.cudnn.allow_tf32 = True
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+errors.run(enable_tf32, "Enabling TF32")
|