annotate 1__Development/6__Website/introduction.html @ 0:a8cd65eca9a9

Initial add
author Me@portablequad
date Sun, 25 Dec 2011 14:39:36 -0800
parents
children
rev   line source
Me@0 1 <html>
Me@0 2 <head>
Me@0 3 <title>Introduction</title>
Me@0 4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
Me@0 5 </head>
Me@0 6
Me@0 7 <body bgcolor="#FFFFFF">
Me@0 8
Me@0 9 <p>&nbsp;</p>
Me@0 10 <h2>Introduction</h2>
Me@0 11 <p>&nbsp;</p>
Me@0 12 <p>EQNLang is an extensible language for parallel programming. It has a visual
Me@0 13 interface, allows extensions of both its visual syntax and its semantics, and
Me@0 14 it allows automated symbolic manipulation of code to specialize it to specific
Me@0 15 parallel hardware, for high performance.</p>
Me@0 16 <p>EQNLang has a visual interface, in which any SVG graphic can be used as a syntactic
Me@0 17 element in the language. In fact, while developing code, most applications will
Me@0 18 add their own syntax as part of the application. This new syntax can then be
Me@0 19 shared for others to use.</p>
Me@0 20 <p>The source format of the language is a syntax graph. There is no text form
Me@0 21 of the code. This is what enables new syntax to be arbitrary graphics. The grammar
Me@0 22 of the language is embedded in the editing process. One is only allowed to build
Me@0 23 valid syntax graphs. Another consequence of using a syntax graph as the source
Me@0 24 form is that properties can be attached to new commands defined inside applications.
Me@0 25 This is the key to the portable parallelism.</p>
Me@0 26 <p>Performance portability of parallel code requires the code to be transformable
Me@0 27 to fit specific hardware well. High performance can only be achieved when the
Me@0 28 patterns in the code fit closely to the patterns in the hardware. Such transformations
Me@0 29 go beyond what compilers typically carry out; they are more like what a symbolic
Me@0 30 math package like MAPLE or MathCAD or Mathmatica perform.</p>
Me@0 31 <p>To enable such transforms for parallel code, the parallel code must provide
Me@0 32 the same thing that equations provide to the math package: properties. It is
Me@0 33 properties such as associativity, distributivity, and so forth that allow the
Me@0 34 automated symbolic manipulation. EQNLang follows this pattern of providing properties
Me@0 35 of commands. Each primitive command of the language comes pre-tagged with its
Me@0 36 properties, and the end-user who defines a new syntactic element states which
Me@0 37 properties their new element has. For some properties, additional code is provided
Me@0 38 that is a &quot;plugin&quot; to the symbolic manipulator. This additional code
Me@0 39 performs the manipulation on the source-graph.</p>
Me@0 40 <p>The result is a high-level declarative language that is highly productive for
Me@0 41 programmers, yet high performance across parallel hardware.</p>
Me@0 42 <p><a href="index.html">back</a></p>
Me@0 43 </body>
Me@0 44 </html>