cddb07a176
docs / deploy (push) Has been cancelled
docs / changes (push) Has been cancelled
docs / check-and-build (push) Has been cancelled
build container image / cpu (push) Has been cancelled
build container image / cuda (push) Has been cancelled
build container image / rocm (push) Has been cancelled
frontend checks / frontend-checks (push) Has been cancelled
frontend tests / frontend-tests (push) Has been cancelled
lfs checks / lfs-check (push) Has been cancelled
python checks / python-checks (push) Has been cancelled
python tests / py3.12: macos-default (push) Has been cancelled
python tests / py3.11: windows-cpu (push) Has been cancelled
python tests / py3.12: windows-cpu (push) Has been cancelled
python tests / py3.11: linux-cpu (push) Has been cancelled
typegen checks / typegen-checks (push) Has been cancelled
uv lock checks / uv-lock-checks (push) Has been cancelled
openapi checks / openapi-checks (push) Has been cancelled
python tests / py3.11: macos-default (push) Has been cancelled
python tests / py3.12: linux-cpu (push) Has been cancelled
32 lines
1.4 KiB
Python
32 lines
1.4 KiB
Python
from contextlib import contextmanager
|
|
from typing import Any, Generator
|
|
|
|
import torch
|
|
|
|
|
|
def _no_op(*args: Any, **kwargs: Any) -> None:
|
|
pass
|
|
|
|
|
|
@contextmanager
|
|
def skip_torch_weight_init() -> Generator[None, None, None]:
|
|
"""Monkey patch several of the common torch layers (torch.nn.Linear, torch.nn.Conv1d, etc.) to skip weight initialization.
|
|
|
|
By default, `torch.nn.Linear` and `torch.nn.ConvNd` layers initialize their weights (according to a particular
|
|
distribution) when __init__ is called. This weight initialization step can take a significant amount of time, and is
|
|
completely unnecessary if the intent is to load checkpoint weights from disk for the layer. This context manager
|
|
monkey-patches common torch layers to skip the weight initialization step.
|
|
"""
|
|
torch_modules = [torch.nn.Linear, torch.nn.modules.conv._ConvNd, torch.nn.Embedding]
|
|
saved_functions = [hasattr(m, "reset_parameters") and m.reset_parameters for m in torch_modules]
|
|
|
|
try:
|
|
for torch_module in torch_modules:
|
|
assert hasattr(torch_module, "reset_parameters")
|
|
torch_module.reset_parameters = _no_op
|
|
yield None
|
|
finally:
|
|
for torch_module, saved_function in zip(torch_modules, saved_functions, strict=True):
|
|
assert hasattr(torch_module, "reset_parameters")
|
|
torch_module.reset_parameters = saved_function
|