1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Update to version 1.2.1

PR: 21102
Submitted by: MAINTAINER
This commit is contained in:
Kevin Lo 2000-09-09 10:16:23 +00:00
parent bd0424f515
commit 3200893ef6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32460
10 changed files with 896 additions and 316 deletions

View File

@ -6,12 +6,12 @@
#
PORTNAME= mpich
PORTVERSION= 1.2.0
PORTVERSION= 1.2.1
CATEGORIES= net
MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/
PATCH_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/patch/1.2.0/
PATCHFILES= 4885 4889 4959 4992 4997 5226 r157 rpvfs
PATCH_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/patch/1.2.1/
#PATCHFILES= this-space-reserved-for-future-use
MAINTAINER= dbader@eece.unm.edu
@ -35,7 +35,7 @@ CONFIGURE_ARGS+= -rsh="${LOCALBASE}/bin/ssh"
ALL_TARGET=
MANPREFIX= ${PREFIX}/mpich
MAN1= Jumpshot.1 MPI.1 chp4_servs.1 cleanipcs.1 mpiCC.1 mpicc.1 \
MAN1= Jumpshots.1 MPI.1 chp4_servs.1 cleanipcs.1 mpiCC.1 mpicc.1 \
mpif77.1 mpif90.1 mpiman.1 mpireconfig.1 mpirun.1 \
tstmachines.1
MAN3= Constants.3 MPI_2COMPLEX.3 MPI_2DOUBLE_COMPLEX.3 \
@ -112,7 +112,7 @@ MAN3= Constants.3 MPI_2COMPLEX.3 MPI_2DOUBLE_COMPLEX.3 \
MPI_Scatter.3 MPI_Scatterv.3 MPI_Send.3 MPI_Send_init.3 \
MPI_Sendrecv.3 MPI_Sendrecv_replace.3 MPI_Ssend.3 \
MPI_Ssend_init.3 MPI_Start.3 MPI_Startall.3 MPI_Status_c2f.3 \
MPI_Status_f2c.3 MPI_Status_set_cancelled.3 \
MPI_Status_set_cancelled.3 \
MPI_Status_set_elements.3 MPI_TAG.3 MPI_TAG_UB.3 MPI_Test.3 \
MPI_Test_cancelled.3 MPI_Testall.3 MPI_Testany.3 \
MPI_Testsome.3 MPI_Topo_test.3 MPI_Type_commit.3 \
@ -156,13 +156,14 @@ MAN3= Constants.3 MPI_2COMPLEX.3 MPI_2DOUBLE_COMPLEX.3 \
MPIO_Request_f2c.3 MPI_File_get_position.3 \
MPI_File_preallocate.3 MPI_File_read_at_all_begin.3 \
MPI_File_set_size.3 MPI_File_write_at_all_begin.3 \
MPI_Info_get_nthkey.3 MPI_Type_create_subarray.3
MPI_Info_get_nthkey.3 MPI_Type_create_subarray.3 \
MPI_File_get_errhandler.3 MPI_File_set_errhandler.3
MAN4= CLOG_Finalize.4 CLOG_Init.4 CLOG_Output.4 CLOG_commtype.4 \
CLOG_cput.4 CLOG_csync.4 CLOG_get_new_event.4 \
CLOG_get_new_state.4 CLOG_init_buffers.4 \
CLOG_init_tmpfilename.4 CLOG_mergelogs.4 CLOG_mergend.4 \
CLOG_mergelogs.4 CLOG_mergend.4 CLOG_nodebuffer2disk.4 \
CLOG_msgtype.4 CLOG_newbuff.4 CLOG_procbuf.4 CLOG_reclen.4 \
CLOG_rectype.4 CLOG_reinit_buff.4 CLOG_temp_log.4 \
CLOG_rectype.4 CLOG_reinit_buff.4 \
CLOG_treesetup.4 MPE.4 MPE_Add_RGB_color.4 MPE_CaptureFile.4 \
MPE_Close_graphics.4 MPE_Comm_global_rank.4 \
MPE_Counter_create.4 MPE_Counter_free.4 MPE_Counter_nxtval.4 \

View File

@ -1,9 +1 @@
MD5 (mpich/mpich-1.2.0.tar.gz) = 0f111463139ba389b5cdc347ad4c940b
MD5 (mpich/4885) = 3c5aa55894228ec404f77a696475838b
MD5 (mpich/4889) = 2277c62718ea7dbd5525f4fcff5544f9
MD5 (mpich/4959) = 4882b7ef2842a10758914765a828dda9
MD5 (mpich/4992) = ffe25b0161c604151d434f9c2e6055a0
MD5 (mpich/4997) = a0de6784d7909397ec4f36628774c6f6
MD5 (mpich/5226) = 009b9d21de64062bec0cb410c9a3cacd
MD5 (mpich/r157) = a66109f00cb8822174371e74b9963aba
MD5 (mpich/rpvfs) = d98049c289efa41cd94ce14541bbe697
MD5 (mpich/mpich-1.2.1.tar.gz) = d5efae9f23df2aa6f0f28492a7697c35

View File

@ -1,14 +1,13 @@
--- romio/adio/common/ad_fstype.c.orig Mon Jun 15 13:45:25 1998
+++ romio/adio/common/ad_fstype.c Mon Oct 19 16:23:55 1998
@@ -91,7 +91,11 @@
if (err) *error_code = MPI_ERR_UNKNOWN;
else {
+#if (__FreeBSD_version>300004)
+ if ( !strncmp("nfs",fsbuf.f_fstypename,3) ) *fstype = ADIO_NFS;
+#else
if (fsbuf.f_type == MOUNT_NFS) *fstype = ADIO_NFS;
--- romio/adio/common/ad_fstype.c-orig Wed Jul 19 16:38:31 2000
+++ romio/adio/common/ad_fstype.c Thu Sep 7 18:47:44 2000
@@ -26,8 +26,10 @@
#ifdef SX4
#include <sys/stat.h>
#endif
+#ifndef FREEBSD
#ifdef PVFS
#include "pvfs_config.h"
+#endif
else *fstype = ADIO_UFS;
*error_code = MPI_SUCCESS;
}
#endif
void ADIO_FileSysType(char *filename, int *fstype, int *error_code)

View File

