mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-25 04:00:24 +00:00
6ab3928a0d
scx_lavd is a BPF scheduler that implements an LAVD (Latency-criticality Aware Virtual Deadline) scheduling algorithm. While LAVD is new and still evolving, its core ideas are 1) measuring how much a task is latency critical and 2) leveraging the task's latency-criticality information in making various scheduling decisions (e.g., task's deadline, time slice, etc.). As the name implies, LAVD is based on the foundation of deadline scheduling. This scheduler consists of the BPF part and the rust part. The BPF part makes all the scheduling decisions; the rust part loads the BPF code and conducts other chores (e.g., printing sampled scheduling decisions).
20 lines
577 B
Markdown
20 lines
577 B
Markdown
RUST SCHEDULERS
|
|
===============
|
|
|
|
# Introduction
|
|
|
|
This directory contains schedulers with user space rust components.
|
|
|
|
The README in each scheduler directory provides some background and describes
|
|
the types of workloads or scenarios they're designed to accommodate. For more
|
|
details on any of these schedulers, please see the header comment in their
|
|
main.rs or \*.bpf.c files.
|
|
|
|
# Schedulers
|
|
|
|
- [scx_layered](scx_layered/README.md)
|
|
- [scx_rusty](scx_rusty/README.md)
|
|
- [scx_rustland](scx_rustland/README.md)
|
|
- [scx_rlfifo](scx_rlfifo/README.md)
|
|
- [scx_lavd](scx_lavd/README.md)
|