torch.xpu.mem_get_info¶
- torch.xpu.mem_get_info(device=None)[source][source]¶
Return the global free and total GPU memory for a given device.
- Parameters
device (torch.device or int or str, optional) – selected device. Returns statistic for the current device, given by
current_device()
, ifdevice
isNone
(default).- Returns
the memory available on the device in units of bytes. int: the total memory on the device in units of bytes
- Return type