Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
a7c99861
Commit
a7c99861
authored
Dec 06, 2020
by
Hejing Li
Browse files
papar data: add udp data parser
parent
3a716e0b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
results/udp.py
results/udp.py
+25
-0
No files found.
results/udp.py
0 → 100644
View file @
a7c99861
import
sys
import
os
import
pathlib
import
shutil
import
json
if
len
(
sys
.
argv
)
!=
2
:
print
(
'Usage: udp.py OUTDIR'
)
sys
.
exit
(
1
)
basedir
=
sys
.
argv
[
1
]
+
'/'
types_of_bw
=
[
0
,
20
,
40
,
60
,
80
,
100
,
120
,
140
]
for
bw
in
types_of_bw
:
log_path
=
'%sgt-ib-wire-UDPs-%dm-1.json'
%
(
basedir
,
bw
)
log
=
open
(
log_path
,
'r'
)
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
(
start_time
,
end_time
,
diff_time
)
log
.
close
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment