--- Begin Message ---
------------------------------------------------------------
revno: 747
committer: Anders Logg <logg@glaurung>
branch nick: dorsal
timestamp: Sun 2012-10-21 08:17:00 -0700
message:
More work on experimental platform file building everything.
VTK takes 3105 s to build with make -j 10...
modified:
FEniCS/platforms/contributed/precise-hpc.platform
dorsal.sh
--
lp:dorsal
https://code.launchpad.net/~dorsal-core/dorsal/main
You are subscribed to branch lp:dorsal.
To unsubscribe from this branch go to https://code.launchpad.net/~dorsal-core/dorsal/main/+edit-subscription
=== modified file 'FEniCS/platforms/contributed/precise-hpc.platform'
--- FEniCS/platforms/contributed/precise-hpc.platform 2012-10-21 07:14:20 +0000
+++ FEniCS/platforms/contributed/precise-hpc.platform 2012-10-21 15:17:00 +0000
@@ -33,7 +33,8 @@
wget bzr bzrtools subversion cmake pkg-config \\
flex bison g++ gfortran \\
libcln-dev libcppunit-dev libxml2-dev libhwloc-dev libbz2-dev \\
- python-dev python-numpy swig
+ python-dev python-numpy swig \\
+ tcl-dev tk-dev
Note that this step will pull in the FORTRAN packages for BLAS and
LAPACK (libblas3gf liblapack3gf) but those will not affect the
@@ -76,7 +77,9 @@
# works fine too
# CHECK: using existing openmpi.package
#- Build Boost so that Boost.MPI uses the manually installed MPI
+ CHECK: using existing boost.package, did it detect MPI???
#- Install CGAL to use the manually installed Boost
+ CHECK: using existing cgal.package
#- Build latest METIS and ParMETIS (Ubuntu ParMETIS is broken, and it
# pull in MPI)
#- Build VTK (so that the Ubuntu version doesn't pull in MPI)
@@ -87,16 +90,17 @@
# Platform specific variables
default PETSC_ARCH=linux-gnu-cxx-opt
+default SCOTCH_ARCH=pc_linux2
# Define the packages this platform needs
PACKAGES=(
skip:atlas
skip:openmpi
-#boost
-#cgal
-#parmetis
-#scotch
-#vtk
+skip:boost
+skip:cgal
+skip:parmetis
+skip:scotch
+vtk
#hdf5
#pastix
#petsc
=== modified file 'dorsal.sh'
--- dorsal.sh 2012-10-21 07:14:20 +0000
+++ dorsal.sh 2012-10-21 15:17:00 +0000
@@ -548,7 +548,7 @@
# Store timing
TOC="$(($(date +%s%N)-TIC))"
- TIMINGS="$TIMINGS"$"\n""$PACKAGE: $((TOC/1000000000)) s"
+ TIMINGS="$TIMINGS"$"\n""$PACKAGE: "$"\t\t""$((TOC/1000000000)) s"
done
--- End Message ---