Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROSA - Formally Proven Schedulability Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lasse Blaauwbroek
PROSA - Formally Proven Schedulability Analysis
Commits
4b4a1336
Commit
4b4a1336
authored
9 years ago
by
Felipe Cerqueira
Browse files
Options
Downloads
Patches
Plain Diff
Omit type from definition of backlogged
parent
4134d178
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
model/basic/platform.v
+2
-2
2 additions, 2 deletions
model/basic/platform.v
model/jitter/platform.v
+2
-2
2 additions, 2 deletions
model/jitter/platform.v
with
4 additions
and
4 deletions
model/basic/platform.v
+
2
−
2
View file @
4b4a1336
...
@@ -32,7 +32,7 @@ Module Platform.
...
@@ -32,7 +32,7 @@ Module Platform.
(* A scheduler is work-conserving iff when a job j is backlogged,
(* A scheduler is work-conserving iff when a job j is backlogged,
all processors are busy with other jobs. *)
all processors are busy with other jobs. *)
Definition
work_conserving
:=
Definition
work_conserving
:=
forall
(
j
:
JobIn
arr_seq
)
t
,
forall
j
t
,
backlogged
job_cost
sched
j
t
->
backlogged
job_cost
sched
j
t
->
forall
cpu
,
exists
j_other
,
forall
cpu
,
exists
j_other
,
scheduled_on
sched
j_other
cpu
t
.
scheduled_on
sched
j_other
cpu
t
.
...
@@ -40,7 +40,7 @@ Module Platform.
...
@@ -40,7 +40,7 @@ Module Platform.
(* We also provide an alternative, equivalent definition of work-conserving
(* We also provide an alternative, equivalent definition of work-conserving
based on counting the number of scheduled jobs. *)
based on counting the number of scheduled jobs. *)
Definition
work_conserving_count
:=
Definition
work_conserving_count
:=
forall
(
j
:
JobIn
arr_seq
)
t
,
forall
j
t
,
backlogged
job_cost
sched
j
t
->
backlogged
job_cost
sched
j
t
->
size
(
jobs_scheduled_at
sched
t
)
=
num_cpus
.
size
(
jobs_scheduled_at
sched
t
)
=
num_cpus
.
...
...
This diff is collapsed.
Click to expand it.
model/jitter/platform.v
+
2
−
2
View file @
4b4a1336
...
@@ -34,7 +34,7 @@ Module Platform.
...
@@ -34,7 +34,7 @@ Module Platform.
all processors are busy with other jobs.
all processors are busy with other jobs.
NOTE: backlogged means that jitter has already passed. *)
NOTE: backlogged means that jitter has already passed. *)
Definition
work_conserving
:=
Definition
work_conserving
:=
forall
(
j
:
JobIn
arr_seq
)
t
,
forall
j
t
,
backlogged
job_cost
job_jitter
sched
j
t
->
backlogged
job_cost
job_jitter
sched
j
t
->
forall
cpu
,
exists
j_other
,
forall
cpu
,
exists
j_other
,
scheduled_on
sched
j_other
cpu
t
.
scheduled_on
sched
j_other
cpu
t
.
...
@@ -42,7 +42,7 @@ Module Platform.
...
@@ -42,7 +42,7 @@ Module Platform.
(* We also provide an alternative, equivalent definition of work-conserving
(* We also provide an alternative, equivalent definition of work-conserving
based on counting the number of scheduled jobs. *)
based on counting the number of scheduled jobs. *)
Definition
work_conserving_count
:=
Definition
work_conserving_count
:=
forall
(
j
:
JobIn
arr_seq
)
t
,
forall
j
t
,
backlogged
job_cost
job_jitter
sched
j
t
->
backlogged
job_cost
job_jitter
sched
j
t
->
size
(
jobs_scheduled_at
sched
t
)
=
num_cpus
.
size
(
jobs_scheduled_at
sched
t
)
=
num_cpus
.
...
...
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