summaryrefslogtreecommitdiffstats
path: root/INSTALL_parallel
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-02-16 05:28:33 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-02-16 05:28:33 (GMT)
commitb1d03e705ba0d142289c239f189f4703057729be (patch)
tree9a10b5d680975db85580505470d0e9fef9f56c22 /INSTALL_parallel
parent2ae66e4b62ba12dd17eebff49c2da5c8c65b3a5d (diff)
downloadhdf5-b1d03e705ba0d142289c239f189f4703057729be.zip
hdf5-b1d03e705ba0d142289c239f189f4703057729be.tar.gz
hdf5-b1d03e705ba0d142289c239f189f4703057729be.tar.bz2
[svn-r277] Initial version for beta release.
Diffstat (limited to 'INSTALL_parallel')
-rw-r--r--INSTALL_parallel34
1 files changed, 34 insertions, 0 deletions
diff --git a/INSTALL_parallel b/INSTALL_parallel
new file mode 100644
index 0000000..b57e427
--- /dev/null
+++ b/INSTALL_parallel
@@ -0,0 +1,34 @@
+ Installation instructions for Parallel HDF5
+ -------------------------------------------
+ (last updated: Feb 15, 1998)
+
+This file contains instructions for the installation of parallel
+HDF5. Platforms supported by this release are SGI Origin 2000
+and IBM SP2. The steps are kind of unnatural and will be more
+automized in the next release. If you have difficulties installing
+the software in your system, please send mail to
+ hdfparallel@ncsa.uiuc.edu
+
+First, you must obtain and unpack the HDF5 source as
+described in the file INSTALL. You also need to obtain the
+information of the include and library paths of MPI and MPIO
+software installed in your system since the parallel HDF5 library
+uses them for parallel I/O access.
+
+For an IBM SP2 system, follow the instructions in INSTALL.ibm.sp.parallel.
+For an SGI Origin 2000 system, use the following shell commands. (The
+one shown here is what works in the NCSA O2K machine in which MPI library
+is installed in system area but no official MPIO software is available.
+I use a private installation of ROMIO for it.)
+
+mpi1_inc="" #mpi-1 include
+mpi1_lib="" #mpi-1 library
+mpio_inc="-I$HOME/ROMIO/include" #mpio include
+mpio_lib="-L$HOME/ROMIO/lib/IRIX64/" #mpio library
+
+MPI_INC="$mpi1_inc $mpio_inc"
+export MPI_INC
+MPI_LIB="$mpi1_lib $mpio_lib"
+export MPI_LIB
+
+./configure --enable-parallel