Presentation is loading. Please wait.

Presentation is loading. Please wait.

5 th Biennial Ptolemy Miniconference Berkeley, CA, May 9, 2003 C AL - An actor language Jörn W. Janneck The Ptolemy Group University of California, Berkeley.

Similar presentations


Presentation on theme: "5 th Biennial Ptolemy Miniconference Berkeley, CA, May 9, 2003 C AL - An actor language Jörn W. Janneck The Ptolemy Group University of California, Berkeley."— Presentation transcript:

1 5 th Biennial Ptolemy Miniconference Berkeley, CA, May 9, 2003 C AL - An actor language Jörn W. Janneck The Ptolemy Group University of California, Berkeley

2 Ptolemy Miniconference 2 C AL people Chris Chang Johan Eker (now Ericsson Mobile Platforms, Research) Ernesto Wandeler (ETH Zurich) Lars Wernli (then ETH Zurich) Ed Willink (Thales Research) Yang Zhao

3 Ptolemy Miniconference 3 Why another language? Writing simple actors should be simple. –Ptolemy II API very rich –actor writing requires considerable skill –BUT: Actors have a lot of common structure. Models should allow efficient code generation. –actor descriptions contain a lot of "admin" code local precedent: –ptlang in Ptolemy Classic (J. Buck)

4 Ptolemy Miniconference 4 Why another language? We should generate actors from a more abstract description. –reduces amount of code to be written –makes writing actors more accessible –reduces error probability –makes code more versatile retargeting (other platforms, new versions of the Ptolemy API) analysis & composition

5 Ptolemy Miniconference 5 actor ID () In ==> Out : action [a] ==> [a] end end Simple actors actor A (k) Input1, Input2 ==> Output: action [a], [b] ==> [k*(a + b)] end end actor Merge () Input1, Input2 ==> Output: action Input1: [x] ==> [x] end action Input2: [x] ==> [x] end end actor firing  execution of one enabled action

6 Ptolemy Miniconference 6 An actor with state actor Sum () Input ==> Output: sum := 0; action [a] ==> [sum] do sum := sum + a; end

7 Ptolemy Miniconference 7 Action guards actor FairMerge () Input1, Input2 ==> Output: s := 0; action Input1: [x] ==> [x] guard s = 0 do s := 1; end action Input2: [x] ==> [x] guard s = 1 do s := 0; end action input patterns declaring variables guard specifying enabling conditions output expressions computing output tokens body modifying the actor state

8 Ptolemy Miniconference 8 Action schedules actor FairMerge () Input1, Input2 ==> Output: s := 0; action Input1: [x] ==> [x] guard s = 0 do s := 1; end action Input2: [x] ==> [x] guard s = 1 do s := 0; end actor FairMerge () Input1, Input2 ==> Output: A: action Input1: [x] ==> [x] end B: action Input2: [x] ==> [x] end schedule fsm State0: State0 (A) --> State1; State1 (B) --> State0; end actor FairMerge () Input1, Input2 ==> Output: A: action Input1: [x] ==> [x] end B: action Input2: [x] ==> [x] end schedule regexp (A B)* end

9 Ptolemy Miniconference 9 First-class functions actor Sieve (predicate) Input ==> Output: filter := lambda (a) : false end; action [a] ==> [] guard filter(a) end action [a] ==> [a] guard not filter(a) var f = filter do filter := lambda(b) : f(b) or predicate(b,a) end; end

10 Ptolemy Miniconference 10 Programming language features optionally typed –generic polymorphic type system full functional sub-language everything first-class citizen (well, almost) –functions –procedures –NOT actors or actions (yet) lexically scoped no aliasing of stateful structures –useful for handling concurrency

11 Ptolemy Miniconference 11 Executing C AL : Interpreter Ptolemy actor –configured by C AL script –smooth embedding into Ptolemy II –first version in current release domain-dependent interpretation (Chris Chang) –interpreter adapts to domain –making actors more domain-polymorphic –What's a model of computation?

12 Ptolemy Miniconference 12 Executing C AL : Translators C AL Canonical C AL ML Pt/Java (UCB) Palsjo/Koala (Lund) JGrafChart (Lund) C AL ML generic Java generic C... XML for representing actors (C AL ML) persistent format infrastructure for checking, transformation XSLT as implementation language analysis program transformation code generation

13 Ptolemy Miniconference 13 Executing C AL : Composer/Translator A C B C AL ML composition C AL ML C AL code generation model of computation a Ptolemy II model

14 Ptolemy Miniconference 14 Executing CAL: Discovering concurrency actor B () a, b ==> x, y: s := ; action a: [v] ==> x: [f(v, s)] end action b: [v] ==> y: [g(v)] do s := h(v, s); end

15 Ptolemy Miniconference 15 Conclusion C AL is a Ptolemy scripting language –simple, portable description of actors –can be analyzed, interpreted, compiled, composed new research directions –composers as models of computation composer languages? –infrastructure for executing actors component models, execution environments –transformations/analyses of actor networks distribution efficient translation

16 Ptolemy Miniconference 16 Thank you. resources: www.gigascale.org/caltrop contact: janneck@eecs.berkeley.edu


Download ppt "5 th Biennial Ptolemy Miniconference Berkeley, CA, May 9, 2003 C AL - An actor language Jörn W. Janneck The Ptolemy Group University of California, Berkeley."

Similar presentations


Ads by Google