@ -1,19 +0,0 @@
--- util/mpiinstall.in.orig Mon Nov 29 20:48:06 1999
+++ util/mpiinstall.in Sat Dec 25 07:57:38 1999
@@ -886,12 +886,12 @@
MkDir $mandir
CopyFile $top_srcdir/man/mandesc $mandir
# No files in man5 (was ADI routines)
- for dir in man1 man3 man4 ; do
- MkDir $mandir/$dir
- for file in $top_srcdir/man/$dir/* ; do
+ for manxdir in man1 man3 man4 ; do
+ MkDir $mandir/$manxdir
+ for file in $top_srcdir/man/$manxdir/* ; do
# man5 in particular might be empty; be careful
if [ -f "$file" -a -s "$file" ] ; then
- CopyFile $file $mandir/$dir
+ CopyFile $file $mandir/$manxdir
fi
done
done

View File

@ -1,13 +1,25 @@
mpich/MPI-2-C++/examples/Makefile
mpich/MPI-2-C++/examples/Makefile.in
mpich/MPI-2-C++/examples/README
mpich/MPI-2-C++/examples/chapter_10_mpi2.cc
mpich/MPI-2-C++/examples/hello_world.cc
mpich/MPI-2-C++/examples/mpirun
mpich/MPI-2-C++/examples/pi.cc
mpich/MPI-2-C++/examples/ring.cc
mpich/MPI-2-C++/examples/topology.cc
mpich/MPI-2-C++/examples/user_bcast.cc
mpich/examples/MPI-2-C++/Makefile
mpich/examples/MPI-2-C++/Makefile.in
mpich/examples/MPI-2-C++/README
mpich/examples/MPI-2-C++/chapter_10_mpi2.cc
mpich/examples/MPI-2-C++/hello_world.cc
mpich/examples/MPI-2-C++/mpirun
mpich/examples/MPI-2-C++/pi.cc
mpich/examples/MPI-2-C++/ring.cc
mpich/examples/MPI-2-C++/topology.cc
mpich/examples/MPI-2-C++/user_bcast.cc
mpich/examples/Makefile
mpich/examples/Makefile.in
mpich/examples/README
mpich/examples/cpi.c
mpich/examples/cpilog.c
mpich/examples/cpip.c
mpich/examples/hello++.cc
mpich/examples/mpirun
mpich/examples/pi3.f
mpich/examples/pi3f90.f90
mpich/examples/pi3p.f
mpich/examples/simpleio.c
mpich/bin/execer
mpich/bin/mpereconfig
mpich/bin/mpereconfig.dat
@ -27,120 +39,90 @@ mpich/bin/mpirun.pg
mpich/bin/serv_p4
mpich/bin/tarch
mpich/bin/tdevice
mpich/bin/upshot
mpich/build/bitmaps/2x2
mpich/build/bitmaps/black
mpich/build/bitmaps/boxes
mpich/build/bitmaps/dimple3
mpich/build/bitmaps/dllines3
mpich/build/bitmaps/dllines4
mpich/build/bitmaps/drlines3
mpich/build/bitmaps/drlines4
mpich/build/bitmaps/gray
mpich/build/bitmaps/gray2
mpich/build/bitmaps/gray3
mpich/build/bitmaps/hlines2
mpich/build/bitmaps/hlines3
mpich/build/bitmaps/hlines4
mpich/build/bitmaps/light_gray
mpich/build/bitmaps/vlines2
mpich/build/bitmaps/vlines3
mpich/build/bitmaps/vlines4
mpich/build/bitmaps/white
mpich/bin/clog2alog
mpich/bin/clog2slog
mpich/bin/clog_print
mpich/bin/logviewer
mpich/bin/mpereconfig.in
mpich/bin/mpirun.rand
mpich/bin/mpirun_dbg.dbx
mpich/bin/mpirun_dbg.ddd
mpich/bin/mpirun_dbg.gdb
mpich/bin/mpirun_dbg.totalview
mpich/bin/mpirun_dbg.xxgdb
mpich/bin/slog_print
mpich/doc/guide.ps.gz
mpich/doc/install.ps.gz
mpich/examples/Makefile
mpich/examples/Makefile.in
mpich/examples/README
mpich/examples/cpi.c
mpich/examples/cpilog.c
mpich/examples/cpip.c
mpich/examples/hello++.cc
mpich/examples/mpirun
mpich/examples/pi3.f
mpich/examples/pi3f90.f90
mpich/examples/pi3p.f
mpich/examples/simpleio.c
mpich/include/basex11.h
mpich/include/mpe.h
mpich/include/mpe_graphics.h
mpich/include/mpe_log.h
mpich/include/mpeconf.h
mpich/include/mpeexten.h
mpich/include/mpetools.h
mpich/include/mpi.h
mpich/include/mpi_errno.h
mpich/include/mpichconf.h
mpich/include/mpi_fortdefs.h
mpich/include/mpidefs.h
mpich/include/mpif.h
mpich/include/mpio.h
mpich/include/mpiof.h
mpich/include/protofix.h
mpich/include/c++/comm.h
mpich/include/c++/comm_inln.h
mpich/include/c++/constants.h
mpich/include/c++/datatype.h
mpich/include/c++/datatype_inln.h
mpich/include/c++/errhandler.h
mpich/include/c++/errhandler_inln.h
mpich/include/c++/exception.h
mpich/include/c++/functions.h
mpich/include/c++/functions_inln.h
mpich/include/c++/group.h
mpich/include/c++/group_inln.h
mpich/include/c++/header.h
mpich/include/c++/intercomm.h
mpich/include/c++/intercomm_inln.h
mpich/include/c++/intracomm.h
mpich/include/c++/intracomm_inln.h
mpich/include/c++/list.h
mpich/include/c++/map.h
mpich/include/c++/mpi++.h
mpich/include/c++/mpi2c++_config.h
mpich/include/c++/op.h
mpich/include/c++/op_inln.h
mpich/include/c++/pcomm.h
mpich/include/c++/pdatatype.h
mpich/include/c++/perrhandler.h
mpich/include/c++/pexception.h
mpich/include/c++/pgroup.h
mpich/include/c++/pgroup_inln.h
mpich/include/c++/pintercomm.h
mpich/include/c++/pintracomm.h
mpich/include/c++/pmpi++.h
mpich/include/c++/pop.h
mpich/include/c++/pop_inln.h
mpich/include/c++/prequest.h
mpich/include/c++/prequest_inln.h
mpich/include/c++/pstatus.h
mpich/include/c++/pstatus_inln.h
mpich/include/c++/ptopology.h
mpich/include/c++/request.h
mpich/include/c++/request_inln.h
mpich/include/c++/status.h
mpich/include/c++/status_inln.h
mpich/include/c++/topology.h
mpich/include/c++/topology_inln.h
mpich/include/mpi2c++/comm.h
mpich/include/mpi2c++/comm_inln.h
mpich/include/mpi2c++/constants.h
mpich/include/mpi2c++/datatype.h
mpich/include/mpi2c++/datatype_inln.h
mpich/include/mpi2c++/errhandler.h
mpich/include/mpi2c++/errhandler_inln.h
mpich/include/mpi2c++/exception.h
mpich/include/mpi2c++/functions.h
mpich/include/mpi2c++/functions_inln.h
mpich/include/mpi2c++/group.h
mpich/include/mpi2c++/group_inln.h
mpich/include/mpi2c++/intercomm.h
mpich/include/mpi2c++/intercomm_inln.h
mpich/include/mpi2c++/intracomm.h
mpich/include/mpi2c++/intracomm_inln.h
mpich/include/mpi2c++/mpi++.h
mpich/include/mpi2c++/op.h
mpich/include/mpi2c++/op_inln.h
mpich/include/mpi2c++/pcomm.h
mpich/include/mpi2c++/pdatatype.h
mpich/include/mpi2c++/perrhandler.h
mpich/include/mpi2c++/pexception.h
mpich/include/mpi2c++/pgroup.h
mpich/include/mpi2c++/pgroup_inln.h
mpich/include/mpi2c++/pintercomm.h
mpich/include/mpi2c++/pintracomm.h
mpich/include/mpi2c++/pmpi++.h
mpich/include/mpi2c++/pop.h
mpich/include/mpi2c++/pop_inln.h
mpich/include/mpi2c++/prequest.h
mpich/include/mpi2c++/prequest_inln.h
mpich/include/mpi2c++/pstatus.h
mpich/include/mpi2c++/pstatus_inln.h
mpich/include/mpi2c++/ptopology.h
mpich/include/mpi2c++/request.h
mpich/include/mpi2c++/request_inln.h
mpich/include/mpi2c++/status.h
mpich/include/mpi2c++/status_inln.h
mpich/include/mpi2c++/topology.h
mpich/include/mpi2c++/topology_inln.h
mpich/include/mpi2c++/mpi2c++_config.h
mpich/include/mpi2c++/mpi2c++_list.h
mpich/include/mpi2c++/mpi2c++_map.h
mpich/lib/libfmpich.a
mpich/lib/liblmpi.a
mpich/lib/libmpe.a
mpich/lib/libmpich++.a
mpich/lib/libmpich.a
mpich/lib/libmpichf.a
mpich/lib/libmpichfarg.a
mpich/lib/libpmpich.a
mpich/lib/libslog.a
mpich/lib/libtmpi.a
mpich/lib/libampe.a
mpich/lib/liblmpe.a
mpich/lib/libmpe_nompi.a
mpich/lib/libmpichfsup.a
mpich/lib/libpmpich++.a
mpich/lib/libtmpe.a
mpich/lib/mpe_prof.o
mpich/lib/mpe_proff.o
mpich/man/mandesc
mpich/mpe_examples/Makefile
mpich/mpe_examples/Makefile.in
mpich/mpe_examples/cpi.c
mpich/mpe_examples/cpilog.c
mpich/mpe_examples/fpi.f
mpich/mpe_examples/fpi.o
mpich/mpe_examples/mpirun
mpich/sbin/chkserv
mpich/sbin/chp4_servs
mpich/sbin/cleanipcs
@ -149,14 +131,339 @@ mpich/sbin/tstmachines
mpich/share/Makefile.sample
mpich/share/machines.freebsd
mpich/share/machines.sample
@dirrm mpich/MPI-2-C++/examples
@dirrm mpich/MPI-2-C++
mpich/share/examples/Makefile
mpich/share/examples/Makefile.in
mpich/share/examples/cpi.c
mpich/share/examples/cpilog.c
mpich/share/examples/fpi.f
mpich/share/examples/mpirun
mpich/share/examples/srtest.c
mpich/share/upshot/bin/upshot
mpich/share/upshot/bitmaps/2x2
mpich/share/upshot/bitmaps/black
mpich/share/upshot/bitmaps/boxes
mpich/share/upshot/bitmaps/dimple3
mpich/share/upshot/bitmaps/dllines3
mpich/share/upshot/bitmaps/dllines4
mpich/share/upshot/bitmaps/drlines3
mpich/share/upshot/bitmaps/drlines4
mpich/share/upshot/bitmaps/gray
mpich/share/upshot/bitmaps/gray2
mpich/share/upshot/bitmaps/gray3
mpich/share/upshot/bitmaps/hlines2
mpich/share/upshot/bitmaps/hlines3
mpich/share/upshot/bitmaps/hlines4
mpich/share/upshot/bitmaps/light_gray
mpich/share/upshot/bitmaps/vlines2
mpich/share/upshot/bitmaps/vlines3
mpich/share/upshot/bitmaps/vlines4
mpich/share/upshot/bitmaps/white
mpich/share/upshot/logfiles/fft.trf
mpich/share/upshot/logfiles/sam_hyp.16.log
mpich/etc/mpichconf.h.dat
mpich/etc/mpichlib.conf
mpich/etc/mpif77.conf
mpich/etc/mpif90.conf
mpich/www/index.html
mpich/www/www1/Jumpshots.html
mpich/www/www1/MPI.html
mpich/www/www1/chp4_servs.html
mpich/www/www1/cleanipcs.html
mpich/www/www1/index.html
mpich/www/www1/mpiCC.html
mpich/www/www1/mpicc.html
mpich/www/www1/mpif77.html
mpich/www/www1/mpif90.html
mpich/www/www1/mpiman.html
mpich/www/www1/mpireconfig.html
mpich/www/www1/mpirun.html
mpich/www/www1/tstmachines.html
mpich/www/www3/Constants.html
mpich/www/www3/MPIO_Request_c2f.html
mpich/www/www3/MPIO_Request_f2c.html
mpich/www/www3/MPIO_Test.html
mpich/www/www3/MPIO_Wait.html
mpich/www/www3/MPI_Abort.html
mpich/www/www3/MPI_Address.html
mpich/www/www3/MPI_Allgather.html
mpich/www/www3/MPI_Allgatherv.html
mpich/www/www3/MPI_Allreduce.html
mpich/www/www3/MPI_Alltoall.html
mpich/www/www3/MPI_Alltoallv.html
mpich/www/www3/MPI_Attr_delete.html
mpich/www/www3/MPI_Attr_get.html
mpich/www/www3/MPI_Attr_put.html
mpich/www/www3/MPI_Barrier.html
mpich/www/www3/MPI_Bcast.html
mpich/www/www3/index.html
mpich/www/www3/MPI_Bsend.html
mpich/www/www3/MPI_Bsend_init.html
mpich/www/www3/MPI_Buffer_attach.html
mpich/www/www3/MPI_Buffer_detach.html
mpich/www/www3/MPI_CHAR.html
mpich/www/www3/MPI_Cancel.html
mpich/www/www3/MPI_Cart_coords.html
mpich/www/www3/MPI_Cart_create.html
mpich/www/www3/MPI_Cart_get.html
mpich/www/www3/MPI_Cart_map.html
mpich/www/www3/MPI_Cart_rank.html
mpich/www/www3/MPI_Cart_shift.html
mpich/www/www3/MPI_Cart_sub.html
mpich/www/www3/MPI_Cartdim_get.html
mpich/www/www3/MPI_Comm_compare.html
mpich/www/www3/MPI_Comm_create.html
mpich/www/www3/MPI_Comm_dup.html
mpich/www/www3/MPI_Comm_free.html
mpich/www/www3/MPI_Comm_group.html
mpich/www/www3/MPI_Comm_rank.html
mpich/www/www3/MPI_Comm_remote_group.html
mpich/www/www3/MPI_Comm_remote_size.html
mpich/www/www3/MPI_Comm_size.html
mpich/www/www3/MPI_Comm_split.html
mpich/www/www3/MPI_Comm_test_inter.html
mpich/www/www3/MPI_DUP_FN.html
mpich/www/www3/MPI_Dims_create.html
mpich/www/www3/MPI_Errhandler_create.html
mpich/www/www3/MPI_Errhandler_free.html
mpich/www/www3/MPI_Errhandler_get.html
mpich/www/www3/MPI_Errhandler_set.html
mpich/www/www3/MPI_Error_class.html
mpich/www/www3/MPI_Error_string.html
mpich/www/www3/MPI_File_c2f.html
mpich/www/www3/MPI_File_close.html
mpich/www/www3/MPI_File_delete.html
mpich/www/www3/MPI_File_f2c.html
mpich/www/www3/MPI_File_get_amode.html
mpich/www/www3/MPI_File_get_atomicity.html
mpich/www/www3/MPI_File_get_byte_offset.html
mpich/www/www3/MPI_File_get_errhandler.html
mpich/www/www3/MPI_File_get_group.html
mpich/www/www3/MPI_File_get_info.html
mpich/www/www3/MPI_File_get_position.html
mpich/www/www3/MPI_File_get_position_shared.html
mpich/www/www3/MPI_File_get_size.html
mpich/www/www3/MPI_File_get_type_extent.html
mpich/www/www3/MPI_File_get_view.html
mpich/www/www3/MPI_File_iread.html
mpich/www/www3/MPI_File_iread_at.html
mpich/www/www3/MPI_File_iread_shared.html
mpich/www/www3/MPI_File_iwrite.html
mpich/www/www3/MPI_File_iwrite_at.html
mpich/www/www3/MPI_File_iwrite_shared.html
mpich/www/www3/MPI_File_open.html
mpich/www/www3/MPI_File_preallocate.html
mpich/www/www3/MPI_File_read.html
mpich/www/www3/MPI_File_read_all.html
mpich/www/www3/MPI_File_read_all_begin.html
mpich/www/www3/MPI_File_read_all_end.html
mpich/www/www3/MPI_File_read_at.html
mpich/www/www3/MPI_File_read_at_all.html
mpich/www/www3/MPI_File_read_at_all_begin.html
mpich/www/www3/MPI_File_read_at_all_end.html
mpich/www/www3/MPI_File_read_ordered.html
mpich/www/www3/MPI_File_read_ordered_begin.html
mpich/www/www3/MPI_File_read_ordered_end.html
mpich/www/www3/MPI_File_read_shared.html
mpich/www/www3/MPI_File_seek.html
mpich/www/www3/MPI_File_seek_shared.html
mpich/www/www3/MPI_File_set_atomicity.html
mpich/www/www3/MPI_File_set_errhandler.html
mpich/www/www3/MPI_File_set_info.html
mpich/www/www3/MPI_File_set_size.html
mpich/www/www3/MPI_File_set_view.html
mpich/www/www3/MPI_File_sync.html
mpich/www/www3/MPI_File_write.html
mpich/www/www3/MPI_Gather.html
mpich/www/www3/MPI_File_write_all.html
mpich/www/www3/MPI_File_write_all_begin.html
mpich/www/www3/MPI_File_write_all_end.html
mpich/www/www3/MPI_File_write_at.html
mpich/www/www3/MPI_File_write_at_all.html
mpich/www/www3/MPI_File_write_at_all_begin.html
mpich/www/www3/MPI_File_write_at_all_end.html
mpich/www/www3/MPI_File_write_ordered.html
mpich/www/www3/MPI_File_write_ordered_begin.html
mpich/www/www3/MPI_File_write_ordered_end.html
mpich/www/www3/MPI_File_write_shared.html
mpich/www/www3/MPI_Finalize.html
mpich/www/www3/MPI_Finalized.html
mpich/www/www3/MPI_Gatherv.html
mpich/www/www3/MPI_Get_count.html
mpich/www/www3/MPI_Get_elements.html
mpich/www/www3/MPI_Get_processor_name.html
mpich/www/www3/MPI_Get_version.html
mpich/www/www3/MPI_Graph_create.html
mpich/www/www3/MPI_Graph_get.html
mpich/www/www3/MPI_Graph_map.html
mpich/www/www3/MPI_Graph_neighbors.html
mpich/www/www3/MPI_Graph_neighbors_count.html
mpich/www/www3/MPI_Graphdims_get.html
mpich/www/www3/MPI_Group_compare.html
mpich/www/www3/MPI_Group_difference.html
mpich/www/www3/MPI_Group_excl.html
mpich/www/www3/MPI_Group_free.html
mpich/www/www3/MPI_Group_incl.html
mpich/www/www3/MPI_Group_intersection.html
mpich/www/www3/MPI_Group_range_excl.html
mpich/www/www3/MPI_Group_range_incl.html
mpich/www/www3/MPI_Group_rank.html
mpich/www/www3/MPI_Group_size.html
mpich/www/www3/MPI_Group_translate_ranks.html
mpich/www/www3/MPI_Group_union.html
mpich/www/www3/MPI_Ibsend.html
mpich/www/www3/MPI_Info_c2f.html
mpich/www/www3/MPI_Info_create.html
mpich/www/www3/MPI_Info_delete.html
mpich/www/www3/MPI_Info_dup.html
mpich/www/www3/MPI_Info_f2c.html
mpich/www/www3/MPI_Info_free.html
mpich/www/www3/MPI_Info_get.html
mpich/www/www3/MPI_Info_get_nkeys.html
mpich/www/www3/MPI_Info_get_nthkey.html
mpich/www/www3/MPI_Info_get_valuelen.html
mpich/www/www3/MPI_Info_set.html
mpich/www/www3/MPI_Init.html
mpich/www/www3/MPI_Init_thread.html
mpich/www/www3/MPI_Initialized.html
mpich/www/www3/MPI_Int2handle.html
mpich/www/www3/MPI_Intercomm_create.html
mpich/www/www3/MPI_Intercomm_merge.html
mpich/www/www3/MPI_Iprobe.html
mpich/www/www3/MPI_Irecv.html
mpich/www/www3/MPI_Irsend.html
mpich/www/www3/MPI_Isend.html
mpich/www/www3/MPI_Issend.html
mpich/www/www3/MPI_Keyval_create.html
mpich/www/www3/MPI_Keyval_free.html
mpich/www/www3/MPI_NULL_COPY_FN.html
mpich/www/www3/MPI_NULL_DELETE_FN.html
mpich/www/www3/MPI_Op_create.html
mpich/www/www3/MPI_Op_free.html
mpich/www/www3/MPI_Pack.html
mpich/www/www3/MPI_Pack_size.html
mpich/www/www3/MPI_Pcontrol.html
mpich/www/www3/MPI_Probe.html
mpich/www/www3/MPI_Recv.html
mpich/www/www3/MPI_Recv_init.html
mpich/www/www3/MPI_Reduce.html
mpich/www/www3/MPI_Reduce_scatter.html
mpich/www/www3/MPI_Request_c2f.html
mpich/www/www3/MPI_Request_free.html
mpich/www/www3/MPI_Rsend.html
mpich/www/www3/MPI_Rsend_init.html
mpich/www/www3/MPI_Scan.html
mpich/www/www3/MPI_Scatter.html
mpich/www/www3/MPI_Scatterv.html
mpich/www/www3/MPI_Send.html
mpich/www/www3/MPI_Ssend.html
mpich/www/www3/MPI_Send_init.html
mpich/www/www3/MPI_Sendrecv.html
mpich/www/www3/MPI_Sendrecv_replace.html
mpich/www/www3/MPI_Ssend_init.html
mpich/www/www3/MPI_Start.html
mpich/www/www3/MPI_Startall.html
mpich/www/www3/MPI_Status_c2f.html
mpich/www/www3/MPI_Status_set_cancelled.html
mpich/www/www3/MPI_Status_set_elements.html
mpich/www/www3/MPI_Test.html
mpich/www/www3/MPI_Test_cancelled.html
mpich/www/www3/MPI_Testall.html
mpich/www/www3/MPI_Testany.html
mpich/www/www3/MPI_Testsome.html
mpich/www/www3/MPI_Topo_test.html
mpich/www/www3/MPI_Type_commit.html
mpich/www/www3/MPI_Type_extent.html
mpich/www/www3/MPI_Type_contiguous.html
mpich/www/www3/MPI_Type_create_darray.html
mpich/www/www3/MPI_Type_create_indexed_block.html
mpich/www/www3/MPI_Type_create_subarray.html
mpich/www/www3/MPI_Type_free.html
mpich/www/www3/MPI_Type_get_contents.html
mpich/www/www3/MPI_Type_get_envelope.html
mpich/www/www3/MPI_Type_hindexed.html
mpich/www/www3/MPI_Type_hvector.html
mpich/www/www3/MPI_Type_indexed.html
mpich/www/www3/MPI_Type_lb.html
mpich/www/www3/MPI_Type_size.html
mpich/www/www3/MPI_Type_struct.html
mpich/www/www3/MPI_Type_ub.html
mpich/www/www3/MPI_Type_vector.html
mpich/www/www3/MPI_Unpack.html
mpich/www/www3/MPI_Wait.html
mpich/www/www3/MPI_Waitall.html
mpich/www/www3/MPI_Waitany.html
mpich/www/www3/MPI_Waitsome.html
mpich/www/www3/MPI_Wtick.html
mpich/www/www3/MPI_Wtime.html
mpich/www/www4/CLOG_Finalize.html
mpich/www/www4/CLOG_Init.html
mpich/www/www4/CLOG_Output.html
mpich/www/www4/CLOG_commtype.html
mpich/www/www4/CLOG_cput.html
mpich/www/www4/CLOG_csync.html
mpich/www/www4/CLOG_get_new_event.html
mpich/www/www4/CLOG_get_new_state.html
mpich/www/www4/CLOG_init_buffers.html
mpich/www/www4/CLOG_mergelogs.html
mpich/www/www4/CLOG_mergend.html
mpich/www/www4/CLOG_msgtype.html
mpich/www/www4/CLOG_newbuff.html
mpich/www/www4/CLOG_nodebuffer2disk.html
mpich/www/www4/CLOG_procbuf.html
mpich/www/www4/CLOG_reclen.html
mpich/www/www4/CLOG_rectype.html
mpich/www/www4/CLOG_reinit_buff.html
mpich/www/www4/CLOG_treesetup.html
mpich/www/www4/MPE.html
mpich/www/www4/MPE_Add_RGB_color.html
mpich/www/www4/MPE_CaptureFile.html
mpich/www/www4/MPE_Close_graphics.html
mpich/www/www4/MPE_Comm_global_rank.html
mpich/www/www4/MPE_Counter_create.html
mpich/www/www4/MPE_Counter_free.html
mpich/www/www4/MPE_Counter_nxtval.html
mpich/www/www4/MPE_Decomp1d.html
mpich/www/www4/MPE_Describe_event.html
mpich/www/www4/MPE_Describe_state.html
mpich/www/www4/MPE_Draw_circle.html
mpich/www/www4/MPE_Draw_line.html
mpich/www/www4/MPE_Draw_logic.html
mpich/www/www4/MPE_Update.html
mpich/www/www4/MPE_Draw_point.html
mpich/www/www4/MPE_Draw_points.html
mpich/www/www4/MPE_Draw_string.html
mpich/www/www4/MPE_Fill_circle.html
mpich/www/www4/MPE_Fill_rectangle.html
mpich/www/www4/MPE_Finish_log.html
mpich/www/www4/MPE_GetTags.html
mpich/www/www4/MPE_Get_mouse_press.html
mpich/www/www4/MPE_IO_Stdout_to_file.html
mpich/www/www4/MPE_Iget_mouse_press.html
mpich/www/www4/MPE_Init_log.html
mpich/www/www4/MPE_Initialized_logging.html
mpich/www/www4/MPE_Line_thickness.html
mpich/www/www4/MPE_Log_event.html
mpich/www/www4/MPE_Log_get_event_number.html
mpich/www/www4/index.html
mpich/www/www4/MPE_Log_receive.html
mpich/www/www4/MPE_Log_send.html
mpich/www/www4/MPE_Make_color_array.html
mpich/www/www4/MPE_Num_colors.html
mpich/www/www4/MPE_Open_graphics.html
mpich/www/www4/MPE_Print_datatype_pack_action.html
mpich/www/www4/MPE_Print_datatype_unpack_action.html
mpich/www/www4/MPE_ReturnTags.html
mpich/www/www4/MPE_Seq_begin.html
mpich/www/www4/MPE_Seq_end.html
mpich/www/www4/MPE_Start_log.html
mpich/www/www4/MPE_Stop_log.html
mpich/www/www4/MPE_TagsEnd.html
@dirrm mpich/bin
@dirrm mpich/build/bitmaps
@dirrm mpich/build
@dirrm mpich/doc
@dirrm mpich/etc
@dirrm mpich/examples/MPI-2-C++
@dirrm mpich/examples
@dirrm mpich/include/c++
@dirrm mpich/include/mpi2c++
@dirrm mpich/include
@dirrm mpich/lib/shared
@dirrm mpich/lib
@ -164,7 +471,17 @@ mpich/share/machines.sample
@dirrm mpich/man/man3
@dirrm mpich/man/man4
@dirrm mpich/man
@dirrm mpich/mpe_examples
@dirrm mpich/sbin
@dirrm mpich/share/examples
@dirrm mpich/share/upshot/bitmaps
@dirrm mpich/share/upshot/bin
@dirrm mpich/share/upshot/logfiles
@dirrm mpich/share/upshot/sbin
@dirrm mpich/share/upshot
@dirrm mpich/share
@dirrm mpich/www/www1
@dirrm mpich/www/www3
@dirrm mpich/www/www4
@dirrm mpich/www
@dirrm mpich

View File

@ -6,12 +6,12 @@
#
PORTNAME= mpich
PORTVERSION= 1.2.0
PORTVERSION= 1.2.1
CATEGORIES= net
MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/
PATCH_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/patch/1.2.0/
PATCHFILES= 4885 4889 4959 4992 4997 5226 r157 rpvfs
PATCH_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/patch/1.2.1/
#PATCHFILES= this-space-reserved-for-future-use
MAINTAINER= dbader@eece.unm.edu
@ -35,7 +35,7 @@ CONFIGURE_ARGS+= -rsh="${LOCALBASE}/bin/ssh"
ALL_TARGET=
MANPREFIX= ${PREFIX}/mpich
MAN1= Jumpshot.1 MPI.1 chp4_servs.1 cleanipcs.1 mpiCC.1 mpicc.1 \
MAN1= Jumpshots.1 MPI.1 chp4_servs.1 cleanipcs.1 mpiCC.1 mpicc.1 \
mpif77.1 mpif90.1 mpiman.1 mpireconfig.1 mpirun.1 \
tstmachines.1
MAN3= Constants.3 MPI_2COMPLEX.3 MPI_2DOUBLE_COMPLEX.3 \
@ -112,7 +112,7 @@ MAN3= Constants.3 MPI_2COMPLEX.3 MPI_2DOUBLE_COMPLEX.3 \
MPI_Scatter.3 MPI_Scatterv.3 MPI_Send.3 MPI_Send_init.3 \
MPI_Sendrecv.3 MPI_Sendrecv_replace.3 MPI_Ssend.3 \
MPI_Ssend_init.3 MPI_Start.3 MPI_Startall.3 MPI_Status_c2f.3 \
MPI_Status_f2c.3 MPI_Status_set_cancelled.3 \
MPI_Status_set_cancelled.3 \
MPI_Status_set_elements.3 MPI_TAG.3 MPI_TAG_UB.3 MPI_Test.3 \
MPI_Test_cancelled.3 MPI_Testall.3 MPI_Testany.3 \
MPI_Testsome.3 MPI_Topo_test.3 MPI_Type_commit.3 \
@ -156,13 +156,14 @@ MAN3= Constants.3 MPI_2COMPLEX.3 MPI_2DOUBLE_COMPLEX.3 \
MPIO_Request_f2c.3 MPI_File_get_position.3 \
MPI_File_preallocate.3 MPI_File_read_at_all_begin.3 \
MPI_File_set_size.3 MPI_File_write_at_all_begin.3 \
MPI_Info_get_nthkey.3 MPI_Type_create_subarray.3
MPI_Info_get_nthkey.3 MPI_Type_create_subarray.3 \
MPI_File_get_errhandler.3 MPI_File_set_errhandler.3
MAN4= CLOG_Finalize.4 CLOG_Init.4 CLOG_Output.4 CLOG_commtype.4 \
CLOG_cput.4 CLOG_csync.4 CLOG_get_new_event.4 \
CLOG_get_new_state.4 CLOG_init_buffers.4 \
CLOG_init_tmpfilename.4 CLOG_mergelogs.4 CLOG_mergend.4 \
CLOG_mergelogs.4 CLOG_mergend.4 CLOG_nodebuffer2disk.4 \
CLOG_msgtype.4 CLOG_newbuff.4 CLOG_procbuf.4 CLOG_reclen.4 \
CLOG_rectype.4 CLOG_reinit_buff.4 CLOG_temp_log.4 \
CLOG_rectype.4 CLOG_reinit_buff.4 \
CLOG_treesetup.4 MPE.4 MPE_Add_RGB_color.4 MPE_CaptureFile.4 \
MPE_Close_graphics.4 MPE_Comm_global_rank.4 \
MPE_Counter_create.4 MPE_Counter_free.4 MPE_Counter_nxtval.4 \

View File

@ -1,9 +1 @@
MD5 (mpich/mpich-1.2.0.tar.gz) = 0f111463139ba389b5cdc347ad4c940b
MD5 (mpich/4885) = 3c5aa55894228ec404f77a696475838b
MD5 (mpich/4889) = 2277c62718ea7dbd5525f4fcff5544f9
MD5 (mpich/4959) = 4882b7ef2842a10758914765a828dda9
MD5 (mpich/4992) = ffe25b0161c604151d434f9c2e6055a0
MD5 (mpich/4997) = a0de6784d7909397ec4f36628774c6f6
MD5 (mpich/5226) = 009b9d21de64062bec0cb410c9a3cacd
MD5 (mpich/r157) = a66109f00cb8822174371e74b9963aba
MD5 (mpich/rpvfs) = d98049c289efa41cd94ce14541bbe697
MD5 (mpich/mpich-1.2.1.tar.gz) = d5efae9f23df2aa6f0f28492a7697c35

View File

@ -1,14 +1,13 @@
--- romio/adio/common/ad_fstype.c.orig Mon Jun 15 13:45:25 1998
+++ romio/adio/common/ad_fstype.c Mon Oct 19 16:23:55 1998
@@ -91,7 +91,11 @@
if (err) *error_code = MPI_ERR_UNKNOWN;
else {
+#if (__FreeBSD_version>300004)
+ if ( !strncmp("nfs",fsbuf.f_fstypename,3) ) *fstype = ADIO_NFS;
+#else
if (fsbuf.f_type == MOUNT_NFS) *fstype = ADIO_NFS;
--- romio/adio/common/ad_fstype.c-orig Wed Jul 19 16:38:31 2000
+++ romio/adio/common/ad_fstype.c Thu Sep 7 18:47:44 2000
@@ -26,8 +26,10 @@
#ifdef SX4
#include <sys/stat.h>
#endif
+#ifndef FREEBSD
#ifdef PVFS
#include "pvfs_config.h"
+#endif
else *fstype = ADIO_UFS;
*error_code = MPI_SUCCESS;
}
#endif
void ADIO_FileSysType(char *filename, int *fstype, int *error_code)

View File

@ -1,19 +0,0 @@
--- util/mpiinstall.in.orig Mon Nov 29 20:48:06 1999
+++ util/mpiinstall.in Sat Dec 25 07:57:38 1999
@@ -886,12 +886,12 @@
MkDir $mandir
CopyFile $top_srcdir/man/mandesc $mandir
# No files in man5 (was ADI routines)
- for dir in man1 man3 man4 ; do
- MkDir $mandir/$dir
- for file in $top_srcdir/man/$dir/* ; do
+ for manxdir in man1 man3 man4 ; do
+ MkDir $mandir/$manxdir
+ for file in $top_srcdir/man/$manxdir/* ; do
# man5 in particular might be empty; be careful
if [ -f "$file" -a -s "$file" ] ; then
- CopyFile $file $mandir/$dir
+ CopyFile $file $mandir/$manxdir
fi
done
done

View File

@ -1,13 +1,25 @@
mpich/MPI-2-C++/examples/Makefile
mpich/MPI-2-C++/examples/Makefile.in
mpich/MPI-2-C++/examples/README
mpich/MPI-2-C++/examples/chapter_10_mpi2.cc
mpich/MPI-2-C++/examples/hello_world.cc
mpich/MPI-2-C++/examples/mpirun
mpich/MPI-2-C++/examples/pi.cc
mpich/MPI-2-C++/examples/ring.cc
mpich/MPI-2-C++/examples/topology.cc
mpich/MPI-2-C++/examples/user_bcast.cc
mpich/examples/MPI-2-C++/Makefile
mpich/examples/MPI-2-C++/Makefile.in
mpich/examples/MPI-2-C++/README
mpich/examples/MPI-2-C++/chapter_10_mpi2.cc
mpich/examples/MPI-2-C++/hello_world.cc
mpich/examples/MPI-2-C++/mpirun
mpich/examples/MPI-2-C++/pi.cc
mpich/examples/MPI-2-C++/ring.cc
mpich/examples/MPI-2-C++/topology.cc
mpich/examples/MPI-2-C++/user_bcast.cc
mpich/examples/Makefile
mpich/examples/Makefile.in
mpich/examples/README
mpich/examples/cpi.c
mpich/examples/cpilog.c
mpich/examples/cpip.c
mpich/examples/hello++.cc
mpich/examples/mpirun
mpich/examples/pi3.f
mpich/examples/pi3f90.f90
mpich/examples/pi3p.f
mpich/examples/simpleio.c
mpich/bin/execer
mpich/bin/mpereconfig
mpich/bin/mpereconfig.dat
@ -27,120 +39,90 @@ mpich/bin/mpirun.pg
mpich/bin/serv_p4
mpich/bin/tarch
mpich/bin/tdevice
mpich/bin/upshot
mpich/build/bitmaps/2x2
mpich/build/bitmaps/black
mpich/build/bitmaps/boxes
mpich/build/bitmaps/dimple3
mpich/build/bitmaps/dllines3
mpich/build/bitmaps/dllines4
mpich/build/bitmaps/drlines3
mpich/build/bitmaps/drlines4
mpich/build/bitmaps/gray
mpich/build/bitmaps/gray2
mpich/build/bitmaps/gray3
mpich/build/bitmaps/hlines2
mpich/build/bitmaps/hlines3
mpich/build/bitmaps/hlines4
mpich/build/bitmaps/light_gray
mpich/build/bitmaps/vlines2
mpich/build/bitmaps/vlines3
mpich/build/bitmaps/vlines4
mpich/build/bitmaps/white
mpich/bin/clog2alog
mpich/bin/clog2slog
mpich/bin/clog_print
mpich/bin/logviewer
mpich/bin/mpereconfig.in
mpich/bin/mpirun.rand
mpich/bin/mpirun_dbg.dbx
mpich/bin/mpirun_dbg.ddd
mpich/bin/mpirun_dbg.gdb
mpich/bin/mpirun_dbg.totalview
mpich/bin/mpirun_dbg.xxgdb
mpich/bin/slog_print
mpich/doc/guide.ps.gz
mpich/doc/install.ps.gz
mpich/examples/Makefile
mpich/examples/Makefile.in
mpich/examples/README
mpich/examples/cpi.c
mpich/examples/cpilog.c
mpich/examples/cpip.c
mpich/examples/hello++.cc
mpich/examples/mpirun
mpich/examples/pi3.f
mpich/examples/pi3f90.f90
mpich/examples/pi3p.f
mpich/examples/simpleio.c
mpich/include/basex11.h
mpich/include/mpe.h
mpich/include/mpe_graphics.h
mpich/include/mpe_log.h
mpich/include/mpeconf.h
mpich/include/mpeexten.h
mpich/include/mpetools.h
mpich/include/mpi.h
mpich/include/mpi_errno.h
mpich/include/mpichconf.h
mpich/include/mpi_fortdefs.h
mpich/include/mpidefs.h
mpich/include/mpif.h
mpich/include/mpio.h
mpich/include/mpiof.h
mpich/include/protofix.h
mpich/include/c++/comm.h
mpich/include/c++/comm_inln.h
mpich/include/c++/constants.h
mpich/include/c++/datatype.h
mpich/include/c++/datatype_inln.h
mpich/include/c++/errhandler.h
mpich/include/c++/errhandler_inln.h
mpich/include/c++/exception.h
mpich/include/c++/functions.h
mpich/include/c++/functions_inln.h
mpich/include/c++/group.h
mpich/include/c++/group_inln.h
mpich/include/c++/header.h
mpich/include/c++/intercomm.h
mpich/include/c++/intercomm_inln.h
mpich/include/c++/intracomm.h
mpich/include/c++/intracomm_inln.h
mpich/include/c++/list.h
mpich/include/c++/map.h
mpich/include/c++/mpi++.h
mpich/include/c++/mpi2c++_config.h
mpich/include/c++/op.h
mpich/include/c++/op_inln.h
mpich/include/c++/pcomm.h
mpich/include/c++/pdatatype.h
mpich/include/c++/perrhandler.h
mpich/include/c++/pexception.h
mpich/include/c++/pgroup.h
mpich/include/c++/pgroup_inln.h
mpich/include/c++/pintercomm.h
mpich/include/c++/pintracomm.h
mpich/include/c++/pmpi++.h
mpich/include/c++/pop.h
mpich/include/c++/pop_inln.h
mpich/include/c++/prequest.h
mpich/include/c++/prequest_inln.h
mpich/include/c++/pstatus.h
mpich/include/c++/pstatus_inln.h
mpich/include/c++/ptopology.h
mpich/include/c++/request.h
mpich/include/c++/request_inln.h
mpich/include/c++/status.h
mpich/include/c++/status_inln.h
mpich/include/c++/topology.h
mpich/include/c++/topology_inln.h
mpich/include/mpi2c++/comm.h
mpich/include/mpi2c++/comm_inln.h
mpich/include/mpi2c++/constants.h
mpich/include/mpi2c++/datatype.h
mpich/include/mpi2c++/datatype_inln.h
mpich/include/mpi2c++/errhandler.h
mpich/include/mpi2c++/errhandler_inln.h
mpich/include/mpi2c++/exception.h
mpich/include/mpi2c++/functions.h
mpich/include/mpi2c++/functions_inln.h
mpich/include/mpi2c++/group.h
mpich/include/mpi2c++/group_inln.h
mpich/include/mpi2c++/intercomm.h
mpich/include/mpi2c++/intercomm_inln.h
mpich/include/mpi2c++/intracomm.h
mpich/include/mpi2c++/intracomm_inln.h
mpich/include/mpi2c++/mpi++.h
mpich/include/mpi2c++/op.h
mpich/include/mpi2c++/op_inln.h
mpich/include/mpi2c++/pcomm.h
mpich/include/mpi2c++/pdatatype.h
mpich/include/mpi2c++/perrhandler.h
mpich/include/mpi2c++/pexception.h
mpich/include/mpi2c++/pgroup.h
mpich/include/mpi2c++/pgroup_inln.h
mpich/include/mpi2c++/pintercomm.h
mpich/include/mpi2c++/pintracomm.h
mpich/include/mpi2c++/pmpi++.h
mpich/include/mpi2c++/pop.h
mpich/include/mpi2c++/pop_inln.h
mpich/include/mpi2c++/prequest.h
mpich/include/mpi2c++/prequest_inln.h
mpich/include/mpi2c++/pstatus.h
mpich/include/mpi2c++/pstatus_inln.h
mpich/include/mpi2c++/ptopology.h
mpich/include/mpi2c++/request.h
mpich/include/mpi2c++/request_inln.h
mpich/include/mpi2c++/status.h
mpich/include/mpi2c++/status_inln.h
mpich/include/mpi2c++/topology.h
mpich/include/mpi2c++/topology_inln.h
mpich/include/mpi2c++/mpi2c++_config.h
mpich/include/mpi2c++/mpi2c++_list.h
mpich/include/mpi2c++/mpi2c++_map.h
mpich/lib/libfmpich.a
mpich/lib/liblmpi.a
mpich/lib/libmpe.a
mpich/lib/libmpich++.a
mpich/lib/libmpich.a
mpich/lib/libmpichf.a
mpich/lib/libmpichfarg.a
mpich/lib/libpmpich.a
mpich/lib/libslog.a
mpich/lib/libtmpi.a
mpich/lib/libampe.a
mpich/lib/liblmpe.a
mpich/lib/libmpe_nompi.a
mpich/lib/libmpichfsup.a
mpich/lib/libpmpich++.a
mpich/lib/libtmpe.a
mpich/lib/mpe_prof.o
mpich/lib/mpe_proff.o
mpich/man/mandesc
mpich/mpe_examples/Makefile
mpich/mpe_examples/Makefile.in
mpich/mpe_examples/cpi.c
mpich/mpe_examples/cpilog.c
mpich/mpe_examples/fpi.f
mpich/mpe_examples/fpi.o
mpich/mpe_examples/mpirun
mpich/sbin/chkserv
mpich/sbin/chp4_servs
mpich/sbin/cleanipcs
@ -149,14 +131,339 @@ mpich/sbin/tstmachines
mpich/share/Makefile.sample
mpich/share/machines.freebsd
mpich/share/machines.sample
@dirrm mpich/MPI-2-C++/examples
@dirrm mpich/MPI-2-C++
mpich/share/examples/Makefile
mpich/share/examples/Makefile.in
mpich/share/examples/cpi.c
mpich/share/examples/cpilog.c
mpich/share/examples/fpi.f
mpich/share/examples/mpirun
mpich/share/examples/srtest.c
mpich/share/upshot/bin/upshot
mpich/share/upshot/bitmaps/2x2
mpich/share/upshot/bitmaps/black
mpich/share/upshot/bitmaps/boxes
mpich/share/upshot/bitmaps/dimple3
mpich/share/upshot/bitmaps/dllines3
mpich/share/upshot/bitmaps/dllines4
mpich/share/upshot/bitmaps/drlines3
mpich/share/upshot/bitmaps/drlines4
mpich/share/upshot/bitmaps/gray
mpich/share/upshot/bitmaps/gray2
mpich/share/upshot/bitmaps/gray3
mpich/share/upshot/bitmaps/hlines2
mpich/share/upshot/bitmaps/hlines3
mpich/share/upshot/bitmaps/hlines4
mpich/share/upshot/bitmaps/light_gray
mpich/share/upshot/bitmaps/vlines2
mpich/share/upshot/bitmaps/vlines3
mpich/share/upshot/bitmaps/vlines4
mpich/share/upshot/bitmaps/white
mpich/share/upshot/logfiles/fft.trf
mpich/share/upshot/logfiles/sam_hyp.16.log
mpich/etc/mpichconf.h.dat
mpich/etc/mpichlib.conf
mpich/etc/mpif77.conf
mpich/etc/mpif90.conf
mpich/www/index.html
mpich/www/www1/Jumpshots.html
mpich/www/www1/MPI.html
mpich/www/www1/chp4_servs.html
mpich/www/www1/cleanipcs.html
mpich/www/www1/index.html
mpich/www/www1/mpiCC.html
mpich/www/www1/mpicc.html
mpich/www/www1/mpif77.html
mpich/www/www1/mpif90.html
mpich/www/www1/mpiman.html
mpich/www/www1/mpireconfig.html
mpich/www/www1/mpirun.html
mpich/www/www1/tstmachines.html
mpich/www/www3/Constants.html
mpich/www/www3/MPIO_Request_c2f.html
mpich/www/www3/MPIO_Request_f2c.html
mpich/www/www3/MPIO_Test.html
mpich/www/www3/MPIO_Wait.html
mpich/www/www3/MPI_Abort.html
mpich/www/www3/MPI_Address.html
mpich/www/www3/MPI_Allgather.html
mpich/www/www3/MPI_Allgatherv.html
mpich/www/www3/MPI_Allreduce.html
mpich/www/www3/MPI_Alltoall.html
mpich/www/www3/MPI_Alltoallv.html
mpich/www/www3/MPI_Attr_delete.html
mpich/www/www3/MPI_Attr_get.html
mpich/www/www3/MPI_Attr_put.html
mpich/www/www3/MPI_Barrier.html
mpich/www/www3/MPI_Bcast.html
mpich/www/www3/index.html
mpich/www/www3/MPI_Bsend.html
mpich/www/www3/MPI_Bsend_init.html
mpich/www/www3/MPI_Buffer_attach.html
mpich/www/www3/MPI_Buffer_detach.html
mpich/www/www3/MPI_CHAR.html
mpich/www/www3/MPI_Cancel.html
mpich/www/www3/MPI_Cart_coords.html
mpich/www/www3/MPI_Cart_create.html
mpich/www/www3/MPI_Cart_get.html
mpich/www/www3/MPI_Cart_map.html
mpich/www/www3/MPI_Cart_rank.html
mpich/www/www3/MPI_Cart_shift.html
mpich/www/www3/MPI_Cart_sub.html
mpich/www/www3/MPI_Cartdim_get.html
mpich/www/www3/MPI_Comm_compare.html
mpich/www/www3/MPI_Comm_create.html
mpich/www/www3/MPI_Comm_dup.html
mpich/www/www3/MPI_Comm_free.html
mpich/www/www3/MPI_Comm_group.html
mpich/www/www3/MPI_Comm_rank.html
mpich/www/www3/MPI_Comm_remote_group.html
mpich/www/www3/MPI_Comm_remote_size.html
mpich/www/www3/MPI_Comm_size.html
mpich/www/www3/MPI_Comm_split.html
mpich/www/www3/MPI_Comm_test_inter.html
mpich/www/www3/MPI_DUP_FN.html
mpich/www/www3/MPI_Dims_create.html
mpich/www/www3/MPI_Errhandler_create.html
mpich/www/www3/MPI_Errhandler_free.html
mpich/www/www3/MPI_Errhandler_get.html
mpich/www/www3/MPI_Errhandler_set.html
mpich/www/www3/MPI_Error_class.html
mpich/www/www3/MPI_Error_string.html
mpich/www/www3/MPI_File_c2f.html
mpich/www/www3/MPI_File_close.html
mpich/www/www3/MPI_File_delete.html
mpich/www/www3/MPI_File_f2c.html
mpich/www/www3/MPI_File_get_amode.html
mpich/www/www3/MPI_File_get_atomicity.html
mpich/www/www3/MPI_File_get_byte_offset.html
mpich/www/www3/MPI_File_get_errhandler.html
mpich/www/www3/MPI_File_get_group.html
mpich/www/www3/MPI_File_get_info.html
mpich/www/www3/MPI_File_get_position.html
mpich/www/www3/MPI_File_get_position_shared.html
mpich/www/www3/MPI_File_get_size.html
mpich/www/www3/MPI_File_get_type_extent.html
mpich/www/www3/MPI_File_get_view.html
mpich/www/www3/MPI_File_iread.html
mpich/www/www3/MPI_File_iread_at.html
mpich/www/www3/MPI_File_iread_shared.html
mpich/www/www3/MPI_File_iwrite.html
mpich/www/www3/MPI_File_iwrite_at.html
mpich/www/www3/MPI_File_iwrite_shared.html
mpich/www/www3/MPI_File_open.html
mpich/www/www3/MPI_File_preallocate.html
mpich/www/www3/MPI_File_read.html
mpich/www/www3/MPI_File_read_all.html
mpich/www/www3/MPI_File_read_all_begin.html
mpich/www/www3/MPI_File_read_all_end.html
mpich/www/www3/MPI_File_read_at.html
mpich/www/www3/MPI_File_read_at_all.html
mpich/www/www3/MPI_File_read_at_all_begin.html
mpich/www/www3/MPI_File_read_at_all_end.html
mpich/www/www3/MPI_File_read_ordered.html
mpich/www/www3/MPI_File_read_ordered_begin.html
mpich/www/www3/MPI_File_read_ordered_end.html
mpich/www/www3/MPI_File_read_shared.html
mpich/www/www3/MPI_File_seek.html
mpich/www/www3/MPI_File_seek_shared.html
mpich/www/www3/MPI_File_set_atomicity.html
mpich/www/www3/MPI_File_set_errhandler.html
mpich/www/www3/MPI_File_set_info.html
mpich/www/www3/MPI_File_set_size.html
mpich/www/www3/MPI_File_set_view.html
mpich/www/www3/MPI_File_sync.html
mpich/www/www3/MPI_File_write.html
mpich/www/www3/MPI_Gather.html
mpich/www/www3/MPI_File_write_all.html
mpich/www/www3/MPI_File_write_all_begin.html
mpich/www/www3/MPI_File_write_all_end.html
mpich/www/www3/MPI_File_write_at.html
mpich/www/www3/MPI_File_write_at_all.html
mpich/www/www3/MPI_File_write_at_all_begin.html
mpich/www/www3/MPI_File_write_at_all_end.html
mpich/www/www3/MPI_File_write_ordered.html
mpich/www/www3/MPI_File_write_ordered_begin.html
mpich/www/www3/MPI_File_write_ordered_end.html
mpich/www/www3/MPI_File_write_shared.html
mpich/www/www3/MPI_Finalize.html
mpich/www/www3/MPI_Finalized.html
mpich/www/www3/MPI_Gatherv.html
mpich/www/www3/MPI_Get_count.html
mpich/www/www3/MPI_Get_elements.html
mpich/www/www3/MPI_Get_processor_name.html
mpich/www/www3/MPI_Get_version.html
mpich/www/www3/MPI_Graph_create.html
mpich/www/www3/MPI_Graph_get.html
mpich/www/www3/MPI_Graph_map.html
mpich/www/www3/MPI_Graph_neighbors.html
mpich/www/www3/MPI_Graph_neighbors_count.html
mpich/www/www3/MPI_Graphdims_get.html
mpich/www/www3/MPI_Group_compare.html
mpich/www/www3/MPI_Group_difference.html
mpich/www/www3/MPI_Group_excl.html
mpich/www/www3/MPI_Group_free.html
mpich/www/www3/MPI_Group_incl.html
mpich/www/www3/MPI_Group_intersection.html
mpich/www/www3/MPI_Group_range_excl.html
mpich/www/www3/MPI_Group_range_incl.html
mpich/www/www3/MPI_Group_rank.html
mpich/www/www3/MPI_Group_size.html
mpich/www/www3/MPI_Group_translate_ranks.html
mpich/www/www3/MPI_Group_union.html
mpich/www/www3/MPI_Ibsend.html
mpich/www/www3/MPI_Info_c2f.html
mpich/www/www3/MPI_Info_create.html
mpich/www/www3/MPI_Info_delete.html
mpich/www/www3/MPI_Info_dup.html
mpich/www/www3/MPI_Info_f2c.html
mpich/www/www3/MPI_Info_free.html
mpich/www/www3/MPI_Info_get.html
mpich/www/www3/MPI_Info_get_nkeys.html
mpich/www/www3/MPI_Info_get_nthkey.html
mpich/www/www3/MPI_Info_get_valuelen.html
mpich/www/www3/MPI_Info_set.html
mpich/www/www3/MPI_Init.html
mpich/www/www3/MPI_Init_thread.html
mpich/www/www3/MPI_Initialized.html
mpich/www/www3/MPI_Int2handle.html
mpich/www/www3/MPI_Intercomm_create.html
mpich/www/www3/MPI_Intercomm_merge.html
mpich/www/www3/MPI_Iprobe.html
mpich/www/www3/MPI_Irecv.html
mpich/www/www3/MPI_Irsend.html
mpich/www/www3/MPI_Isend.html
mpich/www/www3/MPI_Issend.html
mpich/www/www3/MPI_Keyval_create.html
mpich/www/www3/MPI_Keyval_free.html
mpich/www/www3/MPI_NULL_COPY_FN.html
mpich/www/www3/MPI_NULL_DELETE_FN.html
mpich/www/www3/MPI_Op_create.html
mpich/www/www3/MPI_Op_free.html
mpich/www/www3/MPI_Pack.html
mpich/www/www3/MPI_Pack_size.html
mpich/www/www3/MPI_Pcontrol.html
mpich/www/www3/MPI_Probe.html
mpich/www/www3/MPI_Recv.html
mpich/www/www3/MPI_Recv_init.html
mpich/www/www3/MPI_Reduce.html
mpich/www/www3/MPI_Reduce_scatter.html
mpich/www/www3/MPI_Request_c2f.html
mpich/www/www3/MPI_Request_free.html
mpich/www/www3/MPI_Rsend.html
mpich/www/www3/MPI_Rsend_init.html
mpich/www/www3/MPI_Scan.html
mpich/www/www3/MPI_Scatter.html
mpich/www/www3/MPI_Scatterv.html
mpich/www/www3/MPI_Send.html
mpich/www/www3/MPI_Ssend.html
mpich/www/www3/MPI_Send_init.html
mpich/www/www3/MPI_Sendrecv.html
mpich/www/www3/MPI_Sendrecv_replace.html
mpich/www/www3/MPI_Ssend_init.html
mpich/www/www3/MPI_Start.html
mpich/www/www3/MPI_Startall.html
mpich/www/www3/MPI_Status_c2f.html
mpich/www/www3/MPI_Status_set_cancelled.html
mpich/www/www3/MPI_Status_set_elements.html
mpich/www/www3/MPI_Test.html
mpich/www/www3/MPI_Test_cancelled.html
mpich/www/www3/MPI_Testall.html
mpich/www/www3/MPI_Testany.html
mpich/www/www3/MPI_Testsome.html
mpich/www/www3/MPI_Topo_test.html
mpich/www/www3/MPI_Type_commit.html
mpich/www/www3/MPI_Type_extent.html
mpich/www/www3/MPI_Type_contiguous.html
mpich/www/www3/MPI_Type_create_darray.html
mpich/www/www3/MPI_Type_create_indexed_block.html
mpich/www/www3/MPI_Type_create_subarray.html
mpich/www/www3/MPI_Type_free.html
mpich/www/www3/MPI_Type_get_contents.html
mpich/www/www3/MPI_Type_get_envelope.html
mpich/www/www3/MPI_Type_hindexed.html
mpich/www/www3/MPI_Type_hvector.html
mpich/www/www3/MPI_Type_indexed.html
mpich/www/www3/MPI_Type_lb.html
mpich/www/www3/MPI_Type_size.html
mpich/www/www3/MPI_Type_struct.html
mpich/www/www3/MPI_Type_ub.html
mpich/www/www3/MPI_Type_vector.html
mpich/www/www3/MPI_Unpack.html
mpich/www/www3/MPI_Wait.html
mpich/www/www3/MPI_Waitall.html
mpich/www/www3/MPI_Waitany.html
mpich/www/www3/MPI_Waitsome.html
mpich/www/www3/MPI_Wtick.html
mpich/www/www3/MPI_Wtime.html
mpich/www/www4/CLOG_Finalize.html
mpich/www/www4/CLOG_Init.html
mpich/www/www4/CLOG_Output.html
mpich/www/www4/CLOG_commtype.html
mpich/www/www4/CLOG_cput.html
mpich/www/www4/CLOG_csync.html
mpich/www/www4/CLOG_get_new_event.html
mpich/www/www4/CLOG_get_new_state.html
mpich/www/www4/CLOG_init_buffers.html
mpich/www/www4/CLOG_mergelogs.html
mpich/www/www4/CLOG_mergend.html
mpich/www/www4/CLOG_msgtype.html
mpich/www/www4/CLOG_newbuff.html
mpich/www/www4/CLOG_nodebuffer2disk.html
mpich/www/www4/CLOG_procbuf.html
mpich/www/www4/CLOG_reclen.html
mpich/www/www4/CLOG_rectype.html
mpich/www/www4/CLOG_reinit_buff.html
mpich/www/www4/CLOG_treesetup.html
mpich/www/www4/MPE.html
mpich/www/www4/MPE_Add_RGB_color.html
mpich/www/www4/MPE_CaptureFile.html
mpich/www/www4/MPE_Close_graphics.html
mpich/www/www4/MPE_Comm_global_rank.html
mpich/www/www4/MPE_Counter_create.html
mpich/www/www4/MPE_Counter_free.html
mpich/www/www4/MPE_Counter_nxtval.html
mpich/www/www4/MPE_Decomp1d.html
mpich/www/www4/MPE_Describe_event.html
mpich/www/www4/MPE_Describe_state.html
mpich/www/www4/MPE_Draw_circle.html
mpich/www/www4/MPE_Draw_line.html
mpich/www/www4/MPE_Draw_logic.html
mpich/www/www4/MPE_Update.html
mpich/www/www4/MPE_Draw_point.html
mpich/www/www4/MPE_Draw_points.html
mpich/www/www4/MPE_Draw_string.html
mpich/www/www4/MPE_Fill_circle.html
mpich/www/www4/MPE_Fill_rectangle.html
mpich/www/www4/MPE_Finish_log.html
mpich/www/www4/MPE_GetTags.html
mpich/www/www4/MPE_Get_mouse_press.html
mpich/www/www4/MPE_IO_Stdout_to_file.html
mpich/www/www4/MPE_Iget_mouse_press.html
mpich/www/www4/MPE_Init_log.html
mpich/www/www4/MPE_Initialized_logging.html
mpich/www/www4/MPE_Line_thickness.html
mpich/www/www4/MPE_Log_event.html
mpich/www/www4/MPE_Log_get_event_number.html
mpich/www/www4/index.html
mpich/www/www4/MPE_Log_receive.html
mpich/www/www4/MPE_Log_send.html
mpich/www/www4/MPE_Make_color_array.html
mpich/www/www4/MPE_Num_colors.html
mpich/www/www4/MPE_Open_graphics.html
mpich/www/www4/MPE_Print_datatype_pack_action.html
mpich/www/www4/MPE_Print_datatype_unpack_action.html
mpich/www/www4/MPE_ReturnTags.html
mpich/www/www4/MPE_Seq_begin.html
mpich/www/www4/MPE_Seq_end.html
mpich/www/www4/MPE_Start_log.html
mpich/www/www4/MPE_Stop_log.html
mpich/www/www4/MPE_TagsEnd.html
@dirrm mpich/bin
@dirrm mpich/build/bitmaps
@dirrm mpich/build
@dirrm mpich/doc
@dirrm mpich/etc
@dirrm mpich/examples/MPI-2-C++
@dirrm mpich/examples
@dirrm mpich/include/c++
@dirrm mpich/include/mpi2c++
@dirrm mpich/include
@dirrm mpich/lib/shared
@dirrm mpich/lib
@ -164,7 +471,17 @@ mpich/share/machines.sample
@dirrm mpich/man/man3
@dirrm mpich/man/man4
@dirrm mpich/man
@dirrm mpich/mpe_examples
@dirrm mpich/sbin
@dirrm mpich/share/examples
@dirrm mpich/share/upshot/bitmaps
@dirrm mpich/share/upshot/bin
@dirrm mpich/share/upshot/logfiles
@dirrm mpich/share/upshot/sbin
@dirrm mpich/share/upshot
@dirrm mpich/share
@dirrm mpich/www/www1
@dirrm mpich/www/www3
@dirrm mpich/www/www4
@dirrm mpich/www
@dirrm mpich