Related articles |
---|
Sisal? wchang@genome.lbl.gov (1994-09-14) |
Re: Sisal? preston@tera.com (1994-09-18) |
Re: Sisal? buyukisik_o_f@ae.ge.com (U-E59264-Osman Buyukisik) (1994-09-19) |
Re: Sisal? miller@diego.llnl.gov (1994-09-19) |
Re: Sisal? bernecky@eecg.toronto.edu (Robert Bernecky) (1994-09-19) |
Re: Sisal? bernecky@eecg.toronto.edu (Robert Bernecky) (1994-09-21) |
Re: Sisal? bernecky@eecg.toronto.edu (Robert Bernecky) (1994-09-23) |
Newsgroups: | comp.compilers |
From: | preston@tera.com (Preston Briggs) |
Keywords: | functional |
Organization: | Compilers Central |
References: | 94-09-038 |
Date: | Sun, 18 Sep 1994 00:13:39 GMT |
wchang@genome.lbl.gov (William Chang) writes:
>Where might I find discussions/critiques/rebuttals regarding Sisal?
>Is this dataflow/single-assignment language "functional", and how does it
>manage to beat Fortran?
Unfortunately, I don't have any handy references for Sisal. However,
I can talk to the last question from memory.
In one of the Sisal papers, they discuss the language and an
implementation. They also offer some speed comparisons of programs
written in Sisal versus programs written in Fortran (I believe running
on a Cray). In some (all?) cases, the Sisal versions were faster.
They claimed the different versions of the programs used the same
algorithms and were coded naturally, so that much is probably fair.
However, the compilers were not equivalent, in that the Sisal compiler
examined the entire program, performing significant interprocedural
optimizations (and eventually emitting C to be compiled by the native
C compiler). The Fortran compiler, on the other hand, used the
traditional approach to separate compilation and was thus much more
restricted in the scope of its analysis and transformation. In
practice, we would also expect the Fortran compiler to be much more
usable, since it doesn't require recompilation of the entire program
after every edit.
Nevertheless, the results are impressive and have attracted attention
(and users!). While I don't have references to give you, there have
been several papers published. Hopefully someone else will have them
handy.
Preston Briggs
--
Return to the
comp.compilers page.
Search the
comp.compilers archives again.