https://github.com/oar-team/evalys
Infrastructure Performance Evaluation Toolkit
https://github.com/oar-team/evalys
batsim scheduling visualization workload
Last synced: 4 months ago
JSON representation
Infrastructure Performance Evaluation Toolkit
- Host: GitHub
- URL: https://github.com/oar-team/evalys
- Owner: oar-team
- License: other
- Created: 2015-10-01T21:33:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T16:04:54.000Z (over 2 years ago)
- Last Synced: 2025-08-29T22:46:59.120Z (9 months ago)
- Topics: batsim, scheduling, visualization, workload
- Language: Python
- Size: 6.61 MB
- Stars: 8
- Watchers: 20
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
===============================
Evalys - Overview
===============================
.. image:: https://img.shields.io/pypi/v/evalys.svg
:target: https://pypi.python.org/pypi/evalys
"Infrastructure Performance Evaluation Toolkit"
It is a data analytics library made to load, compute, and plot data from
job scheduling and resource management traces. It allows scientists and
engineers to extract useful data and visualize it interactively or in an
exported file.
* Free software: BSD license
* Documentation: https://evalys.readthedocs.org.
Features
--------
* Load and all `Batsim `_ outputs files
+ Compute and plot free slots
+ Simple Gantt visualisation
+ Compute utilisation / queue
+ Compute fragmentation
+ Plot energy and machine state
* Load SWF workload files from `Parallel Workloads Archive
`_
+ Compute standard scheduling metrics
+ Show job details
+ Extract periods with a given mean utilisation
Examples
--------
You can get a simple example directly by running ipython and discover the
evalys interface. For example::
from evalys.jobset import JobSet
import matplotlib.pyplot as plt
js = JobSet.from_csv("evalys/examples/jobs.csv")
js.plot(with_details=True)
plt.show()
This also works for SWF files but the Gantt chart is not provided because
job placement information is not provided in this format.
You can find a lot of examples in the `./examples` directory.
Gallery
-------
.. image:: ./docs/_static/out_jobs_example.png
.. image:: ./docs/_static/jobset_plot.png
.. image:: ./docs/_static/gantt_comparison.svg
.. image:: ./docs/_static/gantt_off_mstates.svg