/* README for Portfolio Analysis Program @language: C, MPI @author: Hyun Kim @date: 05/09/00 */ =============== portfolio.c =============== . sequential program . command for compile: gcc -c portfolio.c . command for link: gcc -o portfolio -lm portfolio.o . command for run: portfolio . output files: output3-6.txt, shows the result of portfolio analysis detail3-6.txt, shows the detail of the GA's procedure anal3-6.txt, shows the necessary data for the analysis of GAs ================= MPIportfolio.c ================= . parallelized program using MPI . command for compile: mpicc -c MPIportfolio.c . command for link: mpicc -o MPIportfolio -lm MPIportfolio.o . command for run: tmrun -np 4 MPIportfolio . output files: MPIoutput3-6.txt, shows the result of portfolio analysis MPIdetail3-6.txt, shows the detail of the GA's procedure MPIanal3-6.txt, shows the necessary data for the analysis of GAs