skip the gpu memory checks if the device is set to 'auto' (#609)
* skip the gpu memory checks if the device is set to 'auto' * skip gpu mem logging if cpu too * don't worry about log_gpu_memory_usage since it calls another annotated fn * rename decorator internal
This commit is contained in:
@@ -1,14 +1,40 @@
|
|||||||
"""Benchmarking and measurement utilities"""
|
"""Benchmarking and measurement utilities"""
|
||||||
|
import functools
|
||||||
|
|
||||||
import pynvml
|
import pynvml
|
||||||
import torch
|
import torch
|
||||||
from pynvml.nvml import NVMLError
|
from pynvml.nvml import NVMLError
|
||||||
|
|
||||||
|
|
||||||
|
def check_cuda_device(default_value):
|
||||||
|
"""
|
||||||
|
wraps a function and returns the default value instead of running the
|
||||||
|
wrapped function if cuda isn't available or the device is auto
|
||||||
|
:param default_value:
|
||||||
|
:return:
|
||||||
|
"""
|
||||||
|
|
||||||
|
def deco(func):
|
||||||
|
@functools.wraps(func)
|
||||||
|
def wrapper(*args, **kwargs):
|
||||||
|
device = kwargs.get("device", args[0] if args else None)
|
||||||
|
|
||||||
|
if not torch.cuda.is_available() or device == "auto" or device == "cpu":
|
||||||
|
return default_value
|
||||||
|
|
||||||
|
return func(*args, **kwargs)
|
||||||
|
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
return deco
|
||||||
|
|
||||||
|
|
||||||
|
@check_cuda_device(0.0)
|
||||||
def gpu_memory_usage(device=0):
|
def gpu_memory_usage(device=0):
|
||||||
return torch.cuda.memory_allocated(device) / 1024.0**3
|
return torch.cuda.memory_allocated(device) / 1024.0**3
|
||||||
|
|
||||||
|
|
||||||
|
@check_cuda_device((0.0, 0.0, 0.0))
|
||||||
def gpu_memory_usage_all(device=0):
|
def gpu_memory_usage_all(device=0):
|
||||||
usage = torch.cuda.memory_allocated(device) / 1024.0**3
|
usage = torch.cuda.memory_allocated(device) / 1024.0**3
|
||||||
reserved = torch.cuda.memory_reserved(device) / 1024.0**3
|
reserved = torch.cuda.memory_reserved(device) / 1024.0**3
|
||||||
@@ -16,6 +42,7 @@ def gpu_memory_usage_all(device=0):
|
|||||||
return usage, reserved - usage, max(0, smi - reserved)
|
return usage, reserved - usage, max(0, smi - reserved)
|
||||||
|
|
||||||
|
|
||||||
|
@check_cuda_device(0.0)
|
||||||
def gpu_memory_usage_smi(device=0):
|
def gpu_memory_usage_smi(device=0):
|
||||||
if isinstance(device, torch.device):
|
if isinstance(device, torch.device):
|
||||||
device = device.index
|
device = device.index
|
||||||
@@ -31,9 +58,6 @@ def gpu_memory_usage_smi(device=0):
|
|||||||
|
|
||||||
|
|
||||||
def log_gpu_memory_usage(log, msg, device):
|
def log_gpu_memory_usage(log, msg, device):
|
||||||
if not torch.cuda.is_available() or device == "auto":
|
|
||||||
return (0, 0, 0)
|
|
||||||
|
|
||||||
usage, cache, misc = gpu_memory_usage_all(device)
|
usage, cache, misc = gpu_memory_usage_all(device)
|
||||||
extras = []
|
extras = []
|
||||||
if cache > 0:
|
if cache > 0:
|
||||||
|
|||||||
Reference in New Issue
Block a user