"...composable_kernel_rocm.git" did not exist on "2ab8bf4c12ba99854afc406ad24626080ee1acd1"
Commit 13bcc4a1 authored by Hejing Li's avatar Hejing Li
Browse files

result: add udp_scale data parser

parent 379f31a4
import sys
import os
import pathlib
import shutil
import json
if len(sys.argv) != 2:
print('Usage: udp_scale.py OUTDIR')
sys.exit(1)
basedir = sys.argv[1] + '/'
types_of_client = [1, 3, 7, 15, 31]
bw = 1000
for cl in types_of_client:
log_path = '%sgt-ib-switch-UDPmicro-%d-%d-1.json' % (basedir, bw, cl)
try:
log = open(log_path, 'r')
except:
print(f'no file: {log_path}')
continue
else:
exp_log = json.load(log)
start_time = exp_log["start_time"]
end_time = exp_log["end_time"]
diff_time = (end_time - start_time)/60 #min
print(diff_time)
log.close()
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment