7c9d317527
Signed-off-by: coleramos425 <colramos@amd.com>
267 lines
7.5 KiB
Python
267 lines
7.5 KiB
Python
"""Get host/gpu specs."""
|
|
|
|
##############################################################################bl
|
|
# MIT License
|
|
#
|
|
# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. 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.
|
|
##############################################################################el
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
import socket
|
|
import subprocess
|
|
|
|
from dataclasses import dataclass
|
|
from pathlib import Path as path
|
|
from textwrap import dedent
|
|
|
|
gpu_list = {"gfx906", "gfx908", "gfx90a", "gfx900"}
|
|
|
|
|
|
@dataclass
|
|
class MachineSpecs:
|
|
hostname: str
|
|
cpu: str
|
|
kernel: str
|
|
ram: str
|
|
distro: str
|
|
rocmversion: str
|
|
GPU: str
|
|
L1: str
|
|
L2: str
|
|
SCLK: str
|
|
CU: str
|
|
SIMD: str
|
|
SE: str
|
|
wave_size: str
|
|
workgroup_size: str
|
|
cur_SCLK: str
|
|
cur_MCLK: str
|
|
wave_occu: str
|
|
|
|
def __str__(self):
|
|
return dedent(
|
|
f"""\
|
|
Host info:
|
|
hostname: {self.hostname}
|
|
cpu info: {self.cpu}
|
|
ram: {self.ram}
|
|
distro: {self.distro}
|
|
kernel version: {self.kernel}
|
|
rocm version: {self.rocmversion}
|
|
Device info:
|
|
GPU: {self.GPU}
|
|
L1: {self.L1}
|
|
L2: {self.L2}
|
|
Max SCLK: {self.SCLK}MHz
|
|
Current SCLK: {self.cur_SCLK}MHz
|
|
Current MCLK: {self.cur_MCLK}MHz
|
|
CU: {self.CU}
|
|
SIMD: {self.SIMD}
|
|
SE: {self.SE}
|
|
Wave Size: {self.wave_size}
|
|
Workgroup Max Size: {self.workgroup_size}
|
|
Max Wave Occupancy Per CU: {self.wave_occu}
|
|
"""
|
|
)
|
|
|
|
|
|
def gpuinfo():
|
|
rocminfo = run(["rocminfo"]).split("\n")
|
|
|
|
for idx1, linetext in enumerate(rocminfo):
|
|
gpu_id = search(r"^\s*Name\s*:\s+ ([a-zA-Z0-9]+)\s*$", linetext)
|
|
if gpu_id in gpu_list:
|
|
break
|
|
|
|
if not gpu_id in gpu_list:
|
|
return None, None, None, None, None, None, None, None, None, None
|
|
|
|
L1, L2 = "", ""
|
|
for idx2, linetext in enumerate(rocminfo[idx1 + 1 :]):
|
|
key = search(r"^\s*L1:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
L1 = key
|
|
continue
|
|
|
|
key = search(r"^\s*L2:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
L2 = key
|
|
continue
|
|
|
|
key = search(r"^\s*Max Clock Freq\. \(MHz\):\s+([0-9]+)", linetext)
|
|
if key != None:
|
|
sclk = key
|
|
continue
|
|
|
|
key = search(r"^\s*Compute Unit:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
num_CU = key
|
|
continue
|
|
|
|
key = search(r"^\s*SIMDs per CU:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
num_SIMD = key
|
|
continue
|
|
|
|
key = search(r"^\s*Shader Engines:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
num_SE = key
|
|
continue
|
|
|
|
key = search(r"^\s*Wavefront Size:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
wave_size = key
|
|
continue
|
|
|
|
key = search(r"^\s*Workgroup Max Size:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
grp_size = key
|
|
continue
|
|
|
|
key = search(r"^\s*Max Waves Per CU:\s+ ([a-zA-Z0-9]+)\s*", linetext)
|
|
if key != None:
|
|
wave_occu = key
|
|
break
|
|
|
|
return gpu_id, L1, L2, sclk, num_CU, num_SIMD, num_SE, wave_size, grp_size, wave_occu
|
|
|
|
|
|
def run(cmd):
|
|
p = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
if cmd[0] == "rocm-smi" and p.returncode == 8:
|
|
print("ERROR: No GPU detected. Unable to load rocm-smi")
|
|
sys.exit(1)
|
|
return p.stdout.decode("ascii")
|
|
|
|
|
|
def search(pattern, string):
|
|
m = re.search(pattern, string, re.MULTILINE)
|
|
if m is not None:
|
|
return m.group(1)
|
|
return None
|
|
|
|
|
|
def get_machine_specs(devicenum):
|
|
cpuinfo = path("/proc/cpuinfo").read_text()
|
|
meminfo = path("/proc/meminfo").read_text()
|
|
version = path("/proc/version").read_text()
|
|
os_release = path("/etc/os-release").read_text()
|
|
|
|
version_loc = [
|
|
"version",
|
|
"version-dev",
|
|
"version-hip-libraries",
|
|
"version-hiprt",
|
|
"version-hiprt-devel",
|
|
"version-hip-sdk",
|
|
"version-libs",
|
|
"version-utils",
|
|
]
|
|
|
|
rocmFound = False
|
|
for itr in version_loc:
|
|
_path = os.path.join(os.getenv("ROCM_PATH", "/opt/rocm"), ".info", itr)
|
|
if os.path.exists(_path):
|
|
rocm_ver = path(_path).read_text()
|
|
rocmFound = True
|
|
break
|
|
|
|
if not rocmFound:
|
|
# check if ROCM_VER is supplied externally
|
|
ROCM_VER_USER = os.getenv("ROCM_VER")
|
|
if ROCM_VER_USER is not None:
|
|
print(
|
|
"Overriding missing ROCm version detection with ROCM_VER = %s"
|
|
% ROCM_VER_USER
|
|
)
|
|
rocm_ver = ROCM_VER_USER
|
|
else:
|
|
_rocm_path = os.getenv("ROCM_PATH", "/opt/rocm")
|
|
print("Error: Unable to detect a complete local ROCm installation.")
|
|
print(
|
|
"\nThe expected %s/.info/ versioning directory is missing. Please"
|
|
% _rocm_path
|
|
)
|
|
print("ensure you have valid ROCm installation.")
|
|
sys.exit(1)
|
|
|
|
(
|
|
gpu_id,
|
|
L1,
|
|
L2,
|
|
sclk,
|
|
num_CU,
|
|
num_SIMD,
|
|
num_SE,
|
|
wave_size,
|
|
grp_size,
|
|
wave_occu,
|
|
) = gpuinfo()
|
|
rocm_smi = run(["rocm-smi"])
|
|
|
|
device = rf"^\s*{devicenum}(.*)"
|
|
|
|
hostname = socket.gethostname()
|
|
cpu = search(r"^model name\s*: (.*?)$", cpuinfo)
|
|
kernel = search(r"version (\S*)", version)
|
|
ram = search(r"MemTotal:\s*(\S*)", meminfo)
|
|
distro = search(r'PRETTY_NAME="(.*?)"', os_release)
|
|
if distro is None:
|
|
distro = ""
|
|
|
|
rocmversion = rocm_ver.strip()
|
|
|
|
freq = search(device, rocm_smi).split()
|
|
cur_sclk = search(r"([0-9]+)", freq[2])
|
|
if cur_sclk is None:
|
|
cur_sclk = ""
|
|
|
|
cur_mclk = search(r"([0-9]+)", freq[3])
|
|
if cur_mclk is None:
|
|
cur_mclk = ""
|
|
|
|
return MachineSpecs(
|
|
hostname,
|
|
cpu,
|
|
kernel,
|
|
ram,
|
|
distro,
|
|
rocmversion,
|
|
gpu_id,
|
|
L1,
|
|
L2,
|
|
sclk,
|
|
num_CU,
|
|
num_SIMD,
|
|
num_SE,
|
|
wave_size,
|
|
grp_size,
|
|
cur_sclk,
|
|
cur_mclk,
|
|
wave_occu,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(get_machine_specs(0))
|