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
b010d1b5
Commit
b010d1b5
authored
7 years ago
by
Matt Traudt
Browse files
Options
Downloads
Patches
Plain Diff
Make outputting raw values the default
parent
42aa29ad
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
+8
-5
8 additions, 5 deletions
sbws/commands/generate.py
with
8 additions
and
5 deletions
sbws/commands/generate.py
+
8
−
5
View file @
b010d1b5
...
...
@@ -52,14 +52,15 @@ def warn_if_not_accurate_enough(lines, constant):
def
scale_lines
(
args
,
v3bw_lines
):
total
=
sum
([
l
.
bw
for
l
in
v3bw_lines
])
if
not
args
.
raw
:
if
args
.
scale
:
scale
=
len
(
v3bw_lines
)
*
args
.
scale_constant
else
:
scale
=
total
ratio
=
scale
/
total
for
line
in
v3bw_lines
:
line
.
bw
=
round
(
line
.
bw
*
ratio
)
+
1
warn_if_not_accurate_enough
(
v3bw_lines
,
args
.
scale_constant
)
if
args
.
scale
:
warn_if_not_accurate_enough
(
v3bw_lines
,
args
.
scale_constant
)
return
v3bw_lines
...
...
@@ -74,9 +75,11 @@ def gen_parser(sub):
p
.
add_argument
(
'
--scale-constant
'
,
default
=
7500
,
type
=
int
,
help
=
'
When scaling bw weights, scale them using this const
'
'
multiplied by the number of measured relays
'
)
p
.
add_argument
(
'
--raw
'
,
'
--no-scale
'
,
action
=
'
store_true
'
,
help
=
'
If specified, use bandwidth values as they are, with
'
'
no scaling
'
)
p
.
add_argument
(
'
--scale
'
,
action
=
'
store_true
'
,
help
=
'
If specified, do not use bandwidth values as they
'
'
are, but scale them such that we have a budget of
'
'
scale_constant * num_measured_relays = bandwidth to give
'
'
out, and we do so proportionally
'
)
def
main
(
args
,
conf
,
log_
):
...
...
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