Shortcuts

Source code for torch.backends.nnpack

# mypy: allow-untyped-defs
from contextlib import contextmanager

import torch
from torch.backends import __allow_nonbracketed_mutation, ContextProp, PropModule


__all__ = ["is_available", "flags", "set_flags"]


[docs]def is_available(): r"""Return whether PyTorch is built with NNPACK support.""" return torch._nnpack_available()
[docs]def set_flags(_enabled): r"""Set if nnpack is enabled globally""" orig_flags = (torch._C._get_nnpack_enabled(),) torch._C._set_nnpack_enabled(_enabled) return orig_flags
[docs]@contextmanager def flags(enabled=False): r"""Context manager for setting if nnpack is enabled globally""" with __allow_nonbracketed_mutation(): orig_flags = set_flags(enabled) try: yield finally: with __allow_nonbracketed_mutation(): set_flags(orig_flags[0])

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy