Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
tci-gateway-module
Grpc
Commits
56cea8f2
Commit
56cea8f2
authored
8 years ago
by
Noah Eisen
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #10098 from ncteisen/whats-the-diff-between
Enhance bm_diff
parents
169c553e
ff023ef7
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
tools/profiling/microbenchmarks/bm_diff.py
+40
-23
40 additions, 23 deletions
tools/profiling/microbenchmarks/bm_diff.py
with
40 additions
and
23 deletions
tools/profiling/microbenchmarks/bm_diff.py
+
40
−
23
View file @
56cea8f2
...
@@ -32,14 +32,45 @@ import sys
...
@@ -32,14 +32,45 @@ import sys
import
json
import
json
import
bm_json
import
bm_json
import
tabulate
import
tabulate
import
argparse
with
open
(
sys
.
argv
[
1
])
as
f
:
def
changed_ratio
(
n
,
o
):
if
float
(
o
)
<=
.
0001
:
o
=
0
if
float
(
n
)
<=
.
0001
:
n
=
0
if
o
==
0
and
n
==
0
:
return
0
if
o
==
0
:
return
100
return
(
float
(
n
)
-
float
(
o
))
/
float
(
o
)
def
min_change
(
pct
):
return
lambda
n
,
o
:
abs
(
changed_ratio
(
n
,
o
))
>
pct
/
100.0
_INTERESTING
=
{
'
cpu_time
'
:
min_change
(
10
),
'
real_time
'
:
min_change
(
10
),
'
locks_per_iteration
'
:
min_change
(
5
),
'
allocs_per_iteration
'
:
min_change
(
5
),
'
writes_per_iteration
'
:
min_change
(
5
),
'
atm_cas_per_iteration
'
:
min_change
(
1
),
'
atm_add_per_iteration
'
:
min_change
(
5
),
}
argp
=
argparse
.
ArgumentParser
(
description
=
'
Perform diff on microbenchmarks
'
)
argp
.
add_argument
(
'
-t
'
,
'
--track
'
,
choices
=
sorted
(
_INTERESTING
.
keys
()),
nargs
=
'
+
'
,
default
=
sorted
(
_INTERESTING
.
keys
()),
help
=
'
Which metrics to track
'
)
argp
.
add_argument
(
'
files
'
,
metavar
=
'
bm_file.json
'
,
type
=
str
,
nargs
=
4
,
help
=
'
files to diff.
'
)
args
=
argp
.
parse_args
()
with
open
(
args
.
files
[
0
])
as
f
:
js_new_ctr
=
json
.
loads
(
f
.
read
())
js_new_ctr
=
json
.
loads
(
f
.
read
())
with
open
(
sys
.
argv
[
2
])
as
f
:
with
open
(
args
.
files
[
1
])
as
f
:
js_new_opt
=
json
.
loads
(
f
.
read
())
js_new_opt
=
json
.
loads
(
f
.
read
())
with
open
(
sys
.
argv
[
3
])
as
f
:
with
open
(
args
.
files
[
2
])
as
f
:
js_old_ctr
=
json
.
loads
(
f
.
read
())
js_old_ctr
=
json
.
loads
(
f
.
read
())
with
open
(
sys
.
argv
[
4
])
as
f
:
with
open
(
args
.
files
[
3
])
as
f
:
js_old_opt
=
json
.
loads
(
f
.
read
())
js_old_opt
=
json
.
loads
(
f
.
read
())
new
=
{}
new
=
{}
...
@@ -50,24 +81,9 @@ for row in bm_json.expand_json(js_new_ctr, js_new_opt):
...
@@ -50,24 +81,9 @@ for row in bm_json.expand_json(js_new_ctr, js_new_opt):
for
row
in
bm_json
.
expand_json
(
js_old_ctr
,
js_old_opt
):
for
row
in
bm_json
.
expand_json
(
js_old_ctr
,
js_old_opt
):
old
[
row
[
'
cpp_name
'
]]
=
row
old
[
row
[
'
cpp_name
'
]]
=
row
def
changed_ratio
(
n
,
o
):
return
float
(
n
-
o
)
/
float
(
o
)
def
min_change
(
pct
):
return
lambda
n
,
o
:
abs
(
changed_ratio
(
n
,
o
))
>
pct
/
100.0
_INTERESTING
=
(
(
'
cpu_time
'
,
min_change
(
10
)),
(
'
real_time
'
,
min_change
(
10
)),
(
'
locks_per_iteration
'
,
min_change
(
5
)),
(
'
allocs_per_iteration
'
,
min_change
(
5
)),
(
'
writes_per_iteration
'
,
min_change
(
5
)),
(
'
atm_cas_per_iteration
'
,
min_change
(
1
)),
(
'
atm_add_per_iteration
'
,
min_change
(
5
)),
)
changed
=
[]
changed
=
[]
for
fld
,
chk
in
_INTERESTING
:
for
fld
in
args
.
track
:
chk
=
_INTERESTING
[
fld
]
for
bm
in
new
.
keys
():
for
bm
in
new
.
keys
():
if
bm
not
in
old
:
continue
if
bm
not
in
old
:
continue
n
=
new
[
bm
]
n
=
new
[
bm
]
...
@@ -86,12 +102,13 @@ for bm in sorted(new.keys()):
...
@@ -86,12 +102,13 @@ for bm in sorted(new.keys()):
n
=
new
[
bm
]
n
=
new
[
bm
]
o
=
old
[
bm
]
o
=
old
[
bm
]
details
=
''
details
=
''
for
fld
,
chk
in
_INTERESTING
:
for
fld
in
args
.
track
:
chk
=
_INTERESTING
[
fld
]
if
fld
not
in
n
or
fld
not
in
o
:
continue
if
fld
not
in
n
or
fld
not
in
o
:
continue
if
chk
(
n
[
fld
],
o
[
fld
]):
if
chk
(
n
[
fld
],
o
[
fld
]):
row
.
append
(
changed_ratio
(
n
[
fld
],
o
[
fld
]))
row
.
append
(
changed_ratio
(
n
[
fld
],
o
[
fld
]))
if
details
:
details
+=
'
,
'
if
details
:
details
+=
'
,
'
details
+=
'
%s:%r-->%r
'
%
(
fld
,
o
[
fld
],
n
[
fld
])
details
+=
'
%s:%r-->%r
'
%
(
fld
,
float
(
o
[
fld
]
)
,
float
(
n
[
fld
])
)
any_changed
=
True
any_changed
=
True
else
:
else
:
row
.
append
(
''
)
row
.
append
(
''
)
...
...
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