mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-06 03:57:56 +08:00
Add unload_model function
This commit is contained in:
parent
a88c1ede69
commit
f731c35f70
@ -51,6 +51,10 @@ def free_memory() -> None:
|
|||||||
# TODO(aryan): handle non-cuda devices
|
# TODO(aryan): handle non-cuda devices
|
||||||
|
|
||||||
|
|
||||||
|
def unload_model(model):
|
||||||
|
model.to("cpu")
|
||||||
|
|
||||||
|
|
||||||
def make_contiguous(x: Union[torch.Tensor, Dict[str, torch.Tensor]]) -> Union[torch.Tensor, Dict[str, torch.Tensor]]:
|
def make_contiguous(x: Union[torch.Tensor, Dict[str, torch.Tensor]]) -> Union[torch.Tensor, Dict[str, torch.Tensor]]:
|
||||||
if isinstance(x, torch.Tensor):
|
if isinstance(x, torch.Tensor):
|
||||||
return x.contiguous()
|
return x.contiguous()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user