Changeset 3131
- Timestamp:
- 02/25/10 00:12:30 (15 years ago)
- Location:
- issm/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/configs/pleiades/pleiades.sh
r3124 r3131 1 1 #!/bin/csh 2 2 3 ./configure --prefix=$ISSM_DIR --with-serial=no --with-metis-dir=$ISSM_DIR/externalpackages/metis/install --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install --with-mpi-include=/nasa/sgi/mpt/1.23.nas/includ --with-mpi-lib="-L/nasa/sgi/mpt/1.23.nas/lib64/ -lmpi -lpthread -lgfortran" --with-petsc-arch=$ISSM_ARCH --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install --with-mkl-dir=/nasa/intel/mkl/10.0.011/lib/64/ --with-plapack-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/PLAPACKR32-hg/$ISSM_ARCH --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/MUMPS_4.6.3/$ISSM_ARCH/ --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/SCALAPACK/$ISSM_ARCH/ --with-blacs-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/blacs-dev/$ISSM_ARCH --with-graphics-lib=/usr/X11/lib64/libX11.so --with-cxxoptflags="-O3 -xS SE4.2" --with-vendor=intel-pleiades3 ./configure --prefix=$ISSM_DIR --with-serial=no --with-metis-dir=$ISSM_DIR/externalpackages/metis/install --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install --with-mpi-include=/nasa/sgi/mpt/1.23.nas/includ --with-mpi-lib="-L/nasa/sgi/mpt/1.23.nas/lib64/ -lmpi -lpthread -lgfortran" --with-petsc-arch=$ISSM_ARCH --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install --with-mkl-dir=/nasa/intel/mkl/10.0.011/lib/64/ --with-plapack-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/PLAPACKR32-hg/$ISSM_ARCH --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/MUMPS_4.6.3/$ISSM_ARCH/ --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/SCALAPACK/$ISSM_ARCH/ --with-blacs-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/blacs-dev/$ISSM_ARCH --with-graphics-lib=/usr/X11/lib64/libX11.so --with-cxxoptflags="-O3 -xS" --with-vendor=intel-pleiades -
issm/trunk/etc/cluster.rc
r3123 r3131 74 74 cluster_name=pfe 75 75 cluster_codepath=/home1/elarour/trunk/bin 76 cluster_executionpath=/ home1/elarour/Testing76 cluster_executionpath=/nobackup/elarour/Testing 77 77 cluster_login=elarour 78 78 -
issm/trunk/externalpackages/matlab/install.sh
r3089 r3131 6 6 #symlink matlab to root matlab 7 7 ln -s /usr/local/pkgs/matlab-7.6/ install 8 -
issm/trunk/m4/issm_options.m4
r3124 r3131 641 641 export CC=icc 642 642 export CXX=icpc 643 export CXXFLAGS=" -O3 - D_INTEL_LINUX_ -xSSE4.2"643 export CXXFLAGS=" -O3 -xS -D_INTEL_LINUX_ " 644 644 else 645 645 AC_MSG_ERROR([unknow compiler vendor!]) -
issm/trunk/src/c/objects/Penta.cpp
r3086 r3131 634 634 } 635 635 636 cleanup_and_return:637 636 xfree((void**)&first_gauss_area_coord); 638 637 xfree((void**)&second_gauss_area_coord); … … 921 920 MatSetValues(Kgg,numdof,doflist,numdof,doflist,(const double*)K_terms,ADD_VALUES); 922 921 923 cleanup_and_return:924 922 925 923 /*Free ressources:*/ … … 1066 1064 MatSetValues(Kgg,numdof,doflist,numdof,doflist,(const double*)Ke_gg,ADD_VALUES); 1067 1065 1068 cleanup_and_return:1069 1066 xfree((void**)&first_gauss_area_coord); 1070 1067 xfree((void**)&second_gauss_area_coord); … … 1382 1379 MatSetValues(Kgg,numdof,doflist,numdof,doflist,(const double*)K_terms,ADD_VALUES); 1383 1380 1384 cleanup_and_return:1385 1381 xfree((void**)&first_gauss_area_coord); 1386 1382 xfree((void**)&second_gauss_area_coord); … … 1515 1511 1516 1512 /* parameters: */ 1517 double slope[ NDOF2];1513 double slope[3]; //do not put 2! this goes into GetParameterDerivativeValue, which addresses slope[3] also! 1518 1514 double driving_stress_baseline; 1519 1515 double thickness; … … 1647 1643 VecSetValues(pg,numdof,doflist,(const double*)pe_g,ADD_VALUES); 1648 1644 1649 cleanup_and_return:1650 1645 xfree((void**)&first_gauss_area_coord); 1651 1646 xfree((void**)&second_gauss_area_coord); … … 2035 2030 VecSetValues(pg,numdof,doflist,(const double*)pe_g,ADD_VALUES); 2036 2031 2037 cleanup_and_return:2038 2032 xfree((void**)&first_gauss_area_coord); 2039 2033 xfree((void**)&second_gauss_area_coord); … … 2281 2275 extern int my_rank; 2282 2276 2283 cleanup_and_return:2284 2277 xfree((void**)&first_gauss_area_coord); 2285 2278 xfree((void**)&second_gauss_area_coord); -
issm/trunk/src/m/classes/public/loadresultsfromcluster.m
r3119 r3131 26 26 27 27 %copy files from cluster to present directory 28 scpin(md.cluster, executionpath, packages);28 scpin(md.cluster, login, executionpath, packages); 29 29 30 30 %read log files onto fields 31 md.errlog=char(textread([md.name '.errlog'],'%s','delimiter','\n'));32 md.outlog=char(textread([md.name '.outlog'],'%s','delimiter','\n'));31 %md.errlog=char(textread([md.name '.errlog'],'%s','delimiter','\n')); 32 %md.outlog=char(textread([md.name '.outlog'],'%s','delimiter','\n')); 33 33 if ~isempty(md.errlog), 34 34 disp(['loadresultsfromcluster info message: error during solution. Check your errlog and outlog model fields']); -
issm/trunk/src/m/utils/OS/scpin.m
r2953 r3131 1 function scpin(host, path, packages)1 function scpin(host, login,path, packages) 2 2 %SCPIN get packages from host, using scp on unix, and pscp on windows 3 3 % … … 58 58 string=[string packages{end} '\}']; 59 59 60 eval(['!scp ' host ':' path '/' string ' ./']);60 eval(['!scp ' login '@' host ':' path '/' string ' ./']); 61 61 for i=1:numel(packages), 62 62 if ~exist(['./' packages{i}]),
Note:
See TracChangeset
for help on using the changeset viewer.