880 likes | 1.03k Views
Actors, actor composition, and an actor language describing the semantics of (some) visual languages. Jörn W. Janneck The Ptolemy Group University of California at Berkeley. credits. Johan Eker, Lund University language design, C code generation Yang Zhao, UCB action-level scheduling
E N D
Actors, actor composition, and an actor language describing the semantics of (some) visual languages Jörn W. Janneck The Ptolemy GroupUniversity of California at Berkeley
credits Johan Eker, Lund University • language design, C code generation Yang Zhao, UCB • action-level scheduling Chris Chang, UCB • type system, program transformations Lars Wernli, ETH Zurich • Java code generation, generic code generation infrastructure
What's an actor? • entity that has ... • state • ports • ... and is defined by ... • outputs in response to inputs • state transition in response to inputs • data packaged into tokens
42 41 ‘P’ 42 What's an actor? parameters input ports output ports 99 12 ‘\’ 1 3 N FIRE Actor tokens tokens ‘A’ ‘L’ Data ‘C’ state Actorsdecoupledataandcontrol
45 42 2 4 41 ‘P’ ‘L’ ‘A’ ‘C’ What's an actor? parameters input ports output ports 99 12 ‘\’ 1 N Actor token tokens Data state 45 Actorsdecoupledataandcontrol
A C B networks of actors • actors are usually composed with other actors into networks • conceptually concurrent • What does a network mean? • model of computation (coordination model) • model of computation defines • meaning of connections • 'sequence' of actor firings • state transition
actors and visual languages • actor networks are often represented using visual languages • actor models of computation natural match for (many) VL semantics
specifying VL semantics • semantics of an actor • define an actor syntax first! • then describe what it means • semantics of an actor composition • again, syntax first • composition operator actors + network actor • the composition operator is the model of computation!
semantics of actor compositions • the operational approach • describe a generic abstract machine • actors are 'machines' that interact with their generic environment • a special instance of that environment is a model of computation • examples: Ptolemy, Metropolis • two issues: • generic machine needs to anticipate the facilities needed by models of computation • actors become specific to models of computation
2 3 operational actor interpretation • examples: • the Kahn process story • the CSP story Adder 1 A S B
semantics of actor composition • the language approach • consider an actor description a constraint on all possible behaviors • models of computation compose those descriptions • they may interpret an actor specification • thereby adding constraints to it, specializing it actor Adder () Double A, Double B ==> Double S: action [a], [b] ==> [a + b] end end
What is CAL? CAL is a (textual) language for writing actors. • supports a variety of platforms and models of computation • by supporting a variety of interpretations • by proserving lots of static structure in the actor description • token rates • dependencies • designed as a domain-specific language • it is intentionally incomplete • part of the Ptolemy project
a simple example actor A (Double k) Double Input1, Double Input2 ==> Double Output: action [a], [b] ==> [k * (a + b)] end end
another example actor B () Double Input ==> Double Output: Integer n := 0; Double sum := 0; action [a] ==> [sum / n] do n := n + 1; sum := sum + a; end end
the CAL vision • provide flexible platform for expressing a wide range of actor functionality • generate (operational) implementations for specific platforms • Ptolemy/Java, C, Moses, ... • bridge between modeling environments and implementation • serve as platform for composing actors • express models of computation as syntactic transformations in CAL • this makes models of computation portable to any CAL platform! • profiles for portability
multiple actions, action conditions actor C () Double Input ==> Double Output: action [a] ==> [a] guard a >= 0 end action [a] ==> [-a] guard a < 0 end end actor D () Double Input ==> Double Output: action [a] ==> [abs(a)] end end
nondeterminism • More than one action may be firable. • Caltrop does not specify how this is resolved. • It allows deterministic as well as non-deterministic implementations. • Often, determinism can be ascertained statically. actor E () Double Input ==> Double Output: action [a] ==> [a] end action [a] ==> [-a] end end
port patterns • examples • [a, b, c] • [a, b, c | s] • [| s] actor PairwiseSwap [T] () T Input ==> T Output: action[a, b]==> [b, a] end end
repeated patterns actor ReversePrefix [T] (Integer n) T Input ==> T Output: action [a] repeat n==> [reverse(a)] repeat nend end
multiports, channel selectors actor Switch [T] () multi T Data, Integer Select ==> T Output: action [a] i, [i] ==> [a] end end
port tags actor Switch [T] () multi T Data, Integer Select ==> T Output: actionData: [a] i, Select: [i] ==> [a] end end actor Switch [T] () multi T Data, Integer Select ==> T Output: actionSelect: [i], Data: [a] i ==> [a] end end
action tags, action selectors actor FairMerge [T] () T Input1, T Input2 ==> T Output: A:action Input1: [a] ==> [a] end B:action Input2: [a] ==> [a] end selector (AB)* end end • other selectors are conceivable, e.g. • (AB)* | (BA)* • ( (AB) | (BA) )*
action conditions, state actor FairMerge [T] () T Input1, T Input2 ==> T Output: Integer s := 1; action Input1: [a] ==> [a] guards = 1 do s := 2; end action Input2: [a] ==> [a] guards = 2 do s := 1; end end
CAL compilation—the big picture. parsing CAL transformation,annotation source text CAL(0) code generation Caltrop AST CAL(1) Java platforms target platform C platforms CAL(n) CalCore Pålsjö/Koala LegOS Ptolemy II Moses JGrafChart
code generation infrastructure CALCORE generic Java generic C Palsjo/Koala(Lund) LegOS(UCB) Pt/Java(UCB) JGrafChart(Lund) Moses(ETH)
CAL A C CALcomposition CAL B codegeneration CAL CAL direct codegeneration CAL actor composition
project status • We have... • the language definition • including an informal semantics • Java code generator • generic + Ptolemy • usable, but not complete • ongoing work on porting Ptolemy actor library • C code generator • generic + Palsjo • usable, but not complete • Lund University uses it for writing control software for robot • Swedish company wants to use the language for writing DSP applications • some work on static scheduling of actor networks • some work on actor composition
project status • We would like... • formal actor semantics • composition and composition language • more extensive code generation • more complete • more platforms • more languages • larger function libraries • larger actor libraries • ... but most of all ... Collaborators!
Thanks. www.gigascale.org/caltrop
Motivation Writing simple actors should be simple. • But: The Ptolemy API is very rich, and writing actors in it requires considerable skill. • However: Many Ptolemy actors have considerable commonalities - they are written in a stylized format.
Motivation We should generate many actors from a more abstract description. • Benefits: • reduces amount of code to be written • makes writing actors more accessible • reduces error probability • makes code more versatile • actors may be retargeted to other platforms, or new versions of the Ptolemy API
Overview of the implementation general architecture aspects of the Pt/Java implementation
Caltrop implementation—the big picture. source text parsing Caltrop transformation,annotation Caltrop AST Caltrop(0) code generation target platform Caltrop(1) Caltrop(n) split-phase CalCore Ì CalCore Matlab? DSP/FPGA? Pt/Java TinyOS/C? ???
Caltrop implementation • many small modules • transformers, annotaters, checkers • transforming Caltrop into some language subset • CalCore • small, semantically complete subset • minimal language for code generation, analysis, transformation • built on functional and procedural closures
Transformers & annotators • replace control structures • replace port patterns • sort variable declarations • replace operators • propagate type information • check static properties • tag port patterns • ...
Caltrop implementation • Benefits: • Much of the ‘hard’ stuff can be done on the same data structure, exploiting the regularities of the Caltrop/CalCore semantics and the existing software infrastructure. • Code generators becomes relatively small, thus making retargeting easier. • Intermediate results are valid Caltrop programs, making debugging a lot easier. • We can look at them easily. • We can use the parser and the well-formedness/type checkers themselves as debugging tools!
Switch in CalCore* actor Switch [T] () multi T Data, Integer Select ==> T Output : action Select::[|G0], Data::[|G2] all ==> Output::[a] where G1, G3 with Boolean G1 := available(G0, 1), Integer i := if G1 then G0[0] else null end, Integer G4 := i, Boolean G3 := available(G2[G4], 1), Integer a := if G3 then G2[G4][0] else null end end end *Actually, we are cheating here; CalCore is in fact even more primitive. And even less readable...
CalCore ==> Pt/Java • different programming models • single atomic action vs prefire/firen/postfire • referentially transparent access to channels vs. token consuming read methods • stateful computation vs state-invariant fire
CalCore ==> Pt/Java • mapping Caltrop notions to Pt/Java concepts • parameters ==> attributes + attribute changes • types and type checking • ...
What goes into prefire()? actor Switch [T] () multi T Data, Integer Select ==> T Output : action Select::[|G0], Data::[|G2] all ==> Output::[a] where G1, G3 with Boolean G1 := available(G0, 1), Integer i := if G1 thenG0[0]else null end, Integer G4 := i, Boolean G3 := available(G2[G4], 1), Integer a := if G3 then G2[G4][0] else null end end end All computation that is required in order to decide firability? Just the part of it before the first token access?
prefire/fire • aggressive vs defensive condition evaluation • incrementally computing conditions • reusing computation done in prefire • Should tokens read in prefire be kept if prefire returns false?
fire/postfire action Input1:: [a] ==> [a] where s = 1 : s := 2;end action Input1::[|G0] ==> Output::[a] whereequals(s,1), G1 with Boolean G1 := available(G0, 1), T a := if G1 then G0[0] else null end : s := 2; end prefire fire postfire Computation that does not affect the output can be done in postfire.
State management If state needs to be changed in order to compute output, it needs to be shadowed. • safe state management • referentially transparent expressions • no aliasing of stateful structures
State management actor B () Double Input ==> Double Output: Integer n := 0; Double sum := 0; action [a] ==> [sum / n] : n := n + 1; sum := sum + a; end end The division between fire and postfire can be expressed in Caltrop (btw, this is a non-CalCore transformation) using action tags and selectors.
State management actor B () Double Input ==> Double Output: Integer n := 0; Integer n$shadow; Double sum := 0; Double sum$shadow; fire: action [a] ==> [sum$shadow / n$shadow] : n$shadow := n; sum$shadow := sum; n$shadow := n$shadow + 1; sum$shadow := sum$shadow + a; end postfire: action ==> : n := n$shadow; sum := sum$shadow; end selector (fire+ postfire)* end end
Short term “grunt” work • well-formedness checks • type system, type checking • split-phase analyses • interpreter (+ wrapper for Pt/Java) • optimizations, big and small • other transformers, annotators
Fun mid-term projects • static analysis of actor properties (data rates, dependency on state, parameters, input, ...) • relation to MoC (e.g. BDF) • computing interface automata from actor descriptions • code generators to other platforms and languages • code generation for composite actors?