summaryrefslogtreecommitdiffstats
path: root/INSTALL_TFLOPS
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-09-30 17:15:06 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-09-30 17:15:06 (GMT)
commit5d44f23ac06c70143aa949e02ff150ec36fb3cef (patch)
tree75531b3901ecf1a7ca60c161630f5ce34747b74a /INSTALL_TFLOPS
parentbdf0dbf7ed9a671cf915de65006ae5a5379c6941 (diff)
downloadhdf5-5d44f23ac06c70143aa949e02ff150ec36fb3cef.zip
hdf5-5d44f23ac06c70143aa949e02ff150ec36fb3cef.tar.gz
hdf5-5d44f23ac06c70143aa949e02ff150ec36fb3cef.tar.bz2
[svn-r1700] Changed names of files to better reflect their purposes.
INSTALL.ascired: Becomes INSTALL_TFLOPS. INSTALL_parallel.ascired: Becomes bin/config_para_tflops.sh INSTALL.ibm.sp.parallel: Becomes bin/config_para_ibm_sp.sh
Diffstat (limited to 'INSTALL_TFLOPS')
-rw-r--r--INSTALL_TFLOPS107
1 files changed, 107 insertions, 0 deletions
diff --git a/INSTALL_TFLOPS b/INSTALL_TFLOPS
new file mode 100644
index 0000000..95e16c2
--- /dev/null
+++ b/INSTALL_TFLOPS
@@ -0,0 +1,107 @@
+
+FOR THE INTEL TFLOPS MACHINE:
+
+Below are the step-by-step procedures for building, testing, and
+installing both the sequential and parallel versions of the HDF5 library.
+
+---------------
+Sequential HDF5:
+---------------
+
+The setup process for building the sequential HDF5 library for the
+ASCI Red machine is done by a coordination of events from sasn100 and
+janus. Though janus can do compiling, it is better to build it
+from sasn100 which has more complete building tools and runs faster.
+It is also anti-social to tie up janus with compiling. The HDF5 building
+requires the use of janus because one of steps is to execute a program
+to find out the run-time characteristics of the TFLOPS machine.
+
+Assuming you have already unpacked the HDF5 tar-file into the
+directory <hdf5>, follow the steps below:
+
+FROM SASN100,
+
+1) cd <hdf5>
+
+2) ./configure tflop
+
+3) make H5detect
+
+
+FROM JANUS,
+
+4) cd <hdf5>
+
+5) make H5Tinit.c
+
+
+FROM SASN100,
+
+6) make
+
+
+When everything is finished compiling and linking,
+you can run the tests by
+FROM JANUS,
+
+7.1) Due to a bug, you must first remove the following line from
+ the file test/Makefile before the next step.
+ RUNTEST=$(LT_RUN)
+7.2) make check
+
+
+Once satisfied with the test results, you can install
+the software by
+FROM SASN100,
+
+8) make install
+
+
+---------------
+Parallel HDF5:
+---------------
+
+The setup process for building the parallel version of the HDF5 library for the
+ASCI Red machine is very similar to the sequential version. Since TFLOPS
+does not support MPIO, we have prepared a shell-script file that configures
+with the appropriate MPI library.
+
+Assuming you have already unpacked the HDF5 tar-file into the
+directory <hdf5>, follow the steps below:
+FROM SASN100,
+
+1) cd <hdf5>
+
+2) sh bin/config_para_tflops.sh /* this is different from the sequential version */
+
+3) make H5detect
+
+
+FROM JANUS,
+
+4) cd <hdf5>
+
+5) make H5Tinit.c
+
+
+FROM SASN100,
+
+6) make
+
+
+When everything is finished compiling and linking,
+FROM JANUS,
+
+7.1) Due to a bug, you must first remove the following line from
+ the file test/Makefile before the next step.
+ RUNTEST=$(LT_RUN)
+7.2) make check
+
+
+Once satisfied with the parallel test results, as long as you
+have the correct permission,
+FROM SASN100,
+
+8) make install
+
+