-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement a schedule generator for a QS scheduler.
- Loading branch information
Showing
11 changed files
with
803 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1363,6 +1363,7 @@ public String getcMakeName() { | |
/** | ||
* Supported schedulers. | ||
* @author{Soroush Bateni <[email protected]>} | ||
* @author{Shaokai Lin <[email protected]>} | ||
*/ | ||
public enum SchedulerOption { | ||
NP(false), // Non-preemptive | ||
|
@@ -1373,8 +1374,9 @@ public enum SchedulerOption { | |
Path.of("data_collection.h") | ||
)), | ||
GEDF_NP(true), // Global EDF non-preemptive | ||
GEDF_NP_CI(true); // Global EDF non-preemptive with chain ID | ||
GEDF_NP_CI(true), // Global EDF non-preemptive with chain ID | ||
// PEDF_NP(true); // Partitioned EDF non-preemptive (FIXME: To be re-added in a future PR) | ||
QS(false); // Quasi-static | ||
|
||
/** | ||
* Indicate whether or not the scheduler prioritizes reactions by deadline. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.