Schedule-abstraction graph (SAG) is a reachability-based response-time analysis for real-time systems.
It can be used to determine analytically whether time-critical tasks meet their deadlines according to a WC-JLFP-NP scheduler.
This is the unofficial implementation of the SAG in Python. You can visit the official repository here. This is still WIP (Work-in-Progress) - you can run the anaysis but it doesn't scale because path merging is not implemented yet. The implemented SAG follows the following paper:
- M. Nasri, G. Nelissen, and B. Brandenburg, “Response-Time Analysis of Limited-Preemptive Parallel DAG Tasks under Global Scheduling”, Proceedings of the 31st Euromicro Conference on Real-Time Systems (ECRTS 2019), pp. 21:1–21:23, July 2019.
- Install the package with:
pip install sagpy
- Use the
sagpyCommand-Line Interface (CLI) to run the SAG analysis on a set of jobs from a csv file. You must select what SAG algorithm to use. For now there are only 2:ecrts2019(the one presented in the paper above) andros(based on ecrts2019, but adapted to analyze ROS2's executor):
sagpy overlapping_release_intervals.csv --algorithm ecrts2019
- Output files are by default generated in the
~/USER/.sagpyfolder.
By default the script generates a csv
containing the Best Response times (BR) and the Worst Response times (WR) for all given jobs. Moreover, a png with
the visual representation of the SAG is generated as well. Optionally, you can add --drawio to generate a drawio
file with a job release plot, so you can better visualize the interference between jobs. Also optionally, the SAG
can be serialized with pickle and saved for later use, e.g. making ground truths for testing.
- Clone the repository.
git clone https://github.com/RaduLucianR/sag-py.git
- Change directory in the root folder of the repository.
cd sag-py
- Install the package locally. This allows you to run the scripts like they'd be run by the OS. Even if you make changes in the scripts, these changes will be taken into account when Python runs the script again after install.
pip install -e . --break-system-package
- Run the CLI script
sagpyon acsvfile that contains a set of jobs:
python3 -m src.sagpy.sagpy examples/input_examples/job_sets/overlapping_release_intervals.csv --algorithm ecrts2019
- Output files are by default generated in the
~/USER/.sagpyfolder. - Run the tests running
pytestfrom the root directiory:
pytest