Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

What is good-old-fashioned pipelining?

pipelining
0
Posted

What is good-old-fashioned pipelining?

0

Pipelining is just sending input data into a single process and out to possibly another process. Rather arbitarily, I will consider all concrete programs (such as an instance of XSL) to be called processes, while I will consider all abstractions of them to be functions. Indeed, the binding of an abstract function to a process is much like the binding of a variable in lambda calculus. In terms of lambda calculus, a process can be considered abstracted by a function, which we will call f and call the application function f with the argument x just lambda x.f x. So, if one wanted to create a good-old fashioned linear “pipeline” through functions f1…fz, then the function just becomes lambda x.fz…f2f1x. One could imagine a pipeline taking multiple arguments for the first process f1, and producing named arguments elsewhere that are stored. This take on pipelining is modelled on the UNIX pipeline, of course. Problems The crucial problems with good-old fashioned pipelining are then apparen

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123