Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sbws
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
juga
sbws
Commits
b128d8e7
Commit
b128d8e7
authored
7 years ago
by
Matt Traudt
Browse files
Options
Downloads
Patches
Plain Diff
Log mean bandwidth per v3bw line
parent
67f098a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sbws/commands/generate.py
+7
-0
7 additions, 0 deletions
sbws/commands/generate.py
with
7 additions
and
0 deletions
sbws/commands/generate.py
+
7
−
0
View file @
b128d8e7
...
...
@@ -85,6 +85,12 @@ def gen_parser(sub):
'
out, and we do so proportionally
'
)
def
log_stats
(
data_lines
):
total_bw
=
sum
([
l
.
bw
for
l
in
data_lines
])
bw_per_line
=
total_bw
/
len
(
data_lines
)
/
1024
log
.
info
(
'
Mean bandwidth per line: {:.2f}
"
KiB
"'
.
format
(
bw_per_line
))
def
main
(
args
,
conf
,
log_
):
global
log
log
=
log_
...
...
@@ -104,6 +110,7 @@ def main(args, conf, log_):
data_lines
=
[
result_data_to_v3bw_line
(
data
,
fp
)
for
fp
in
data
]
data_lines
=
sorted
(
data_lines
,
key
=
lambda
d
:
d
.
bw
,
reverse
=
True
)
data_lines
=
scale_lines
(
args
,
data_lines
)
log_stats
(
data_lines
)
with
open
(
args
.
output
,
'
wt
'
)
as
fd
:
fd
.
write
(
'
{}
\n
'
.
format
(
int
(
time
.
time
())))
for
line
in
data_lines
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment