Skip to content

Commit

Permalink
Merge pull request #156 from Ricks-Lab/v3.8.4_18nov23
Browse files Browse the repository at this point in the history
V3.8.4 18nov23
  • Loading branch information
Ricks-Lab authored Nov 18, 2023
2 parents e9f61a6 + f9350ef commit 529c709
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions GPUmodules/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__version__ = '3.8.4'
#__status__ = 'Development Status :: 5 - Production/Stable'
__status__ = 'Development Status :: 4 - Beta'
__status__ = 'Development Status :: 5 - Production/Stable'
#__status__ = 'Development Status :: 4 - Beta'
__author__ = 'RicksLab'
__credits__ = ('Craig Echt - Testing, Debug, Verification, and Documentation',
'Keith Myers - Testing, Debug, and Verification of NV Capability',
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,11 @@ fan details from the utility. The *--force_write* option can be used to force al
parameters to be written to the GPU. The default behavior is to only write changes. The
*--verbose* option will display progress and informational messages generated by the utilities.

## New in Development - v3.8.4
## New in this Version - v3.8.4

* Fixed GpuType and GpuVendor dictionary initialization as described in update to issue 139.
* Fixed skip list for APU which incorrectly included memory parameters.
* Fixed matplotlib 3.5.* compatibility issues.

## Development Plans

Expand Down Expand Up @@ -164,13 +165,13 @@ interface shows actual values instead of set values.

## History

### New in Current Release - v3.8.3
### New in Previous Release - v3.8.3

* Implementation of gpu-pac capability for VDDGFX Offset mode type of AMD GPUs. Does not
seem to work for negative values.
* Improvements to code including improved use of Enum objects as dictionary keys.
* Improved check for Gtk import errors.
* Fixed bug 147, ignor invalid data read from GPU.
* Fixed bug 147, ignore invalid data read from GPU.

### New in Previous Release - v3.8.2

Expand Down
2 changes: 1 addition & 1 deletion gpu-plot
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def update_data(gc: GuiComponents, plot_data: PlotData) -> None:
for plot_item in active_plot_items:
if gc.plot_items[plot_item]:
comp_item[axis_name].plot(ldf[ldf['Card#'].isin([comp_num])]['datetime'],
ldf[ldf['Card#'].isin([comp_num])][plot_item],
ldf[ldf['Card#'].isin([comp_num])][plot_item].values,
color=gc.get_color(plot_item), linewidth=0.5)
comp_item[axis_name].text(x=ldf[ldf['Card#'].isin([comp_num])]['datetime'].iloc[-1],
y=ldf[ldf['Card#'].isin([comp_num])][plot_item].iloc[-1],
Expand Down
2 changes: 1 addition & 1 deletion requirements-venv.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
matplotlib==3.2.2
pandas==1.0.5
pandas==1.1.5
vext>=0.7.3
vext.gi>=0.7.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
'Topic :: System :: Monitoring',
'Environment :: GPU',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
install_requires=['matplotlib==3.2.2',
'pandas==1.0.5'],
install_requires=['matplotlib>=3.2.0',
'pandas>=1.1.0'],
data_files=[('share/rickslab-gpu-utils/icons', ['icons/gpu-mon.icon.png',
'icons/gpu-pac.icon.png',
'icons/gpu-plot.icon.png']),
Expand Down

0 comments on commit 529c709

Please sign in to comment.