Skip to content

Commit

Permalink
Add py-interface for version 6.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 21, 2024
1 parent 387df2d commit f1cdca1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion py-interface/amdsmi/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "6.3.0"
__version__ = "6.3.1"
2 changes: 1 addition & 1 deletion py-interface/amdsmi/amdsmi_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
AMDSMI_MAX_NUM_XGMI_PHYSICAL_LINK = 64
AMDSMI_GPU_UUID_SIZE = 38
MAX_AMDSMI_NAME_LENGTH = 64
MAX_EVENT_NOTIFICATION_MSG_SIZE = 64
MAX_EVENT_NOTIFICATION_MSG_SIZE = 96


class AmdSmiInitFlags(IntEnum):
Expand Down
2 changes: 1 addition & 1 deletion py-interface/amdsmi/amdsmi_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ class struct_amdsmi_evt_notification_data_t(Structure):
struct_amdsmi_evt_notification_data_t._fields_ = [
('processor_handle', ctypes.POINTER(None)),
('event', amdsmi_evt_notification_type_t),
('message', ctypes.c_char * 64),
('message', ctypes.c_char * 96),
('PADDING_0', ctypes.c_ubyte * 4),
]

Expand Down
2 changes: 1 addition & 1 deletion py-interface/amdsmi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="amdsmi",
version="6.3.0",
version="6.3.1",
author="AMD",
author_email="[email protected]",
description="AMDSMI Python LIB - AMD GPU Monitoring Library",
Expand Down
2 changes: 1 addition & 1 deletion py-interface/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "amdsmi"
authors = [
{name = "AMD", email = "[email protected]"},
]
version = "6.3.0"
version = "6.3.1"
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
description = "AMDSMI Python LIB - AMD GPU Monitoring Library"
Expand Down

0 comments on commit f1cdca1

Please sign in to comment.