vote up 2 vote down star

What is a dataflow programming language? Why use it? and are there any benefits to it?

flag

70% accept rate
Thanks I just learned something new – Josh Jan 20 at 15:37
This is about the extent of my knowledge: letmegooglethatforyou.com/?q=dataflow+programming… – LFSR Consulting Jan 20 at 15:38

4 Answers

vote up 1 vote down

Some examples of dataflow languages:

  • LabVIEW
  • SCADE/Lustre, used in defence, aerospace and power plant industries
  • VHDL and Verilog are essentially dataflow
  • Spreadsheets are essentially dataflow
  • Pure Data, dataflow for audio processing
  • Max/MSP

Some lesser known ones:

link|flag
vote up 1 vote down

Mozart has support for dataflow-like synchronization, and it does have some commercial applications. You could also argue that make is a dataflow programming language

link|flag
vote up 2 vote down check

Dataflow programming languages are ones that focus on the state of the program and cause operations to occur according to any change in the state. Dataflow programming languages are inherently parallel, because the operations rely on inputs that when met will cause the operation to execute. This means unlike a normal program where one operation is followed by the next operation, in a dataflow program operations will execute as long as the inputs are met and thus there is no set order.

Often dataflow programming languages use a large hashtable where the keys are the data of the program and the values of the table are pointers to the operations of the program. This makes multicore programs easier to create in a dataflow programming language, since each core would only need the hashtable to work.

A common example of a dataflow programming language is a spread sheet program which has columns of data that are affected by other columns of data. Should the data in one column change, other data in the other columns will probably change with it. Although the spread sheet program is the most common example of a dataflow programming language, most of them tend to be graphical languages.

link|flag
vote up 3 vote down

Excel (and other spreadsheets) are essentially dataflow languages. Dataflow languages are a lot like functional programming languages, except that the values at the leaves of the whole program graph are not values at all, but variables (or value streams), so that when they change, the changes ripple and flow up the graph.

link|flag
I don't agree; constraint-solvers generally work by discovering optima within search spaces by propagating constraints. Spreadsheets propagate values, not constraints. – Barry Kelly Jan 20 at 16:19
Solve is a supplementary feature most people don't use. And trees are graphs too; moreover, if any two cells refer to the same third cell, they form a dag and are no longer a tree. – Barry Kelly Jan 20 at 21:50
"Spreadsheets propagate values, not constraints." Yes, the flow of values is what makes it "dataflow". – Dan Jul 30 at 10:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.