forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitor.py
192 lines (158 loc) · 6.15 KB
/
monitor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#!/usr/bin/env python3
import datetime
import json
import signal
import sys
import time
from typing import Any, Dict, List
import psutil # type: ignore[import]
import pynvml # type: ignore[import]
# ROCm does not currently have the rocm_smi module installed to a pythonic location.
# Must import from ROCm installation path.
# Cannot use the high-level rocm_smi cmdline module due to its use of exit().
# Must use the lower-level ctypes wrappers exposed through rsmiBindings.
sys.path.append("/opt/rocm/libexec/rocm_smi")
try:
from ctypes import byref, c_uint32, c_uint64
from rsmiBindings import ( # type: ignore[import]
rocmsmi,
rsmi_process_info_t,
rsmi_status_t,
)
except ImportError as e:
pass
def get_processes_running_python_tests() -> List[Any]:
python_processes = []
for process in psutil.process_iter():
try:
if "python" in process.name() and process.cmdline():
python_processes.append(process)
except (psutil.NoSuchProcess, psutil.AccessDenied):
# access denied or the process died
pass
return python_processes
def get_per_process_cpu_info() -> List[Dict[str, Any]]:
processes = get_processes_running_python_tests()
per_process_info = []
for p in processes:
info = {
"pid": p.pid,
"cmd": " ".join(p.cmdline()),
"cpu_percent": p.cpu_percent(),
"rss_memory": p.memory_info().rss,
}
# https://psutil.readthedocs.io/en/latest/index.html?highlight=memory_full_info
# requires higher user privileges and could throw AccessDenied error, i.e. mac
try:
memory_full_info = p.memory_full_info()
info["uss_memory"] = memory_full_info.uss
if "pss" in memory_full_info:
# only availiable in linux
info["pss_memory"] = memory_full_info.pss
except psutil.AccessDenied as e:
# It's ok to skip this
pass
per_process_info.append(info)
return per_process_info
def get_per_process_gpu_info(handle: Any) -> List[Dict[str, Any]]:
processes = pynvml.nvmlDeviceGetComputeRunningProcesses(handle)
per_process_info = []
for p in processes:
info = {"pid": p.pid, "gpu_memory": p.usedGpuMemory}
per_process_info.append(info)
return per_process_info
def rocm_ret_ok(ret: int) -> Any:
return ret == rsmi_status_t.RSMI_STATUS_SUCCESS
def rocm_list_devices() -> List[int]:
num = c_uint32(0)
ret = rocmsmi.rsmi_num_monitor_devices(byref(num))
if rocm_ret_ok(ret):
return list(range(num.value))
return []
def rocm_get_mem_use(device: int) -> float:
memoryUse = c_uint64()
memoryTot = c_uint64()
ret = rocmsmi.rsmi_dev_memory_usage_get(device, 0, byref(memoryUse))
if rocm_ret_ok(ret):
ret = rocmsmi.rsmi_dev_memory_total_get(device, 0, byref(memoryTot))
if rocm_ret_ok(ret):
return float(memoryUse.value) / float(memoryTot.value)
return 0.0
def rocm_get_gpu_use(device: int) -> float:
percent = c_uint32()
ret = rocmsmi.rsmi_dev_busy_percent_get(device, byref(percent))
if rocm_ret_ok(ret):
return float(percent.value)
return 0.0
def rocm_get_pid_list() -> List[Any]:
num_items = c_uint32()
ret = rocmsmi.rsmi_compute_process_info_get(None, byref(num_items))
if rocm_ret_ok(ret):
buff_sz = num_items.value + 10
procs = (rsmi_process_info_t * buff_sz)()
procList = []
ret = rocmsmi.rsmi_compute_process_info_get(byref(procs), byref(num_items))
for i in range(num_items.value):
procList.append(procs[i].process_id)
return procList
return []
def rocm_get_per_process_gpu_info() -> List[Dict[str, Any]]:
per_process_info = []
for pid in rocm_get_pid_list():
proc = rsmi_process_info_t()
ret = rocmsmi.rsmi_compute_process_info_by_pid_get(int(pid), byref(proc))
if rocm_ret_ok(ret):
info = {"pid": pid, "gpu_memory": proc.vram_usage}
per_process_info.append(info)
return per_process_info
if __name__ == "__main__":
handle = None
try:
pynvml.nvmlInit()
handle = pynvml.nvmlDeviceGetHandleByIndex(0)
except pynvml.NVMLError:
# no pynvml avaliable, probably because not cuda
pass
rsmi_handles = []
try:
ret = rocmsmi.rsmi_init(0)
rsmi_handles = rocm_list_devices()
except Exception:
# no rocmsmi available, probably because not rocm
pass
kill_now = False
def exit_gracefully(*args: Any) -> None:
global kill_now
kill_now = True
signal.signal(signal.SIGTERM, exit_gracefully)
while not kill_now:
try:
stats = {
"time": datetime.datetime.utcnow().isoformat("T") + "Z",
"total_cpu_percent": psutil.cpu_percent(),
"per_process_cpu_info": get_per_process_cpu_info(),
}
if handle is not None:
stats["per_process_gpu_info"] = get_per_process_gpu_info(handle)
# https://docs.nvidia.com/deploy/nvml-api/structnvmlUtilization__t.html
gpu_utilization = pynvml.nvmlDeviceGetUtilizationRates(handle)
stats["total_gpu_utilization"] = gpu_utilization.gpu
stats["total_gpu_mem_utilization"] = gpu_utilization.memory
if rsmi_handles:
stats["per_process_gpu_info"] = rocm_get_per_process_gpu_info()
# There are 1 to 4 GPUs in use; these values may sum > 1.0.
gpu_utilization = 0.0
gpu_memory = 0.0
for dev in rsmi_handles:
gpu_utilization += rocm_get_gpu_use(dev)
gpu_memory += rocm_get_mem_use(dev)
stats["total_gpu_utilization"] = gpu_utilization
stats["total_gpu_mem_utilization"] = gpu_memory
except Exception as e:
stats = {
"time": datetime.datetime.utcnow().isoformat("T") + "Z",
"error": str(e),
}
finally:
print(json.dumps(stats))
time.sleep(1)