We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 50bc158 + 8639ee7 commit 22efdf1Copy full SHA for 22efdf1
1 file changed
bin/wfbench
@@ -270,20 +270,6 @@ class GPUBenchmark:
270
p = subprocess.Popen(gpu_prog, shell=True)
271
return ProcessHandle(p)
272
273
-# def kill_process_and_children(proc):
274
-# if proc is None:
275
-# return
276
-# try:
277
-# parent = psutil.Process(proc.pid)
278
-# children = parent.children(recursive=True)
279
-# for child in children:
280
-# child.kill()
281
-# parent.kill()
282
-#
283
-# except psutil.NoSuchProcess:
284
-# pass # Process is already dead
285
-
286
287
288
# Utility code functions
289
########################
0 commit comments