Library prosa.results.edf.rta.bounded_pi
Require Export prosa.analysis.facts.edf.
Require Export prosa.model.schedule.priority_driven.
Require Export prosa.analysis.facts.busy_interval.carry_in.
Require Export prosa.analysis.definitions.schedulability.
Require Import prosa.model.priority.edf.
Require Import prosa.model.task.absolute_deadline.
Require Import prosa.analysis.abstract.ideal_jlfp_rta.
From mathcomp Require Import ssreflect ssrbool eqtype ssrnat seq path fintype bigop.
Require Export prosa.model.schedule.priority_driven.
Require Export prosa.analysis.facts.busy_interval.carry_in.
Require Export prosa.analysis.definitions.schedulability.
Require Import prosa.model.priority.edf.
Require Import prosa.model.task.absolute_deadline.
Require Import prosa.analysis.abstract.ideal_jlfp_rta.
From mathcomp Require Import ssreflect ssrbool eqtype ssrnat seq path fintype bigop.
Throughout this file, we assume ideal uni-processor schedules.
Throughout this file, we assume the basic (i.e., Liu & Layland) readiness model.
Abstract RTA for EDF-schedulers with Bounded Priority Inversion
In this module we instantiate the Abstract Response-Time analysis (aRTA) to EDF-schedulers for ideal uni-processor model of real-time tasks with arbitrary arrival models.
Consider any type of tasks ...
Context {Task : TaskType}.
Context `{TaskCost Task}.
Context `{TaskDeadline Task}.
Context `{TaskRunToCompletionThreshold Task}.
Context `{TaskCost Task}.
Context `{TaskDeadline Task}.
Context `{TaskRunToCompletionThreshold Task}.
... and any type of jobs associated with these tasks.
Context {Job : JobType}.
Context `{JobTask Job Task}.
Context `{JobArrival Job}.
Context `{JobCost Job}.
Context `{JobPreemptable Job}.
Context `{JobTask Job Task}.
Context `{JobArrival Job}.
Context `{JobCost Job}.
Context `{JobPreemptable Job}.
For clarity, let's denote the relative deadline of a task as D.
Consider the EDF policy that indicates a higher-or-equal priority relation.
Note that we do not relate the EDF policy with the scheduler. However, we
define functions for Interference and Interfering Workload that actively use
the concept of priorities.
Consider any arrival sequence with consistent, non-duplicate arrivals.
Variable arr_seq : arrival_sequence Job.
Hypothesis H_arrival_times_are_consistent : consistent_arrival_times arr_seq.
Hypothesis H_arr_seq_is_a_set : arrival_sequence_uniq arr_seq.
Hypothesis H_arrival_times_are_consistent : consistent_arrival_times arr_seq.
Hypothesis H_arr_seq_is_a_set : arrival_sequence_uniq arr_seq.
Next, consider any ideal uniprocessor schedule of this arrival sequence ...
Variable sched : schedule (ideal.processor_state Job).
Hypothesis H_jobs_come_from_arrival_sequence:
jobs_come_from_arrival_sequence sched arr_seq.
Hypothesis H_jobs_come_from_arrival_sequence:
jobs_come_from_arrival_sequence sched arr_seq.
... where jobs do not execute before their arrival or after completion.
Hypothesis H_jobs_must_arrive_to_execute : jobs_must_arrive_to_execute sched.
Hypothesis H_completed_jobs_dont_execute : completed_jobs_dont_execute sched.
Hypothesis H_completed_jobs_dont_execute : completed_jobs_dont_execute sched.
Note that we differentiate between abstract and
classical notions of work conserving schedule.
Let work_conserving_ab := definitions.work_conserving arr_seq sched.
Let work_conserving_cl := work_conserving.work_conserving arr_seq sched.
Let work_conserving_cl := work_conserving.work_conserving arr_seq sched.
We assume that the schedule is a work-conserving schedule
in the classical sense, and later prove that the hypothesis
about abstract work-conservation also holds.
Assume we have sequential tasks, i.e, jobs from the
same task execute in the order of their arrival.
Assume that a job cost cannot be larger than a task cost.
Consider an arbitrary task set ts.
Next, we assume that all jobs come from the task set.
Let max_arrivals be a family of valid arrival curves, i.e., for any task tsk in ts
max_arrival tsk is (1) an arrival bound of tsk, and (2) it is a monotonic function
that equals 0 for the empty interval delta = 0.
Context `{MaxArrivals Task}.
Hypothesis H_valid_arrival_curve : valid_taskset_arrival_curve ts max_arrivals.
Hypothesis H_is_arrival_curve : taskset_respects_max_arrivals arr_seq ts.
Hypothesis H_valid_arrival_curve : valid_taskset_arrival_curve ts max_arrivals.
Hypothesis H_is_arrival_curve : taskset_respects_max_arrivals arr_seq ts.
Let tsk be any task in ts that is to be analyzed.
Consider a valid preemption model...
...and a valid task run-to-completion threshold function. That is,
task_run_to_completion_threshold tsk is (1) no bigger than tsk's
cost, (2) for any job of task tsk job_run_to_completion_threshold
is bounded by task_run_to_completion_threshold.
We introduce rbf as an abbreviation of the task request bound function,
which is defined as task_cost(T) × max_arrivals(T,Δ) for some task T.
Using the sum of individual request bound functions, we define the request bound
function of all tasks (total request bound function).
For simplicity, let's define some local names.
Let response_time_bounded_by := task_response_time_bound arr_seq sched.
Let number_of_task_arrivals := number_of_task_arrivals arr_seq.
Let number_of_task_arrivals := number_of_task_arrivals arr_seq.
Assume that there exists a constant priority_inversion_bound that bounds
the length of any priority inversion experienced by any job of tsk.
Since we analyze only task tsk, we ignore the lengths of priority
inversions incurred by any other tasks.
Variable priority_inversion_bound : duration.
Hypothesis H_priority_inversion_is_bounded:
priority_inversion_is_bounded_by
arr_seq sched tsk priority_inversion_bound.
Hypothesis H_priority_inversion_is_bounded:
priority_inversion_is_bounded_by
arr_seq sched tsk priority_inversion_bound.
Let L be any positive fixed point of the busy interval recurrence.
Next, we define an upper bound on interfering workload received from jobs
of other tasks with higher-than-or-equal priority.
Let bound_on_total_hep_workload (A Δ : duration) :=
\sum_(tsk_o <- ts | tsk_o != tsk)
rbf tsk_o (minn ((A + ε) + D tsk - D tsk_o) Δ).
\sum_(tsk_o <- ts | tsk_o != tsk)
rbf tsk_o (minn ((A + ε) + D tsk - D tsk_o) Δ).
To reduce the time complexity of the analysis, we introduce the notion of search space for EDF.
Intuitively, this corresponds to all "interesting" arrival offsets that the job under
analysis might have with regard to the beginning of its busy-window.
In case of search space for EDF we ask whether task_rbf A ≠ task_rbf (A + ε)...
...or there exists a task tsko from ts such that tsko ≠ tsk and
rbf(tsko, A + D tsk - D tsko) ≠ rbf(tsko, A + ε + D tsk - D tsko).
Note that we use a slightly uncommon notation has (λ tsko ⇒ P tskₒ) ts
which can be interpreted as follows: task-set ts contains a task tsko such
that a predicate P holds for tsko.
Definition bound_on_total_hep_workload_changes_at A :=
has (fun tsko ⇒
(tsk != tsko)
&& (rbf tsko (A + D tsk - D tsko)
!= rbf tsko ((A + ε) + D tsk - D tsko))) ts.
has (fun tsko ⇒
(tsk != tsko)
&& (rbf tsko (A + D tsk - D tsko)
!= rbf tsko ((A + ε) + D tsk - D tsko))) ts.
The final search space for EDF is a set of offsets that are less than L
and where task_rbf or bound_on_total_hep_workload changes.
Let is_in_search_space (A : duration) :=
(A < L) && (task_rbf_changes_at A || bound_on_total_hep_workload_changes_at A).
(A < L) && (task_rbf_changes_at A || bound_on_total_hep_workload_changes_at A).
Let R be a value that upper-bounds the solution of each response-time recurrence,
i.e., for any relative arrival time A in the search space, there exists a corresponding
solution F such that F + (task cost - task lock-in service) ≤ R.
Variable R : duration.
Hypothesis H_R_is_maximum:
∀ (A : duration),
is_in_search_space A →
∃ (F : duration),
A + F = priority_inversion_bound
+ (task_rbf (A + ε) - (task_cost tsk - task_run_to_completion_threshold tsk))
+ bound_on_total_hep_workload A (A + F) ∧
F + (task_cost tsk - task_run_to_completion_threshold tsk) ≤ R.
Hypothesis H_R_is_maximum:
∀ (A : duration),
is_in_search_space A →
∃ (F : duration),
A + F = priority_inversion_bound
+ (task_rbf (A + ε) - (task_cost tsk - task_run_to_completion_threshold tsk))
+ bound_on_total_hep_workload A (A + F) ∧
F + (task_cost tsk - task_run_to_completion_threshold tsk) ≤ R.
To use the theorem uniprocessor_response_time_bound_seq from the Abstract RTA module,
we need to specify functions of interference, interfering workload and IBF.
Instantiation of Interference We say that job j incurs interference at time t iff it cannot execute due to
a higher-or-equal-priority job being scheduled, or if it incurs a priority inversion.
Instantiation of Interfering Workload The interfering workload, in turn, is defined as the sum of the priority inversion
function and interfering workload of jobs with higher or equal priority.
Let interfering_workload (j : Job) (t : instant) :=
ideal_jlfp_rta.interfering_workload arr_seq sched j t.
ideal_jlfp_rta.interfering_workload arr_seq sched j t.
Finally, we define the interference bound function as the sum of the priority
interference bound and the higher-or-equal-priority workload.
Filling Out Hypothesis Of Abstract RTA Theorem
In this section we prove that all hypotheses necessary to use the abstract theorem are satisfied.
First, we prove that in the instantiation of interference and interfering workload,
we really take into account everything that can interfere with tsk's jobs, and thus,
the scheduler satisfies the abstract notion of work conserving schedule.
Lemma instantiated_i_and_w_are_coherent_with_schedule:
work_conserving_ab tsk interference interfering_workload.
work_conserving_ab tsk interference interfering_workload.
Next, we prove that the interference and interfering workload
functions are consistent with sequential tasks.
Lemma instantiated_interference_and_workload_consistent_with_sequential_tasks:
interference_and_workload_consistent_with_sequential_tasks
arr_seq sched tsk interference interfering_workload.
interference_and_workload_consistent_with_sequential_tasks
arr_seq sched tsk interference interfering_workload.
Recall that L is assumed to be a fixed point of the busy interval recurrence. Thanks to
this fact, we can prove that every busy interval (according to the concrete definition)
is bounded. In addition, we know that the conventional concept of busy interval and the
one obtained from the abstract definition (with the interference and interfering
workload) coincide. Thus, it follows that any busy interval (in the abstract sense)
is bounded.
Lemma instantiated_busy_intervals_are_bounded:
busy_intervals_are_bounded_by arr_seq sched tsk interference interfering_workload L.
busy_intervals_are_bounded_by arr_seq sched tsk interference interfering_workload L.
Next, we prove that IBF is indeed an interference bound.
We show that task_interference_is_bounded_by is bounded by IBF by
constructing a sequence of inequalities.
Section Inequalities.
(* Consider an arbitrary job j of tsk. *)
Variable j : Job.
Hypothesis H_j_arrives : arrives_in arr_seq j.
Hypothesis H_job_of_tsk : job_task j = tsk.
Hypothesis H_job_cost_positive: job_cost_positive j.
(* Consider an arbitrary job j of tsk. *)
Variable j : Job.
Hypothesis H_j_arrives : arrives_in arr_seq j.
Hypothesis H_job_of_tsk : job_task j = tsk.
Hypothesis H_job_cost_positive: job_cost_positive j.
Variable t1 t2 : duration.
Hypothesis H_busy_interval :
definitions.busy_interval sched interference interfering_workload j t1 t2.
Hypothesis H_busy_interval :
definitions.busy_interval sched interference interfering_workload j t1 t2.
Let's define A as a relative arrival time of job j (with respect to time t1).
Consider an arbitrary shift Δ inside the busy interval ...
Next, we define two predicates on jobs by extending EDF-priority relation.
Predicate EDF_from tsk holds true for any job jo of
task tsk such that job_deadline jo ≤ job_deadline j.
Predicate EDF_not_from tsk holds true for any job jo
such that job_deadline jo ≤ job_deadline j and job_task jo ≠ tsk.
Recall that IBF(A, R) := priority_inversion_bound +
bound_on_total_hep_workload(A, R). The fact that
priority_inversion_bound bounds cumulative priority inversion
follows from assumption H_priority_inversion_is_bounded.
Lemma cumulative_priority_inversion_is_bounded:
cumulative_priority_inversion sched j t1 (t1 + Δ) ≤ priority_inversion_bound.
cumulative_priority_inversion sched j t1 (t1 + Δ) ≤ priority_inversion_bound.
Next, we show that bound_on_total_hep_workload(A, R) bounds
interference from jobs with higher-or-equal priority.
From lemma
instantiated_cumulative_interference_of_hep_tasks_equal_total_interference_of_hep_tasks
it follows that cumulative interference from jobs with
higher-or-equal priority from other tasks is equal to the
total service of jobs with higher-or-equal priority from
other tasks. Which in turn means that cumulative
interference is bounded by service.
Lemma cumulative_interference_is_bounded_by_total_service:
cumulative_interference_from_hep_jobs_from_other_tasks sched j t1 (t1 + Δ)
≤ service_of_jobs sched (EDF_not_from tsk) jobs t1 (t1 + Δ).
cumulative_interference_from_hep_jobs_from_other_tasks sched j t1 (t1 + Δ)
≤ service_of_jobs sched (EDF_not_from tsk) jobs t1 (t1 + Δ).
By lemma service_of_jobs_le_workload, the total
service of jobs with higher-or-equal priority from other
tasks is at most the total workload of jobs with
higher-or-equal priority from other tasks.
Lemma total_service_is_bounded_by_total_workload:
service_of_jobs sched (EDF_not_from tsk) jobs t1 (t1 + Δ)
≤ workload_of_jobs (EDF_not_from tsk) jobs.
service_of_jobs sched (EDF_not_from tsk) jobs t1 (t1 + Δ)
≤ workload_of_jobs (EDF_not_from tsk) jobs.
Next, we reorder summation. So the total workload of jobs
with higher-or-equal priority from other tasks is equal to
the sum over all tasks tsk_o that are to equal to task
tsk of workload of jobs with higher-or-equal priority
task tsk_o.
Lemma reorder_summation:
workload_of_jobs (EDF_not_from tsk) jobs
≤ \sum_(tsk_o <- ts | tsk_o != tsk) workload_of_jobs (EDF_from tsk_o) jobs.
workload_of_jobs (EDF_not_from tsk) jobs
≤ \sum_(tsk_o <- ts | tsk_o != tsk) workload_of_jobs (EDF_from tsk_o) jobs.
Then by definition of rbf, the total workload of jobs
with higher-or-equal priority from task tsk_o is
bounded rbf(tsk_o, Δ).
Important step. Next we prove that the total workload of jobs with
higher-or-equal priority from task tsk_o over time
interval t1, t1 + Δ is bounded by workload over time
interval t1, t1 + A + ε + D tsk - D tsk_o.
The intuition behind this inequality is that jobs which arrive
after time instant t1 + A + ε + D tsk - D tsk_o has smaller priority than job j due to
the term D tsk - D tsk_o.
Lemma total_workload_shorten_range:
workload_of_jobs (EDF_from tsk_o) (arrivals_between arr_seq t1 (t1 + Δ))
≤ workload_of_jobs (EDF_from tsk_o) (arrivals_between arr_seq t1 (t1 + (A + ε + D tsk - D tsk_o))).
workload_of_jobs (EDF_from tsk_o) (arrivals_between arr_seq t1 (t1 + Δ))
≤ workload_of_jobs (EDF_from tsk_o) (arrivals_between arr_seq t1 (t1 + (A + ε + D tsk - D tsk_o))).
And similarly to the previous case, by definition of
rbf, the total workload of jobs with higher-or-equal
priority from task tsk_o is bounded rbf(tsk_o, Δ).
Lemma workload_le_rbf':
workload_of_jobs (EDF_from tsk_o) (arrivals_between arr_seq t1 (t1 + (A + ε + D tsk - D tsk_o)))
≤ rbf tsk_o (A + ε + D tsk - D tsk_o).
End Case2.
workload_of_jobs (EDF_from tsk_o) (arrivals_between arr_seq t1 (t1 + (A + ε + D tsk - D tsk_o)))
≤ rbf tsk_o (A + ε + D tsk - D tsk_o).
End Case2.
By combining case 1 and case 2 we prove that total
workload of tasks is at most bound_on_total_hep_workload(A, Δ).
Corollary sum_of_workloads_is_at_most_bound_on_total_hep_workload :
\sum_(tsk_o <- ts | tsk_o != tsk) workload_of_jobs (EDF_from tsk_o) jobs
≤ bound_on_total_hep_workload A Δ.
End Inequalities.
\sum_(tsk_o <- ts | tsk_o != tsk) workload_of_jobs (EDF_from tsk_o) jobs
≤ bound_on_total_hep_workload A Δ.
End Inequalities.
Recall that in module abstract_seq_RTA hypothesis
task_interference_is_bounded_by expects to receive a function
that maps some task t, the relative arrival time of a job j of
task t, and the length of the interval to the maximum amount
of interference.
However, in this module we analyze only one task -- tsk,
therefore it is “hard-coded” inside the interference bound
function IBF. Therefore, in order for the IBF signature to
match the required signature in module abstract_seq_RTA, we
wrap the IBF function in a function that accepts, but simply
ignores the task.
Corollary instantiated_task_interference_is_bounded:
task_interference_is_bounded_by
arr_seq sched tsk interference interfering_workload (fun tsk A R ⇒ IBF A R).
End TaskInterferenceIsBoundedByIBF.
task_interference_is_bounded_by
arr_seq sched tsk interference interfering_workload (fun tsk A R ⇒ IBF A R).
End TaskInterferenceIsBoundedByIBF.
Finally, we show that there exists a solution for the response-time recurrence.
Consider any job j of tsk.
Variable j : Job.
Hypothesis H_j_arrives : arrives_in arr_seq j.
Hypothesis H_job_of_tsk : job_of_task tsk j.
Hypothesis H_job_cost_positive : job_cost_positive j.
Hypothesis H_j_arrives : arrives_in arr_seq j.
Hypothesis H_job_of_tsk : job_of_task tsk j.
Hypothesis H_job_cost_positive : job_cost_positive j.
Given any job j of task tsk that arrives exactly A units after the beginning of
the busy interval, the bound of the total interference incurred by j within an
interval of length Δ is equal to task_rbf (A + ε) - task_cost tsk + IBF(A, Δ).
Next, consider any A from the search space (in abstract sense).
Variable A : duration.
Hypothesis H_A_is_in_abstract_search_space:
search_space.is_in_search_space tsk L total_interference_bound A.
Hypothesis H_A_is_in_abstract_search_space:
search_space.is_in_search_space tsk L total_interference_bound A.
We prove that A is also in the concrete search space.
Then, there exists solution for response-time recurrence (in the abstract sense).
Corollary correct_search_space:
∃ F,
A + F = task_rbf (A + ε) - (task_cost tsk - task_run_to_completion_threshold tsk) + IBF A (A + F) ∧
F + (task_cost tsk - task_run_to_completion_threshold tsk) ≤ R.
End SolutionOfResponseTimeReccurenceExists.
End FillingOutHypothesesOfAbstractRTATheorem.
∃ F,
A + F = task_rbf (A + ε) - (task_cost tsk - task_run_to_completion_threshold tsk) + IBF A (A + F) ∧
F + (task_cost tsk - task_run_to_completion_threshold tsk) ≤ R.
End SolutionOfResponseTimeReccurenceExists.
End FillingOutHypothesesOfAbstractRTATheorem.