my-sd/modules_forge/stream.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.9 KiB
Python
Raw Normal View History

2024-02-22 07:59:40 +00:00
# https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14855
import torch
from ldm_patched.modules import args_parser
2024-02-22 07:59:40 +00:00
from ldm_patched.modules import model_management
def stream_context():
if torch.cuda.is_available():
return torch.cuda.stream
if model_management.is_intel_xpu():
return torch.xpu.stream
return None
def get_current_stream():
try:
if torch.cuda.is_available():
2024-02-24 04:28:27 +00:00
device = torch.device(torch.cuda.current_device())
stream = torch.cuda.current_stream(device)
with torch.cuda.stream(stream):
torch.zeros((1, 1)).to(device, torch.float32)
stream.synchronize()
return stream
2024-02-22 07:59:40 +00:00
if model_management.is_intel_xpu():
2024-02-24 04:28:27 +00:00
device = torch.device("xpu")
stream = torch.xpu.current_stream(device)
with torch.xpu.stream(stream):
torch.zeros((1, 1)).to(device, torch.float32)
stream.synchronize()
return stream
2024-02-22 07:59:40 +00:00
except:
2024-02-24 04:28:27 +00:00
return None
2024-02-22 07:59:40 +00:00
def get_new_stream():
try:
if torch.cuda.is_available():
2024-02-24 04:28:27 +00:00
device = torch.device(torch.cuda.current_device())
stream = torch.cuda.Stream(device)
with torch.cuda.stream(stream):
torch.zeros((1, 1)).to(device, torch.float32)
stream.synchronize()
return stream
2024-02-22 07:59:40 +00:00
if model_management.is_intel_xpu():
2024-02-24 04:28:27 +00:00
device = torch.device("xpu")
stream = torch.xpu.Stream(device)
with torch.xpu.stream(stream):
torch.zeros((1, 1)).to(device, torch.float32)
stream.synchronize()
return stream
2024-02-22 07:59:40 +00:00
except:
2024-02-24 04:28:27 +00:00
return None
2024-02-22 07:59:40 +00:00
current_stream = None
mover_stream = None
using_stream = False
if args_parser.args.cuda_stream:
2024-02-22 07:59:40 +00:00
current_stream = get_current_stream()
mover_stream = get_new_stream()
using_stream = current_stream is not None and mover_stream is not None
2024-02-24 04:28:27 +00:00