I don't know what's your server. If you are using SGI serious, such as O2, Origin 2000, etc. the compiler come with the system can do the parallization for you. The command is "f90 -apo source.f90 -o des" There is another choice name OpenMP. You can go to www.openmp.org for detail. What you need to do is just add some Macro to your original code and compile with -mp option, you can get parallelized executable code. The other choice is to rewrite the code thoroughly with MPI or PVM. Try to search