r"""This package implements abstractions found in ``torch.cuda``to facilitate writing device-agnostic code."""fromcontextlibimportAbstractContextManagerfromtypingimportAny,Optional,Unionimporttorchfrom..importdeviceas_devicefrom.importamp__all__=["is_available","synchronize","current_stream","stream","device_count","Stream","StreamContext",]_device_t=Union[_device,str,int,None]def_is_cpu_support_vnni()->bool:r"""Returns a bool indicating if CPU supports VNNI."""returntorch._C._cpu._is_cpu_support_vnni()
[docs]defis_available()->bool:r"""Returns a bool indicating if CPU is currently available. N.B. This function only exists to facilitate device-agnostic code """returnTrue
[docs]defsynchronize(device:_device_t=None)->None:r"""Waits for all kernels in all streams on the CPU device to complete. Args: device (torch.device or int, optional): ignored, there's only one CPU device. N.B. This function only exists to facilitate device-agnostic code. """pass
[docs]classStream:""" N.B. This class only exists to facilitate device-agnostic code """pass
[docs]defcurrent_stream(device:_device_t=None)->Stream:r"""Returns the currently selected :class:`Stream` for a given device. Args: device (torch.device or int, optional): Ignored. N.B. This function only exists to facilitate device-agnostic code """return_current_stream
[docs]classStreamContext(AbstractContextManager):r"""Context-manager that selects a given stream. N.B. This class only exists to facilitate device-agnostic code """cur_stream:Optional[Stream]def__init__(self,stream):self.stream=streamself.prev_stream=_default_cpu_streamdef__enter__(self):cur_stream=self.streamifcur_streamisNone:returnglobal_current_streamself.prev_stream=_current_stream_current_stream=cur_streamdef__exit__(self,type:Any,value:Any,traceback:Any):cur_stream=self.streamifcur_streamisNone:returnglobal_current_stream_current_stream=self.prev_stream
[docs]defstream(stream:Stream)->AbstractContextManager:r"""Wrapper around the Context-manager StreamContext that selects a given stream. N.B. This function only exists to facilitate device-agnostic code """returnStreamContext(stream)
[docs]defdevice_count()->int:r"""Returns number of CPU devices (not cores). Always 1. N.B. This function only exists to facilitate device-agnostic code """return1
Docs
Access comprehensive developer documentation for PyTorch
To analyze traffic and optimize your experience, we serve cookies on this site. By clicking or navigating, you agree to allow our usage of cookies. As the current maintainers of this site, Facebook’s Cookies Policy applies. Learn more, including about available controls: Cookies Policy.