Parallel
fried.asc
Associated article: Shared Memory and PC Supercomputing
Tags: Database Parallel Design
_SHARED MEMORY AND PC SUPERCOMPUTING_
by Stephen Fried
Example 1:
(a)
N = 1000
DO 100 I= 1,N
DO 100 J= 1,N
100 Result(j,i) = a(i)*x(j)**4 + b(i)*x(j)**3 +
& c(i)*x(j)**2 +d(i)*x(j) +e(i)
(b)
...


