torch.backends.openmp 的源代码

# mypy: allow-untyped-defs
import torch


[docs]def is_available(): r"""Return whether PyTorch is built with OpenMP support.""" return torch._C.has_openmp
本页目录