IOPaint/iopaint/model/helper/cpu_text_encoder.py

28 lines
825 B
Python
Raw Normal View History

2023-12-01 03:15:35 +01:00
import torch
from transformers import PreTrainedModel
2024-01-05 09:40:06 +01:00
from ..utils import torch_gc
2023-12-01 03:15:35 +01:00
class CPUTextEncoderWrapper(PreTrainedModel):
2023-12-01 03:15:35 +01:00
def __init__(self, text_encoder, torch_dtype):
super().__init__(text_encoder.config)
2023-12-01 03:15:35 +01:00
self.config = text_encoder.config
self.text_encoder = text_encoder.to(torch.device("cpu"), non_blocking=True)
self.text_encoder = self.text_encoder.to(torch.float32, non_blocking=True)
self.torch_dtype = torch_dtype
del text_encoder
torch_gc()
def __call__(self, x, **kwargs):
input_device = x.device
return [
self.text_encoder(x.to(self.text_encoder.device), **kwargs)[0]
.to(input_device)
.to(self.torch_dtype)
]
@property
def dtype(self):
return self.torch_dtype