Skip to content
Snippets Groups Projects

Make resources explicit in ProcessorState

Merged Maxime Lesourd requested to merge resources_v2 into master
4 unresolved threads

Added unfolding lemmas to basic_facts/ideal Fixed proofs depending on the previous definition using unfolding lemmas

The changes follow the discussion in Paris. @bbb @sbozhko @sophie could you have a look at the changes and tell me if everything looks ok?

Merge request reports

Pipeline #20717 passed

Pipeline passed for 586406c4 on resources_v2

Approval is optional

Merged by Björn BrandenburgBjörn Brandenburg 5 years ago (Oct 31, 2019 5:18pm UTC)

Merge details

  • Changes merged into master with 586406c4 (commits were squashed).
  • Deleted the source branch.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
11 13
12 14 Global Program Instance pstate_instance : ProcessorState Job (option Job) :=
13 15 {
14 scheduled_in j s := s == Some j;
16 scheduled_on j s (r : unit) := s == Some j;
  • Hi Maxime,

    thanks a lot for preparing this MR! This looks generally good to me. We should add a few more comments; this is getting increasingly tricky.

    One concern I have is about the naming of the lemmas: scheduled_inE, service_inE, and service_atE. On the one hand, I get that this naming convention matches what's in ssreflect, so that's good for experienced coders. On the other hand, this makes absolutely no sense to a RT person just getting started with this. At the very least, it will require a comment that explains the naming convention.

    Personally I think it's a bit ugly. I don't mind exists_unitE, which is a very technical thing anyway and "hidden away" in rt.util, but scheduled_inE touches a rather central concept: the definition of an ideal uniprocessor schedule. That's a core definition and something that I'd like to be able to show to newbies without having to explain too much ssreflect baggage. I would prefer to pick some other convention, even if it does not match what ssreflect does (which we don't typically follow anyway).

    How about scheduled_in_def, service_in_def, service_at_def, since these are conceptually replacing the abstract functions with their concrete definitions?

    If that seems not quite precise enough, how about scheduled_in_elim, service_in_elim, service_at_elim, since I presume 'E' stands for "elimination"?

  • Author Developer

    Rebasing on top of master proved to be a lot of pain and I wanted to try using Opaque directives for ProcessorState fields to see how it affects existing proofs.

    I am currently on the process of re-implementing these changes on top of the current master with more comments.

    I am ok with changing the names to something less ssreflect-flavored, *_def sounds good for the existing lemmas.

  • Thanks for doing this! I'm sorry for the rebasing pain... :-/

    Opaque would just forcefully prevent unfolding the type-class instances?

  • mentioned in issue #52 (closed)

  • Author Developer

    Indeed, Opaque blocks computation and unfolding. It is not irreversible in any case as we can locally force computation by specifying the right reduction parameters to simpl and unfolding would be replaced by elimination lemmas which we plan to use anyway. It is also possible to disable this annotation in a development by using Transparent commands. In addition, the definition is still available to Coq and the opaque definition is still definitionally equal to its expanded form (their equality can be proved using reflexivity).

    My goal is to use it as a way to check that we do not rely on the actual definition. Once I have that in place we can discuss the usefulness of the command and removing it shouldn't change anything.

  • That sounds promising to me, thanks for investigating this and for the explanation.

  • Maxime Lesourd added 7 commits

    added 7 commits

    Compare with previous version

  • Maxime Lesourd added 4 commits

    added 4 commits

    • 2b9022e2...00a56667 - 2 commits from branch master
    • 3f265b6d - Make resources explicit in processor state
    • d342d6e9 - Merge branch 'resources_v2' of gitlab.mpi-sws.org:RT-PROOFS/rt-proofs into resources_v2

    Compare with previous version

  • Author Developer

    Okay this should address the basic problems. I think we would need to think some more if we want to make our developments more robust against such changes but I don't see a clear strategy for now. I have spotted a few things that we could improve while going over the impacted files and I will add these notes as issues.

  • Author Developer

    I did not give a resource aware definition of service in behavior/schedule.v. Do we want to add it now?

  • Thanks for the update!

    I did not give a resource aware definition of service in behavior/schedule.v. Do we want to add it now?

    I would say no, let's add it when and if we actually need it. I don't foresee a need to reason about per-core service any time soon.

    We'll need the per-core view primarily to define work conservation for multiprocessors, but let's do that once this MR has gone it.

  • Maxime Lesourd mentioned in issue #56

    mentioned in issue #56

  • Author Developer

    Then you can merge this if everyone is ok.

  • 31 34 unit_service_proc_model (processor_state Job).
    32 35 Proof.
    33 36 move=> j s.
    34 rewrite /service_in /pstate_instance.
    35 by elim: (s == Some j).
    37 rewrite /service_in/=/nat_of_bool.
    38 by case:ifP.
    36 39 Qed.
    37 40
    38 End ScheduleClass.
    41 Lemma ideal_proc_model_scheduled_in_def (j : Job) s :
  • I'll look at it tomorrow, sorry for slowing down the process.

    Cheers, Sophie

  • No worries, we can certainly wait until tomorrow.

  • added 2 commits

    • bbefcd16 - 1 commit from branch master
    • 481471a1 - Make resources explicit in processor state

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • Björn Brandenburg mentioned in merge request !57 (merged)

    mentioned in merge request !57 (merged)

  • Björn Brandenburg mentioned in merge request !35 (closed)

    mentioned in merge request !35 (closed)

  • Maxime Lesourd added 3 commits

    added 3 commits

    • e8040e68 - rename Resource -> Core and add documentation
    • 0bec2e15 - rename basic structure lemmas about ideal schedules
    • f63ff2ca - documentation improvements

    Compare with previous version

  • I've finally managed to look at this MR. This looks good to me, thanks a lot Maxime and Björn!

    Regarding the naming convention: considering we use the term ProcessorState at the moment, it makes sense to use the term Core rather than Resource. I haven't found a good alternative to that so far, so let's leave it at that until it becomes problematic.

  • added 1 commit

    • 586406c4 - update comment: Resource -> Core

    Compare with previous version

  • I'll merge this now. This is a big step forward — thanks a lot everyone!

  • Please register or sign in to reply
    Loading