4th Cash reading group

3rd edition of CASH paper presentation will be on
February 14 at 10:00
Salle 316

Program (Special session CCPE):

  • Amaury Maillé: Forward to a Promising Future.
    Kiko Fernandez-Reyes, Dave Clarke, Elias Castegren, Huu-Phuc Vo. In Coordination 2018
    http://www.diva-portal.org/smash/record.jsf?pid=diva2%3A1209721&dswid=2208
  • Paul Iannetta:
    Full runtime polyhedral optimizing loop transformations with the generation, instantiation, and scheduling of code-bones
    Juan Manuel Martinez Caamaño, Manuel Selva, Philippe Clauss, Artiom Baloian, Willy Wolff.
    Concurrency and Computation: Practice and Experience 2017, 29(15).
  • Ludovic Henrio:
    JAC: declarative Java concurrency
    Max Haustein and Klaus-Peter Löhr. Concurrency and Computation: Practice and Experience.  2006

3rd Cash reading group meeting

3rd edition of CASH paper presentation will be on
january 18 at 9:30 (coffee at 9:20)
Salle du conseil LIP (394N)

  • Matthieu Mouy will present the PhD of Benjamin Rouxel : Minimising communication costs impact when scheduling real-time applications on multi-core.
  • Julien Braine will present:
    TBA (probably a VMCAI 2019 paper)

Cash reading group (2)

2nd edition of CASH paper presentation will be on
December 14 at 10:00 (coffee at 9:50)
Salle de réunion 316 Centre

  • Laure Gonnord will present the PhD of Mohammed Amer from Université
    de Lyon entitled “Centralized Optimization of the Association in IEEE 802.11 Networks” and supervised by Anthony Busson
    and Isabelle Guérin-Lassous. (nov 2018)
  • Paul Iannetta will present:
    “Analyse de flot de données pour programmes récursifs à l’aide de langages algébriques”, de Albert Cohen, Technique et Science Informatiques 1999

CASH paper presentation 30/11 a 9h30

1st edition of CASH paper presentation will be on
November 30 at 9:30 (coffee at 9:20)
Salle de réunion 316 Centre

  • Ludovic Henrio will present:
    ParT: An Asynchronous Parallel Abstraction for Speculative Pipeline Computations —  Kiko Fernandez-Reyes, Dave Clarke, Daniel S. McCain — Coordination 2016
  • Julien Braine will present:
    What’s Decidable About Arrays?
    Aaron R. Bradley, Zohar Manna, and Henny B. Sipma
    VMCAI 2006

Internship: Advanced study of dataflow explicit futures

Main advisor: Ludovic Henrio
Co-advisors: Matthieu Moy and Christophe Alias

Context:
A future is a place-holder for a value being computed, and we generally say that a future is resolved when the associated value is computed. In existing languages futures are either implicit, if there is no syntactic or typing distinction between futures and non-future values, or explicit when futures are typed by a parametric type and dedicated functions exist for manipulating futures. We defined in [1] a new form of future, named data-flow explicit futures, with specific typing rules that do not use classical parametric types. The new futures allow at the same time code reuse and the possibility for recursive functions to return futures like with implicit futures, and let the programmer declare which values are futures and where synchronisation occurs, like with explicit futures. We prove that the obtained programming model is as expressive as implicit futures but exhibits a different behaviour compared to explicit futures.

Actors and active object languages [2,3,4] are based on asynchronous communications between mono-threaded entities and massively use futures to represent replies to asynchronous messages. We illustrate our proposal on a active object languages but the approach is generalisable to other languages using futures.

Objectives:
The research report [1] describes a type system and a semantics for dataflow explicit futures, the first objective is to provide an implementation for them:

  • either as a modification of the ABS [2,3] language and its type system. This is not too difficult because the ABS framework is not too big and provides the right entry points
  • or as a library: in that case the objective would be to design the object constructs that enforce the same constraints as the type system. At runtime, the synchronisation patterns could reuse the dataflow synchronisation of the ProActive library [4], which would allow for distributed execution.

From this point, several independent directions can be envisioned:

  • explore the usefulness of the newly implemented construct by implementing new examples or revisiting the programs existing in the chosen implementation context
  • experiment on the efficiency of the construct and design optimisations for the execution of programs with dataflow explicit futures. Depending on the implementation solution, different optimisations will be possible, possibly inspired by existing results.
  • prove the correctness of the optimisations based on (extensions of) the existing semantics
  • Formalise the language and prove existing results or the correctness of optimisations in a theorem prover.
  • study formally or in practice the coexistence of dataflow explicit futures and classical explicit futures in the same programming language

The internship subject is quite flexible and can focus either on theoretical aspects or implementation and software engineering contributions. Depending on the orientation of the internship, the initial implementation phase could be realised more or less thoroughly before considering the next steps.

References:
[1] “Data-flow Explicit Futures” — Ludovic Henrio.
https://hal.archives-ouvertes.fr/hal-01758734
[2] The Abstract Behavioral Specification Language: A Tutorial Introduction. Reiner Hähnle. FMCO 2012.
[3] http://docs.abs-models.org/
[4] https://team.inria.fr/scale/software/proactive/