Skip to content
Snippets Groups Projects
Commit f85fd377 authored by nadolski's avatar nadolski
Browse files

Add mpi input for making soltracy for parallel computation

parent 06a67d35
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ then # affiche l'usage
echo "Missing parameter"
echo "Use: $0 debug for debug"
echo "Use: $0 opt for optimization result"
echo "Use: $0 mpi for optimization result"
exit 1
fi
......@@ -46,5 +47,10 @@ then
./configure --prefix=$dir/$TRACY/tracy FFLAGS="-O2 -Wall -fbounds-check" CFLAGS="-O2 -Wall -fno-implicit-templates" CXXFLAGS="-O2 -Wall -fno-implicit-templates"
fi
make
make install
if [ $1 == "mpi" ]
then
./configure --enable-mpi-exec --prefix=$dir/$TRACY/tracy FFLAGS="-O2 -Wall -fbounds-check" CFLAGS="-O2 -Wall -fno-implicit-templates" CXXFLAGS="-O2 -Wall -fno-implicit-templates"
fi
#make
#make install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment