Compilation is straightforward. the following
invocation produces no errors during compilation
when performed using f77 (SUN FORTRAN 77) under Solaris 7


f77 -fast -O4 -parallel nec2sx.f


	fast option
	add level 4 optimization
  	automatic parallelization




Set the environment variable to the number of processors
in your system that you wish to take advantage of.

setenv PARALLEL 2


A few experiments seem to indicate that for low numbers of
processors, the overhead involved in the process switching
may actually produce slower run times as compared to using
a single processor (setting PARALLEL = 1).

