Add get_amdgpu_memory_capacity() (#2049)

This commit is contained in:
HAI
2024-11-15 22:51:48 -08:00
committed by GitHub
parent cf2489762b
commit 2ffe0a7363
2 changed files with 40 additions and 3 deletions

View File

@@ -794,7 +794,39 @@ def add_prometheus_middleware(app):
app.routes.append(metrics_route)
def get_gpu_memory_capacity():
def get_amdgpu_memory_capacity():
try:
# Run rocm-smi and capture the output
result = subprocess.run(
["rocm-smi --showmeminfo vram | grep 'Total Memory' | awk '{print $NF}'"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True,
text=True,
)
if result.returncode != 0:
raise RuntimeError(f"rocm-smi error: {result.stderr.strip()}")
# Parse the output to extract memory values in MiB
memory_values = [
float(mem) / 1024 / 1024
for mem in result.stdout.strip().split("\n")
if re.match(r"^\d+(\.\d+)?$", mem.strip())
]
if not memory_values:
raise ValueError("No GPU memory values found.")
# Return the minimum memory value
return min(memory_values)
except FileNotFoundError:
raise RuntimeError(
"rocm-smi not found. Ensure AMD ROCm drivers are installed and accessible."
)
def get_nvgpu_memory_capacity():
try:
# Run nvidia-smi and capture the output
result = subprocess.run(