_storage_docs.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # mypy: allow-untyped-defs
  2. """Adds docstrings to Storage functions"""
  3. import torch._C
  4. from torch._C import _add_docstr as add_docstr
  5. storage_classes = [
  6. "StorageBase",
  7. ]
  8. def add_docstr_all(method, docstr):
  9. for cls_name in storage_classes:
  10. cls = getattr(torch._C, cls_name)
  11. try:
  12. add_docstr(getattr(cls, method), docstr)
  13. except AttributeError:
  14. pass
  15. add_docstr_all(
  16. "from_file",
  17. """
  18. from_file(filename, shared=False, size=0) -> Storage
  19. Creates a CPU storage backed by a memory-mapped file.
  20. If ``shared`` is ``True``, then memory is shared between all processes.
  21. All changes are written to the file. If ``shared`` is ``False``, then the changes on
  22. the storage do not affect the file.
  23. ``size`` is the number of elements in the storage. If ``shared`` is ``False``,
  24. then the file must contain at least ``size * sizeof(Type)`` bytes
  25. (``Type`` is the type of storage, in the case of an ``UnTypedStorage`` the file must contain at
  26. least ``size`` bytes). If ``shared`` is ``True`` the file will be created if needed.
  27. Args:
  28. filename (str): file name to map
  29. shared (bool): whether to share memory (whether ``MAP_SHARED`` or ``MAP_PRIVATE`` is passed to the
  30. underlying `mmap(2) call <https://man7.org/linux/man-pages/man2/mmap.2.html>`_)
  31. size (int): number of elements in the storage
  32. """,
  33. )