Skip to content

Commit

Permalink
Expose the GPUInfo class and its subclasses.
Browse files Browse the repository at this point in the history
  • Loading branch information
acnazarejr committed Apr 20, 2020
1 parent 034374e commit c9433b7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion igpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

__author__ = 'Antonio C. Nazare Jr.'
__email__ = 'antonio.nazare@dcc.ufmg.br'
__version__ = '0.1.0'
__version__ = '0.1.1'


from igpu.core import count_devices, count_visible_devices
from igpu.core import devices_index, visible_devices_index
from igpu.core import nvidia_driver_version
from igpu.core import get_device, devices, visible_devices
from igpu.gpu_info import GPUMemoryInfo
from igpu.gpu_info import GPUUtilizationInfo
from igpu.gpu_info import GPUPCIInfo
from igpu.gpu_info import GPUClockInfo
from igpu.gpu_info import GPUPowerInfo
from igpu.gpu_info import GPUProcessInfo
from igpu.gpu_info import GPUProcessesInfo
from igpu.gpu_info import GPUInfo
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup

VERSION = '0.1.0'
VERSION = '0.1.1'
AUTHOR = 'Antonio Carlos Nazare Jr.'
EMAIL = 'antonio.nazare@dcc.ufmg.br'
REQUIREMENTS = [line for line in open('requirements.txt').read().split('\n') if line != '']
Expand Down

0 comments on commit c9433b7

Please # to comment.