/usr/local/lib64/python3.6/site-packages/torch
NameSizeModeActions
ao/-0755rm
autograd/-0755rm
backends/-0755rm
bin/-0755rm
contrib/-0755rm
cpu/-0755rm
cuda/-0755rm
distributed/-0755rm
distributions/-0755rm
fft/-0755rm
for_onnx/-0755rm
futures/-0755rm
fx/-0755rm
include/-0755rm
jit/-0755rm
lib/-0755rm
linalg/-0755rm
multiprocessing/-0755rm
nn/-0755rm
onnx/-0755rm
optim/-0755rm
package/-0755rm
profiler/-0755rm
quantization/-0755rm
share/-0755rm
sparse/-0755rm
special/-0755rm
testing/-0755rm
utils/-0755rm
_C/-0755rm
__pycache__/-0755rm
autocast_mode.py96630644editdlrm
functional.py712570644editdlrm
hub.py233710644editdlrm
overrides.py841460644editdlrm
py.typed00644editdlrm
quasirandom.py74890644editdlrm
random.py48280644editdlrm
serialization.py365440644editdlrm
storage.py57620644editdlrm
torch_version.py34680644editdlrm
types.py15520644editdlrm
version.py1250644editdlrm
_appdirs.py262450644editdlrm
_C.cpython-36m-x86_64-linux-gnu.so292960755editdlrm
_classes.py17170644editdlrm
_deploy.py31000644editdlrm
_dl.cpython-36m-x86_64-linux-gnu.so298320755editdlrm
_jit_internal.py469100644editdlrm
_linalg_utils.py23730644editdlrm
_lobpcg.py440760644editdlrm
_lowrank.py110310644editdlrm
_namedtensor_internals.py53510644editdlrm
_ops.py44570644editdlrm
_python_dispatcher.py70110644editdlrm
_six.py18580644editdlrm
_sources.py38820644editdlrm
_storage_docs.py12980644editdlrm
_tensor.py508540644editdlrm
_tensor_docs.py1134740644editdlrm
_tensor_str.py180910644editdlrm
_torch_docs.py3646780644editdlrm
_utils.py216170644editdlrm
_utils_internal.py16870644editdlrm
_VF.py6560644editdlrm
_vmap_internals.py132190644editdlrm
__config__.py5510644editdlrm
__future__.py8130644editdlrm
__init__.py311990644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/torch/_namedtensor_internals.py (5351B)
from collections import OrderedDict """ This file contains helper functions that implement experimental functionality for named tensors in python. All of these are experimental, unstable, and subject to change or deletion. """ def check_serializing_named_tensor(tensor): if tensor.has_names(): raise RuntimeError( "NYI: Named tensors don't support serialization. Please drop " "names via `tensor = tensor.rename(None)` before serialization.") def build_dim_map(tensor): """Returns a map of { dim: dim_name } where dim is a name if the dim is named and the dim index otherwise.""" return OrderedDict([(idx if name is None else name, name) for idx, name in enumerate(tensor.names)]) def unzip_namedshape(namedshape): if isinstance(namedshape, OrderedDict): namedshape = namedshape.items() if not hasattr(namedshape, '__iter__') and not isinstance(namedshape, tuple): raise RuntimeError( 'Expected namedshape to be OrderedDict or iterable of tuples, got: {}' .format(type(namedshape))) if len(namedshape) == 0: raise RuntimeError('Expected namedshape to non-empty.') return zip(*namedshape) def namer_api_name(inplace): if inplace: return 'rename_' else: return 'rename' def is_ellipsis(item): return item == Ellipsis or item == '...' def single_ellipsis_index(names, fn_name): ellipsis_indices = [i for i, name in enumerate(names) if is_ellipsis(name)] if len(ellipsis_indices) >= 2: raise RuntimeError('{}: More than one Ellipsis (\'...\') found in names (' '{}). This function supports up to one Ellipsis.' .format(fn_name, names)) if len(ellipsis_indices) == 1: return ellipsis_indices[0] return None def expand_single_ellipsis(numel_pre_glob, numel_post_glob, names): return names[numel_pre_glob:len(names) - numel_post_glob] def replace_ellipsis_by_position(ellipsis_idx, names, tensor_names): globbed_names = expand_single_ellipsis(ellipsis_idx, len(names) - ellipsis_idx - 1, tensor_names) return names[:ellipsis_idx] + globbed_names + names[ellipsis_idx + 1:] def resolve_ellipsis(names, tensor_names, fn_name): """ Expands ... inside `names` to be equal to a list of names from `tensor_names`. """ ellipsis_idx = single_ellipsis_index(names, fn_name) if ellipsis_idx is None: return names return replace_ellipsis_by_position(ellipsis_idx, names, tensor_names) def update_names_with_list(tensor, names, inplace): # Special case for tensor.rename(None) if len(names) == 1 and names[0] is None: return tensor._update_names(None, inplace) return tensor._update_names( resolve_ellipsis(names, tensor.names, namer_api_name(inplace)), inplace) def update_names_with_mapping(tensor, rename_map, inplace): dim_map = build_dim_map(tensor) for old_dim in rename_map.keys(): new_dim = rename_map[old_dim] if old_dim in dim_map.keys(): dim_map[old_dim] = new_dim else: raise RuntimeError(('{api_name}: Tried to rename dim \'{old_dim}\' to dim ' '{new_dim} in Tensor[{dims}] but dim \'{old_dim}\' does not exist') .format(old_dim=old_dim, new_dim=new_dim, dims=tensor.names, api_name=namer_api_name(inplace))) return tensor._update_names(tuple(dim_map.values()), inplace) def update_names(tensor, names, rename_map, inplace): """There are two usages: tensor.rename(*names) returns a view on tensor with named dims `names`. `names` must be of length `tensor.dim()`; otherwise, if '...' is in `names`, then it is expanded greedily to be equal to the corresponding names from `tensor.names`. For example, ``` >>> x = torch.empty(2, 3, 5, 7, names=('N', 'C', 'H', 'W')) >>> x.rename('...', 'height', 'width').names ('N', 'C', 'height', 'width') >>> x.rename('batch', '...', 'width').names ('batch', 'C', 'H', 'width') ``` tensor.rename(**rename_map) returns a view on tensor that has rename dims as specified in the mapping `rename_map`. For example, ``` >>> x = torch.empty(2, 3, 5, 7, names=('N', 'C', 'H', 'W')) >>> x.rename(W='width', H='height').names ('N', 'C', 'height', 'width') ``` Finally, tensor.rename has an in-place version called tensor.rename_. """ has_names = len(names) > 0 has_rename_pairs = bool(rename_map) if has_names and has_rename_pairs: raise RuntimeError('{api_name}: This function takes either positional ' 'args or keyword args, but not both. Use tensor.{api_name}(*names) ' 'to name dims and tensor.{api_name}(**rename_map) to rename ' 'dims.'.format(api_name=namer_api_name(inplace))) # Special case for tensor.rename(*[]), which is valid for a 0 dim tensor. if not has_names and not has_rename_pairs: return update_names_with_list(tensor, names, inplace) if has_names: return update_names_with_list(tensor, names, inplace) return update_names_with_mapping(tensor, rename_map, inplace)