Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 978 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 978 Bytes

autocuda - Auto choose the cuda device having the largest free memory in Pytorch

PyPI - Python Version PyPI PyPI_downloads Repo Size

Usage

Install

pip install autocuda

ready to use

from autocuda import auto_cuda_info, auto_cuda_index, auto_cuda, auto_cuda_name

cuda_info_dict = auto_cuda_info()

cuda_device_index = auto_cuda_index()  # return cuda index having largest free memory. return 'cpu' if not cuda
# os.environ['CUDA_VISIBLE_DEVICES'] = [str(cuda_device_index)]

cuda_device = auto_cuda()
# model.to(cuda_device) # assume you have inited your pytorch model

cuda_device_name = auto_cuda_name()
print('Choosing cuda device: {}'.format(cuda_device_name))