Skip to content

Commit

Permalink
bump version to 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Jun 3, 2021
1 parent ed9cfbf commit e2dfb74
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ This is a wrapper around the NVML library.
For information about the NVML library, see the NVML developer page
https://developer.nvidia.com/nvidia-management-library-nvml

Note this file can be run with 'python -m doctest -v README.txt'
As of version 11.0.0, the NVML-wrappers used in pynvml are identical
to those published through [nvidia-ml-py](https://pypi.org/project/nvidia-ml-py/).

Note that this file can be run with 'python -m doctest -v README.txt'
although the results are system dependent

Requires
Expand All @@ -27,12 +30,12 @@ You can use the lower level nvml bindings
```python
>>> from pynvml import *
>>> nvmlInit()
>>> print "Driver Version:", nvmlSystemGetDriverVersion()
>>> print("Driver Version:", nvmlSystemGetDriverVersion())
Driver Version: 410.00
>>> deviceCount = nvmlDeviceGetCount()
>>> for i in range(deviceCount):
... handle = nvmlDeviceGetHandleByIndex(i)
... print "Device", i, ":", nvmlDeviceGetName(handle)
... print("Device", i, ":", nvmlDeviceGetName(handle))
...
Device 0 : Tesla V100

Expand Down Expand Up @@ -193,3 +196,7 @@ Release Notes
- Added nvmlDeviceGetTotalEnergyConsumption
- Added notes about NVML permissions
- Fixed version-check testing
- Version 11.0.0
- Updated nvml.py to CUDA 11
- Updated smi.py DeviceQuery to R460
- Aligned nvml.py with latest nvidia-ml-py deployment

0 comments on commit e2dfb74

Please sign in to comment.