Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Expetator
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
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
sepia-pub
Expetator
Commits
015e40dc
Commit
015e40dc
authored
8 months ago
by
Georges Da Costa
Browse files
Options
Downloads
Patches
Plain Diff
new version of read the docs
parent
a262654d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/expetator.monitors.rst
+29
-28
29 additions, 28 deletions
docs/expetator.monitors.rst
docs/requirements.txt
+1
-0
1 addition, 0 deletions
docs/requirements.txt
with
30 additions
and
28 deletions
docs/expetator.monitors.rst
+
29
−
28
View file @
015e40dc
...
...
@@ -12,23 +12,24 @@ kwollect.Power(metric=kwollect.get_g5k_target_metric())
```
Example of use of KWollect with results in /tmp/demo_power_XXX and power measures in /tmp/demo_power_XXX_power
```
#! /usr/bin/python3
from expetator.benchmarks import SleepBench
from expetator.monitors import kwollect
import expetator.experiment as experiment
.. code-block:: python
MONITORS = [ kwollect.Power(metric=kwollect.get_g5k_target_metric())
]
BENCHMARKS = [SleepBench(default_time=10)]
#! /usr/bin/python3
experiment.run_experiment('/tmp/demo_power',
benchmarks = BENCHMARKS,
monitors = MONITORS,
)
```
from expetator.benchmarks import SleepBench
from expetator.monitors import kwollect
import expetator.experiment as experiment
MONITORS = [ kwollect.Power(metric=kwollect.get_g5k_target_metric())
]
BENCHMARKS = [SleepBench(default_time=10)]
experiment.run_experiment('/tmp/demo_power',
benchmarks = BENCHMARKS,
monitors = MONITORS,
)
.. autoclass:: expetator.monitors.lperf.Lperf
...
...
@@ -36,23 +37,23 @@ experiment.run_experiment('/tmp/demo_power',
Example of use of MojitO/S with RAPL, system load, and ethernet network. With results in /tmp/demo_moj_XXXX and MojitO/S in /tmp/demo_moj_XXXX_mojitos directory
```
#! /usr/bin/python3
.. code-block:: python
from expetator.benchmarks import SleepBench
from expetator.monitors import mojitos
#! /usr/bin/python3
import expetator.experiment as experiment
from expetator.benchmarks import SleepBench
from expetator.monitors import mojitos
MONITORS = [ mojitos.Mojitos(sensor_set = {'dram0', 'load', 'rxp'})
]
BENCHMARKS = [SleepBench(default_time=10)]
import expetator.experiment as experiment
MONITORS = [ mojitos.Mojitos(sensor_set = {'dram0', 'load', 'rxp'})
]
BENCHMARKS = [SleepBench(default_time=10)]
experiment.run_experiment('/tmp/demo_moj',
benchmarks = BENCHMARKS,
monitors = MONITORS,
)
```
experiment.run_experiment('/tmp/demo_moj',
benchmarks = BENCHMARKS,
monitors = MONITORS,
)
.. autoclass:: expetator.monitors.powergpu.Power
...
...
This diff is collapsed.
Click to expand it.
docs/requirements.txt
+
1
−
0
View file @
015e40dc
myst_parser
execo
requests
sphinx-rtd-theme
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