summaryrefslogtreecommitdiffstats
path: root/INSTALL.ascired
diff options
context:
space:
mode:
authorPaul Harten <pharten@ncsa.uiuc.edu>1998-05-19 18:42:16 (GMT)
committerPaul Harten <pharten@ncsa.uiuc.edu>1998-05-19 18:42:16 (GMT)
commit57e57ebb14aa3f5a88245965292031f25dfc7756 (patch)
treee6242618088dd11f1b390b714d670bb6c3325bec /INSTALL.ascired
parent34f5a59b9eb995997536575eeb796f745a2be784 (diff)
downloadhdf5-57e57ebb14aa3f5a88245965292031f25dfc7756.zip
hdf5-57e57ebb14aa3f5a88245965292031f25dfc7756.tar.gz
hdf5-57e57ebb14aa3f5a88245965292031f25dfc7756.tar.bz2
[svn-r399] Purpose:
Change in Documentation for the INSTALL process on the ASCI Red Problem: As part of the parallel HDF5 install process, upon compiling the library and sequential testers, it is necessary to copy the testers onto local disk prior to testing. This is almost done by steps 9-11) ... 9) cp -r ../hdf5 ../scratch 10) cd /scratch/hdf5/test 11) make test >&! test.out After the copying to /scratch, when the "make test" is run, dependencies are checked and it is determined that the executables need to be rebuilt. Unfortunately, the MPI-IO libraries in sasn100:/usr/community/mpi-io are not accessible on ASCI Red, so that step #11 above gives an error. Solution: Albert Cheng and Robb Matzke suggested to add the "-p" option in step #9, if available, to maintain the original modifications. Those install steps were changed to: ... 9) cp -rp ../hdf5 ../scratch 10) cd /scratch/hdf5/test 11) make test >&! test.out Everything works fine! Platform tested: janus - ASCI Red sasn100 - TFLOPS Application server
Diffstat (limited to 'INSTALL.ascired')
-rw-r--r--INSTALL.ascired2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL.ascired b/INSTALL.ascired
index da9b77b..d7dc5c8 100644
--- a/INSTALL.ascired
+++ b/INSTALL.ascired
@@ -99,7 +99,7 @@ FROM SASN100,
When everything is finished compiling and linking,
FROM JANUS,
-9) cp -r ../hdf5 /scratch
+9) cp -rp ../hdf5 /scratch
10) cd /scratch/hdf5/test