Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
Poulpe
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This instance will be upgraded to Heptapod 17.9.0 final on 2025-04-04 between 14:00 and 15:00 UTC+2
Show more breadcrumbs
octobus
Poulpe
Commits
68de0f5e
Commit
68de0f5e
authored
2 years ago
by
Pierre-Yves David
Browse files
Options
Downloads
Patches
Plain Diff
hg-perf: add variants supports
parent
a582cef9
No related branches found
No related tags found
No related merge requests found
Pipeline
#56181
passed
2 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/benchmarks.rst
+42
-0
42 additions, 0 deletions
docs/benchmarks.rst
python-libs/poulpe/runner.py
+38
-11
38 additions, 11 deletions
python-libs/poulpe/runner.py
suites/hg/benchmarks/perf-bundle.pbd
+20
-1
20 additions, 1 deletion
suites/hg/benchmarks/perf-bundle.pbd
with
100 additions
and
12 deletions
docs/benchmarks.rst
+
42
−
0
View file @
68de0f5e
...
...
@@ -129,3 +129,45 @@
~~~~
Arguments to pass to the command (a list of string).
variants
--------
Variants allow for slight variation of a benchmark. For example, they allow to change the
input data, of to turn some feature on and off.
Variants are organised within independant "dimensions".
Each dimension has a set of values, each value can modify the benchmark. Each
dimension must have a default value.
defining a variant
~~~~~~~~~~~~~~~~~~
Variants are defined under keys following this patterns :
hg-perf-ext.variants.dimensions.<dimension-name>.<variant-key>
The `dimension-name` and `variant-key` are used as identifier in the benchmark
result and for selecting variant at run time.
variants variables
~~~~~~~~~~~~~~~~~~
default
~~~~~~~
Exactly one variant must have it set to `true` per dimension.
When set and no variant have been explicitly selected for this dimension, this
variant will be used.
args
~~~~~~~~~~~~~~
A list of args to add to the command
cwd
~~~
overwrite the global `hg-perf-ext.cwd` variable. Behave the same.
This diff is collapsed.
Click to expand it.
python-libs/poulpe/runner.py
+
38
−
11
View file @
68de0f5e
...
...
@@ -81,6 +81,19 @@
variants
=
{}
self
.
_selected_variants
=
variants
# find all variant and pick default one when needed.
for
dimension
,
variants
in
self
.
all_dimensions
.
items
():
selected
=
self
.
_selected_variants
.
get
(
dimension
)
if
selected
is
None
:
for
name
,
values
in
variants
.
items
():
if
values
.
get
(
"
default
"
,
False
):
selected
=
name
break
else
:
msg
=
"
missing default value for dimensions: %s
"
assert
False
,
msg
%
dimension
self
.
_selected_variants
[
dimension
]
=
selected
@property
def
name
(
self
):
return
self
.
_data
[
'
meta
'
][
'
name
'
]
...
...
@@ -110,17 +123,7 @@
assert
self
.
_raw_data
[
'
meta
'
][
'
method
'
]
==
"
simple-command
"
for
dimension
,
variants
in
self
.
all_dimensions
.
items
():
# find the variants we should use.
selected
=
self
.
_selected_variants
.
get
(
dimension
)
if
selected
is
None
:
for
name
,
values
in
variants
.
items
():
if
values
.
get
(
"
default
"
,
False
):
selected
=
name
break
else
:
msg
=
"
missing default value for dimensions: %s
"
assert
False
,
msg
%
dimension
self
.
_selected_variants
[
dimension
]
=
selected
selected
=
self
.
_selected_variants
[
dimension
]
# gather the changes to the benchmark
new_cwd
=
variants
[
selected
].
get
(
'
cwd
'
)
...
...
@@ -241,6 +244,30 @@
(This might live in a pluging in the future.)
"""
def
__init__
(
self
,
data
,
variants
=
None
):
super
().
__init__
(
data
,
variants
)
assert
self
.
_raw_data
[
'
meta
'
][
'
method
'
]
==
"
mercurial-perf-extension
"
self
.
_data
[
'
hg-perf-ext
'
].
setdefault
(
'
args
'
,
[])
for
dimension
,
variants
in
self
.
all_dimensions
.
items
():
selected
=
self
.
_selected_variants
[
dimension
]
# gather the changes to the benchmark
new_cwd
=
variants
[
selected
].
get
(
'
cwd
'
)
if
new_cwd
is
not
None
:
self
.
_data
[
'
hg-perf-ext
'
][
'
cwd
'
]
=
new_cwd
args
=
variants
[
selected
].
get
(
'
args
'
)
if
args
:
self
.
_data
[
'
hg-perf-ext
'
][
'
args
'
].
extend
(
args
)
@property
def
all_dimensions
(
self
):
l_1
=
self
.
_data
.
get
(
'
hg-perf-ext
'
,
{})
l_2
=
l_1
.
get
(
'
variants
'
,
{})
all_dimensions
=
l_2
.
get
(
'
dimensions
'
,
{})
return
all_dimensions
.
copy
()
def
run_one
(
self
,
bin_env_path
,
data_env_path
):
bin_env_path
=
os
.
path
.
abspath
(
bin_env_path
)
...
...
This diff is collapsed.
Click to expand it.
suites/hg/benchmarks/perf-bundle.pbd
+
20
−
1
View file @
68de0f5e
...
...
@@ -6,4 +6,23 @@
[hg-perf-ext]
command="perf::bundle"
cwd="DATA-VARS:mercurial.main-repo-path"
args=["--rev", "last(all(), 40000)", "--type", "none-v2"]
args=["--type", "none-v2"]
[hg-perf-ext.variants.dimensions.revs.last-40000]
default=true
args=["--rev", "last(all(), 40000)"]
[hg-perf-ext.variants.dimensions.revs.last-10000]
args=["--rev", "last(all(), 10000)"]
[hg-perf-ext.variants.dimensions.revs.last-1000]
args=["--rev", "last(all(), 1000)"]
[hg-perf-ext.variants.dimensions.revs.last-100]
args=["--rev", "last(all(), 100)"]
[hg-perf-ext.variants.dimensions.revs.last-10]
args=["--rev", "last(all(), 10)"]
[hg-perf-ext.variants.dimensions.revs.last-1]
args=["--rev", "last(all(), 1)"]
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