forked from ycrc/seff-array
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseff-array.py
More file actions
executable file
·250 lines (204 loc) · 8.6 KB
/
seff-array.py
File metadata and controls
executable file
·250 lines (204 loc) · 8.6 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
#!/gpfs/gibbs/pi/support/software/utilities/bin/python
import argparse
import subprocess
import sys
import numpy as np
import pandas as pd
from io import StringIO
import os
import termplotlib as tpl
import json
import gzip
import base64
from typing import Optional
__version__ = 0.4
debug = False
def time_to_float(time):
""" converts [dd-[hh:]]mm:ss time to seconds """
if isinstance(time, float):
return time
days, hours = 0, 0
if "-" in time:
days = int(time.split("-")[0]) * 86400
time = time.split("-")[1]
time = time.split(":")
if len(time) > 2:
hours = int(time[0]) * 3600
mins = int(time[-2]) * 60
secs = float(time[-1])
return days + hours + mins + secs
def get_stats_dict(ss64: Optional[str]) -> dict:
"""Convert the base64-encoded jobstats summary statistics to JSON."""
if (not ss64) or pd.isna(ss64) or ss64 == "JS1:Short" or ss64 == "JS1:None":
return {}
return json.loads(gzip.decompress(base64.b64decode(ss64[4:])))
def gpu_count(js):
"""Pull gpu count from jobstats data"""
gpu_cnt = 0
if js:
for node in js['nodes']:
try:
gpus = list(js['nodes'][node]['gpu_utilization'].keys())
except Exception:
exit
else:
for gpu in gpus:
gpu_cnt = gpu_cnt + 1
return gpu_cnt
def gpu_util(js):
"""Pull gpu utilization from jobstats data"""
gpu_util = 0
if js:
for node in js['nodes']:
try:
gpus = list(js['nodes'][node]['gpu_utilization'].keys())
except Exception:
exit
else:
for gpu in gpus:
util = js['nodes'][node]['gpu_utilization'][gpu]
gpu_util = gpu_util + util/100.0
return gpu_util
#@profile
def job_eff(job_id=0, cluster=os.getenv('SLURM_CLUSTER_NAME')):
if job_id==0:
df_short = pd.read_csv('seff_test_oneline.csv', sep='|')
df_long = pd.read_csv('seff_test.csv', sep='|')
else:
fmt = '--format=JobID,JobName,Elapsed,ReqMem,ReqCPUS,Timelimit,State,TotalCPU,NNodes,User,Group,Cluster,AdminComment'
if cluster != None:
q = f'sacct -X --units=G -P {fmt} -j {job_id} --cluster {cluster}'
else:
q = f'sacct -X --units=G -P {fmt} -j {job_id}'
res = subprocess.check_output([q], shell=True)
res = str(res, 'utf-8')
df_short = pd.read_csv(StringIO(res), sep='|')
fmt = '--format=JobID,JobName,Elapsed,ReqMem,ReqCPUS,Timelimit,State,TotalCPU,NNodes,User,Group,Cluster,MaxRSS,AdminComment'
if cluster != None:
q = f'sacct --units=G -P {fmt} -j {job_id} --cluster {cluster}'
else:
q = f'sacct --units=G -P {fmt} -j {job_id}'
res = subprocess.check_output([q], shell=True)
res = str(res, 'utf-8')
df_long = pd.read_csv(StringIO(res), sep='|')
# filter out pending and running jobs
finished_state = ['COMPLETED', 'FAILED', 'OUT_OF_MEMORY', 'TIMEOUT', 'PREEMPTEED']
df_long_finished = df_long[df_long.State.isin(finished_state)]
if len(df_long_finished) == 0:
print(f"No jobs in {job_id} have completed.")
return -1
# cleaning
df_short = df_short.fillna(0.)
df_long = df_long.fillna(0.)
df_long['MaxRSS'] = df_long.MaxRSS.astype('str')
df_long['ReqMem'] = df_long.ReqMem.astype('str')
df_long['Timelimit'] = df_long.Timelimit.replace('UNLIMITED','365-00:00:00').replace('Partition_Limit','365-00:00:00')
df_long['JobID'] = df_long.JobID.map(lambda x: x.split('.')[0])
df_long['MaxRSS'] = df_long.MaxRSS.str.replace('G', '').astype('float')
df_long['ReqMem'] = df_long.ReqMem.str.replace('G', '').astype('float')
df_long['TotalCPU'] = df_long.TotalCPU.map(lambda x: time_to_float(x))
df_long['Elapsed'] = df_long.Elapsed.map(lambda x: time_to_float(x))
df_long['Timelimit'] = df_long.Timelimit.map(lambda x: time_to_float(x))
df_short['AdminComment'] = df_short.AdminComment.map(lambda x: get_stats_dict(x))
gpu_req = df_short.AdminComment.map(lambda x: gpu_count(x))
# job info
if isinstance(df_short['JobID'][0], np.int64):
job_id = df_short['JobID'][0]
array_job = False
else:
job_id = df_short['JobID'][0].split('_')[0]
array_job = True
job_name = df_short['JobName'][0]
cluster = df_short['Cluster'][0]
user = df_short['User'][0]
group = df_short['Group'][0]
nodes = df_short['NNodes'][0]
cores = df_short['ReqCPUS'][0]
if len(gpu_req[gpu_req != 0]) != 0:
gpus = gpu_req[gpu_req != 0].mean()
else:
gpus = 0
req_mem = df_short['ReqMem'][0]
req_time = df_short['Timelimit'][0]
print("--------------------------------------------------------")
print("Job Information")
print(f"ID: {job_id}")
print(f"Name: {job_name}")
print(f"Cluster: {cluster}")
print(f"User/Group: {user}/{group}")
print(f"Requested CPUs: {cores} cores on {nodes} node(s)")
print(f"Average Requested GPUs: {gpus:.2f}")
print(f"Requested Memory: {req_mem}")
print(f"Requested Time: {req_time}")
print("--------------------------------------------------------")
print("Job Status")
states = np.unique(df_short['State'])
for s in states:
print(f"{s}: {len(df_short[df_short.State == s])}")
print("--------------------------------------------------------")
# filter out pending and running jobs
finished_state = ['COMPLETED', 'FAILED', 'OUT_OF_MEMORY', 'TIMEOUT', 'PREEMPTEED']
df_long_finished = df_long[df_long.State.isin(finished_state)]
if len(df_long_finished) == 0:
print(f"No jobs in {job_id} have completed.")
return -1
cpu_use = df_long_finished.TotalCPU.loc[df_long_finished.groupby('JobID')['TotalCPU'].idxmax()]
gpu_use = df_short.AdminComment.map(lambda x: gpu_util(x))
time_use = df_long_finished.Elapsed.loc[df_long_finished.groupby('JobID')['Elapsed'].idxmax()]
mem_use = df_long_finished.MaxRSS.loc[df_long_finished.groupby('JobID')['MaxRSS'].idxmax()]
cpu_eff = np.divide(np.divide(cpu_use.to_numpy(), time_use.to_numpy()),cores)
gpu_eff = np.divide(gpu_use[gpu_req != 0].to_numpy(), gpu_req[gpu_req != 0].to_numpy()).clip(0,1.0)
print("--------------------------------------------------------")
print("Finished Job Statistics")
print("(excludes pending, running, and cancelled jobs)")
print(f"Average CPU Efficiency {cpu_eff.mean()*100:.2f}%")
if len(gpu_eff) != 0:
print(f"Average GPU Efficiency {gpu_eff.mean()*100:.2f}%")
print(f"Average Memory Usage {mem_use.mean():.2f}G")
print(f"Average Run-time {time_use.mean():.2f}s")
print("---------------------")
if array_job:
print('\nCPU Efficiency (%)\n---------------------')
fig = tpl.figure()
h, bin_edges = np.histogram(cpu_eff*100, bins=np.linspace(0,100,num=11))
fig.hist(h, bin_edges, orientation='horizontal')
fig.show()
if len(gpu_eff) != 0:
print('\nGPU Efficiency (%)\n---------------------')
fig = tpl.figure()
h, bin_edges = np.histogram(gpu_eff*100, bins=np.linspace(0,100,num=11))
fig.hist(h, bin_edges, orientation='horizontal')
fig.show()
print('\nMemory Efficiency (%)\n---------------------')
fig = tpl.figure()
h, bin_edges = np.histogram(mem_use*100/float(req_mem[0:-1]), bins=np.linspace(0,100,num=11))
fig.hist(h, bin_edges, orientation='horizontal')
fig.show()
print('\nTime Efficiency (%)\n---------------------')
fig = tpl.figure()
h, bin_edges = np.histogram(time_use*100/time_to_float(req_time), bins=np.linspace(0,100,num=11))
fig.hist(h, bin_edges, orientation='horizontal')
fig.show()
print("--------------------------------------------------------")
if __name__ == "__main__":
desc = (
"""
seff-array v%s
https://github.com/ycrc/seff-array
---------------
An extension of the Slurm command 'seff' designed to handle job arrays and display information in a histogram.
To use seff-array on the job array with ID '12345678', simply run 'seff-array 12345678'.
Other things can go here in the future.
-----------------
"""
% __version__
)
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
description=desc,
)
parser.add_argument("jobid")
parser.add_argument("-c", "--cluster", action="store", dest="cluster")
parser.add_argument('--version', action='version', version='%(prog)s {version}'.format(version=__version__))
args = parser.parse_args()
job_eff(args.jobid, args.cluster)