2021-10-25 19:56:13 +08:00
|
|
|
# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
|
|
|
|
"""
|
|
|
|
Auto-batch utils
|
|
|
|
"""
|
|
|
|
|
|
|
|
from copy import deepcopy
|
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
import torch
|
|
|
|
from torch.cuda import amp
|
|
|
|
|
2021-11-13 22:40:18 +08:00
|
|
|
from utils.general import LOGGER, colorstr
|
2021-10-25 19:56:13 +08:00
|
|
|
from utils.torch_utils import profile
|
|
|
|
|
|
|
|
|
|
|
|
def check_train_batch_size(model, imgsz=640):
|
|
|
|
# Check YOLOv5 training batch size
|
|
|
|
with amp.autocast():
|
|
|
|
return autobatch(deepcopy(model).train(), imgsz) # compute optimal batch size
|
|
|
|
|
|
|
|
|
|
|
|
def autobatch(model, imgsz=640, fraction=0.9, batch_size=16):
|
|
|
|
# Automatically estimate best batch size to use `fraction` of available CUDA memory
|
|
|
|
# Usage:
|
|
|
|
# import torch
|
|
|
|
# from utils.autobatch import autobatch
|
|
|
|
# model = torch.hub.load('ultralytics/yolov5', 'yolov5s', autoshape=False)
|
|
|
|
# print(autobatch(model))
|
|
|
|
|
2021-11-13 22:40:18 +08:00
|
|
|
prefix = colorstr('AutoBatch: ')
|
|
|
|
LOGGER.info(f'{prefix}Computing optimal batch size for --imgsz {imgsz}')
|
2021-10-25 19:56:13 +08:00
|
|
|
device = next(model.parameters()).device # get model device
|
|
|
|
if device.type == 'cpu':
|
2021-11-13 22:40:18 +08:00
|
|
|
LOGGER.info(f'{prefix}CUDA not detected, using default CPU batch-size {batch_size}')
|
2021-10-25 19:56:13 +08:00
|
|
|
return batch_size
|
|
|
|
|
2022-03-08 02:26:37 +08:00
|
|
|
gb = 1 << 30 # bytes to GiB (1024 ** 3)
|
2021-10-25 19:56:13 +08:00
|
|
|
d = str(device).upper() # 'CUDA:0'
|
2021-11-06 20:49:00 +08:00
|
|
|
properties = torch.cuda.get_device_properties(device) # device properties
|
2022-03-08 02:26:37 +08:00
|
|
|
t = properties.total_memory / gb # (GiB)
|
|
|
|
r = torch.cuda.memory_reserved(device) / gb # (GiB)
|
|
|
|
a = torch.cuda.memory_allocated(device) / gb # (GiB)
|
2021-10-25 19:56:13 +08:00
|
|
|
f = t - (r + a) # free inside reserved
|
2021-11-13 22:40:18 +08:00
|
|
|
LOGGER.info(f'{prefix}{d} ({properties.name}) {t:.2f}G total, {r:.2f}G reserved, {a:.2f}G allocated, {f:.2f}G free')
|
2021-10-25 19:56:13 +08:00
|
|
|
|
|
|
|
batch_sizes = [1, 2, 4, 8, 16]
|
|
|
|
try:
|
|
|
|
img = [torch.zeros(b, 3, imgsz, imgsz) for b in batch_sizes]
|
|
|
|
y = profile(img, model, n=3, device=device)
|
|
|
|
except Exception as e:
|
2021-11-13 22:40:18 +08:00
|
|
|
LOGGER.warning(f'{prefix}{e}')
|
2021-10-25 19:56:13 +08:00
|
|
|
|
|
|
|
y = [x[2] for x in y if x] # memory [2]
|
|
|
|
batch_sizes = batch_sizes[:len(y)]
|
|
|
|
p = np.polyfit(batch_sizes, y, deg=1) # first degree polynomial fit
|
|
|
|
b = int((f * fraction - p[1]) / p[0]) # y intercept (optimal batch size)
|
2021-11-13 22:40:18 +08:00
|
|
|
LOGGER.info(f'{prefix}Using batch-size {b} for {d} {t * fraction:.2f}G/{t:.2f}G ({fraction * 100:.0f}%)')
|
2021-10-25 19:56:13 +08:00
|
|
|
return b
|