Home
last modified time | relevance | path

Searched defs:T_module (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/pytorch/torch/nn/utils/
H A Dweight_norm.py80 T_module = TypeVar("T_module", bound=Module) variable
83 def weight_norm(module: T_module, name: str = "weight", dim: int = 0) -> T_module:
147 def remove_weight_norm(module: T_module, name: str = "weight") -> T_module:
H A Dspectral_norm.py262 T_module = TypeVar("T_module", bound=Module) variable
266 module: T_module,
337 def remove_spectral_norm(module: T_module, name: str = "weight") -> T_module: