2024-02-03 22:55:09 -05:00
|
|
|
"""
|
|
|
|
Base class and implementation of a class that moves models in and out of VRAM.
|
|
|
|
"""
|
|
|
|
|
2024-06-06 09:53:35 -04:00
|
|
|
from typing import Dict, Optional
|
|
|
|
|
2024-02-24 11:25:40 -05:00
|
|
|
import torch
|
2024-02-26 17:30:37 +11:00
|
|
|
|
2024-02-03 22:55:09 -05:00
|
|
|
from invokeai.backend.model_manager import AnyModel
|
2024-12-04 21:53:19 +00:00
|
|
|
from invokeai.backend.model_manager.load.model_cache.cache_record import CacheRecord
|
2024-12-04 22:45:30 +00:00
|
|
|
from invokeai.backend.model_manager.load.model_cache.model_cache import ModelCache
|
2024-02-04 17:23:10 -05:00
|
|
|
|
2024-02-03 22:55:09 -05:00
|
|
|
|
2024-12-04 21:47:11 +00:00
|
|
|
class ModelLocker:
|
2024-12-04 22:05:34 +00:00
|
|
|
def __init__(self, cache: ModelCache, cache_entry: CacheRecord):
|
2024-02-03 22:55:09 -05:00
|
|
|
self._cache = cache
|
|
|
|
self._cache_entry = cache_entry
|
|
|
|
|
|
|
|
@property
|
|
|
|
def model(self) -> AnyModel:
|
|
|
|
"""Return the model without moving it around."""
|
|
|
|
return self._cache_entry.model
|
|
|
|
|
2024-06-06 09:53:35 -04:00
|
|
|
def get_state_dict(self) -> Optional[Dict[str, torch.Tensor]]:
|
|
|
|
"""Return the state dict (if any) for the cached model."""
|
|
|
|
return self._cache_entry.state_dict
|
|
|
|
|
2024-02-03 22:55:09 -05:00
|
|
|
def lock(self) -> AnyModel:
|
|
|
|
"""Move the model into the execution device (GPU) and lock it."""
|
2024-12-05 16:11:40 +00:00
|
|
|
self._cache.lock(self._cache_entry.key)
|
2024-02-03 22:55:09 -05:00
|
|
|
return self.model
|
|
|
|
|
|
|
|
def unlock(self) -> None:
|
2024-12-05 16:11:40 +00:00
|
|
|
"""Unlock a model."""
|
|
|
|
self._cache.unlock(self._cache_entry.key)
|