Ease (programming language)

Ease (programming language)

Infobox programming language
name = Ease
logo =
paradigm = concurrent
year = 1990
designer = Steven Ericsson-Zenith
developer =
latest release version =
latest release date =
typing =
implementations = various
dialects = C-with-Ease, Carnap
influenced_by = Communicating Sequential Processes, occam, Linda
influenced =

Ease is a general purpose parallel programming language, designed by Steven Ericsson-Zenith of Yale University. It combines the process constructs of CSP with logically shared data structures called "contexts". Contexts are parallel data types that are constructed by processes and provide a way for processes to interact.

The language includes two process constructors.

A "cooperation" includes an explicit barrier synchronization and is written:

::parallel P() parallel Q() ;

If one process finishes before the other then it will wait until the other processes are finished.

A "subordination" creates a process that shares the "contexts" that are in scope when created and finishes when complete (it does not wait for other processes) and is written:

::ig /!!/ P() ;

Subordinate processes stop if they attempt to interact with a "context" that has completed because the parent process has stopped. This enables speculative processes to be created that will finish if their result is not needed.

Powerful "replication" syntax allows multiple processes to be created. For example

::parallel {i}; {for}; {n} : P() ;

creates "n" synchronized processes each with a local constant "i".

Processes cannot share "local" variables and cooperate in the construction of shared "contexts." Certain context types, called "resources", ensure call-reply semantics.

There are four functions upon contexts:

* read ( context, variable ), copies a value from the shared "context" to the "variable".
* write ( context, expression ), copies the value of "expression" to the shared "context".
* put ( context, name ), moves the value bound to "name" to the shared "context". The value of "name" is subsequently "undefined".
* get ( context, name ), moves a value from "context" and binds it "name". The value is removed from the context.

Context types are "Singletons", "Bags" or "Streams" and can be subscripted arrays.

Ease has a "semiotic definition." This means that it takes into account the effect the language has on the programmer and how they develop algorithms. The language was designed to "ease" the development of parallel programs.

Zenith is also a designer of the parallel programming language Occam and the MPI standard. He worked at Yale University on Linda and at INMOS on the Transputer microprocessor for parallel computing. Like Occam, the definition of Ease uses CSP as its mathematical foundation. Steven Zenith is currently at the Institute for Advanced Science & Engineering in California.

References

[http://doi.ieeecomputersociety.org/10.1109/ICPADS.1998.741145 T.H. MacKenzie, T.I. Dix, "Object-Oriented Ease-Based Parallel Primitives in C++," icpads, p. 623, 1998 International Conference on Parallel and Distributed Systems (ICPADS'98), 1998]

External links

* [http://process-interaction-models.info Steven Ericsson-Zenith's web site on Process Interaction Models and Ease.]
* [http://www.carnap.info/ Carnap]


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • Forth (programming language) — infobox programming language name = Forth paradigm = Procedural, stack oriented year = 1970s designer = Charles H. Moore typing = typeless dialects = colorForth, Open Firmware implementations = Forth, Inc., GNU Forth, MPE influenced by =… …   Wikipedia

  • Python (programming language) — infobox programming language name = Python paradigm = multi paradigm: object oriented, imperative, functional year = 1991 designer = Guido van Rossum developer = Python Software Foundation latest release version = 2.6 latest release date =… …   Wikipedia

  • SAC programming language — Infobox programming language name = SAC paradigm = array, functional year = 1994 designer = Sven Bodo Scholz, Clemens Grelck, et al developer = latest release version = latest release date = typing = static, strong implementations = dialects =… …   Wikipedia

  • Dynamic programming language — This article is about a class of programming languages, for the method for reducing the runtime of algorithms, see Dynamic programming. Dynamic programming language is a term used broadly in computer science to describe a class of high level… …   Wikipedia

  • Lua (programming language) — Infobox programming language name = Lua paradigm = Multi paradigm: scripting, imperative, functional year = 1993 designer = Roberto Ierusalimschy Waldemar Celes Luiz Henrique de Figueiredo developer = latest release version = 5.1.4 latest release …   Wikipedia

  • Lingo (programming language) — The name Lingo has been used by several unrelated programming languages. Its most common version is a scripting language developed by John H. Thompson for use in Macromedia Director. HyperTalk is likely to have been one of the inspirations for… …   Wikipedia

  • occam (programming language) — Not to be confused with OCaml. occam Paradigm(s) concurrent Appeared in 1983 Developer INMOS Stable release 2.1 (official), 2.5 (unofficial), 3 (not fully implemented) (1988+) …   Wikipedia

  • Euphoria (programming language) — Euphoria openEuphoria logo Paradigm(s) Imperative, procedural Appeared in 1993 Designed by Jeremy Cowgar, Robert Craig (original), Matt Lewis, Derek Parnell …   Wikipedia

  • Occam (programming language) — Infobox programming language name = occam logo = paradigm = concurrent year = 1983 designer = developer = INMOS latest release version = 2.1 (official), 2.5 (unofficial), 3 (not fully implemented) latest release date = 1988+ typing =… …   Wikipedia

  • Charm (programming language) — Charm Paradigm(s) Structured programming Appeared in 1996 Designed by P. Nowosad Influenced by RTL/2, C, Pascal OS RISC OS …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”