Files
rocm-systems/amdsmi_cli/amdsmi_init.py
T

146 lines
6.0 KiB
Python
Raw Normal View History

2023-03-20 13:29:28 -05:00
#!/usr/bin/env python3
2023-03-06 06:20:21 -06:00
#
# Copyright (C) 2023 Advanced Micro Devices. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
### Handle safe initialization for amdsmi
import atexit
import logging
import signal
import sys
from pathlib import Path
2023-05-18 16:00:45 -05:00
sys.path.append(f"{Path(__file__).resolve().parent}/../../share/amd_smi")
2023-03-20 13:29:28 -05:00
# If the python library is installed, it will overwrite the path above
2023-03-28 15:32:17 -05:00
from amdsmi import amdsmi_interface
from amdsmi import amdsmi_exception
2023-03-06 06:20:21 -06:00
# Using basic python logging for user errors and development
2023-09-27 02:37:46 -05:00
logging.basicConfig(format="%(levelname)s: %(message)s", level=logging.ERROR) # User level logging
2023-09-24 16:12:30 -05:00
# This traceback limit only affects this file, once the code hit's the cli portion it get's reset to the user's preference
2023-09-27 02:37:46 -05:00
sys.tracebacklimit = -1 # Disable traceback when raising errors
2023-03-06 06:20:21 -06:00
# On initial import set initialized variable
AMDSMI_INITIALIZED = False
AMDSMI_INIT_FLAG = amdsmi_interface.AmdSmiInitFlags.INIT_ALL_PROCESSORS
2023-03-06 06:20:21 -06:00
AMD_VENDOR_ID = 4098
def check_amdgpu_driver():
""" Returns true if amdgpu is found in the list of initialized modules """
amd_gpu_status_file = Path("/sys/module/amdgpu/initstate")
if amd_gpu_status_file.exists():
2023-09-27 02:37:46 -05:00
if amd_gpu_status_file.read_text(encoding="ascii").strip() == "live":
2023-03-06 06:20:21 -06:00
return True
return False
def check_amd_hsmp_driver():
""" Returns true if amd_hsmp is found in the list of initialized modules """
amd_cpu_status_file = Path("/sys/module/amd_hsmp/initstate")
if amd_cpu_status_file.exists():
if amd_cpu_status_file.read_text(encoding="ascii").strip() == "live":
return True
return False
def init_amdsmi():
2023-03-06 06:20:21 -06:00
""" Initializes AMDSMI
Checks for the presence of the amdgpu and amd_hsmp drivers and initializes the
AMD SMI library based on the live drivers found.
Return:
init_flag: the flag used to initialize the AMD SMI library without error
2023-03-06 06:20:21 -06:00
Raises:
err: AmdSmiLibraryException if not successful in initializing any drivers
2023-03-06 06:20:21 -06:00
"""
init_flag = amdsmi_interface.AmdSmiInitFlags.INIT_ALL_PROCESSORS
if check_amdgpu_driver() and check_amd_hsmp_driver():
init_flag = amdsmi_interface.AmdSmiInitFlags.INIT_AMD_APUS
logging.debug("Both amdgpu and amd_hsmp driver's initstate is live")
try:
amdsmi_interface.amdsmi_init(init_flag)
except (amdsmi_interface.AmdSmiLibraryException, amdsmi_interface.AmdSmiParameterException) as e:
if e.err_code in (amdsmi_interface.amdsmi_wrapper.AMDSMI_STATUS_NOT_INIT,
amdsmi_interface.amdsmi_wrapper.AMDSMI_STATUS_DRIVER_NOT_LOADED):
logging.error("Drivers not loaded (amdgpu and amd_hsmp drivers not found in modules)")
sys.exit(-1)
else:
raise e
elif check_amdgpu_driver():
init_flag = amdsmi_interface.AmdSmiInitFlags.INIT_AMD_GPUS
logging.debug("amdgpu driver initstate is live")
2023-03-06 06:20:21 -06:00
try:
amdsmi_interface.amdsmi_init(init_flag)
2023-09-27 02:37:46 -05:00
except (amdsmi_interface.AmdSmiLibraryException, amdsmi_interface.AmdSmiParameterException) as e:
if e.err_code in (amdsmi_interface.amdsmi_wrapper.AMDSMI_STATUS_NOT_INIT,
amdsmi_interface.amdsmi_wrapper.AMDSMI_STATUS_DRIVER_NOT_LOADED):
logging.error("Driver not loaded (amdgpu not found in modules)")
sys.exit(-1)
else:
raise e
logging.debug("amdgpu driver initialized successfully, but amd_hsmp initstate was not live")
elif check_amd_hsmp_driver():
init_flag = amdsmi_interface.AmdSmiInitFlags.INIT_AMD_CPUS
logging.debug("amd_hsmp driver initstate is live")
try:
amdsmi_interface.amdsmi_init(init_flag)
except (amdsmi_interface.AmdSmiLibraryException, amdsmi_interface.AmdSmiParameterException) as e:
if e.err_code in (amdsmi_interface.amdsmi_wrapper.AMDSMI_STATUS_NOT_INIT,
amdsmi_interface.amdsmi_wrapper.AMDSMI_STATUS_DRIVER_NOT_LOADED):
logging.error("Driver not loaded (amd_hsmp not found in modules)")
sys.exit(-1)
else:
raise e
logging.debug("amd_hsmp driver initialized successfully, but amdgpu initstate was not live")
logging.debug(f"AMDSMI initialized with atleast one driver successfully | init flag: {init_flag}")
2023-03-06 06:20:21 -06:00
return init_flag
2023-03-06 06:20:21 -06:00
def shut_down_amdsmi():
"""Shutdown AMDSMI instance
Raises:
err: AmdSmiLibraryException if not successful
"""
try:
amdsmi_interface.amdsmi_shut_down()
2023-09-27 02:37:46 -05:00
except amdsmi_exception.AmdSmiLibraryException as e:
logging.error("Unable to cleanly shut down amd-smi-lib")
raise e
2023-03-06 06:20:21 -06:00
def signal_handler(sig, frame):
2023-09-27 02:37:46 -05:00
logging.debug(f"Handling signal: {sig}")
2023-03-06 06:20:21 -06:00
sys.exit(0)
if not AMDSMI_INITIALIZED:
AMDSMI_INIT_FLAG = init_amdsmi()
2023-03-06 06:20:21 -06:00
AMDSMI_INITIALIZED = True
signal.signal(signal.SIGINT, signal_handler)
signal.signal(signal.SIGTERM, signal_handler)
atexit.register(shut_down_amdsmi)