You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
909 B
41 lines
909 B
import builtins
|
|
from typing import Optional, Tuple
|
|
|
|
import torch
|
|
from torch import Tensor
|
|
|
|
class Parameter(Tensor):
|
|
def __init__(
|
|
self,
|
|
data: Tensor = ...,
|
|
requires_grad: builtins.bool = ...,
|
|
): ...
|
|
|
|
def is_lazy(param: Tensor): ...
|
|
|
|
class UninitializedParameter(Tensor):
|
|
def __init__(
|
|
self,
|
|
data: Tensor = ...,
|
|
requires_grad: builtins.bool = ...,
|
|
): ...
|
|
def materialize(
|
|
self,
|
|
shape: Tuple[int, ...],
|
|
device: Optional[torch.device] = None,
|
|
dtype: Optional[torch.dtype] = None,
|
|
): ...
|
|
|
|
class UninitializedBuffer(Tensor):
|
|
def __init__(
|
|
self,
|
|
data: Tensor = ...,
|
|
requires_grad: builtins.bool = ...,
|
|
): ...
|
|
def materialize(
|
|
self,
|
|
shape: Tuple[int, ...],
|
|
device: Optional[torch.device] = None,
|
|
dtype: Optional[torch.dtype] = None,
|
|
): ...
|