1
1

Switch solaris packages over to being built dynamically instead of from

static prototype files.

Submitted by: Dan Lacher
Reviewed by: Rolf Vandevaart

This commit was SVN r12544.
Этот коммит содержится в:
Dan Lacher 2006-11-10 18:42:50 +00:00
родитель f04ec1bda6
Коммит 938e7cd8d9
9 изменённых файлов: 60 добавлений и 855 удалений

105
contrib/dist/solaris/bld_solaris_pkgs поставляемый
Просмотреть файл

@ -1,12 +1,11 @@
#!/bin/ksh #!/bin/ksh
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. # Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
# #
# This script takes as input a path to a prototype space of files that are to be # This scipt takes as input to the prototype space of files that are to be
# encapsulated in Solaris packages. The installation must include both 32 and # encapsulated in Solaris packages. The installation must include both 32 and
# 64 bit libaries and prefixed in the correct manner. # 64 bit libraries and prefixes in the correct manner.
# #
# The steps to build are as follows using vpaths: # The steps to build are as follows using vpaths:
# % cd ompi-trunk # % cd ompi-trunk
@ -55,22 +54,21 @@
# .../ompi-trunk/contrib/dist/solaris/$PLATFORM/$ARCH/$DATE unless otherwise # .../ompi-trunk/contrib/dist/solaris/$PLATFORM/$ARCH/$DATE unless otherwise
# specified by the -b option to bld_solaris_pkgs # specified by the -b option to bld_solaris_pkgs
# #
# This is not the ideal case for long term use. There needs to be changes to
# build dynamic packages instead of the static packages we have now.
#
PATH=/usr/bin/usr/sbin:${PATH} PATH=/usr/bin:/usr/sbin:${PATH}
# #
# global variables # global variables
# #
ARCH=`uname -p` ARCH=`uname -p`
DATE=`date +'%Y.%m.%d'` DATE=`date +'%Y.%m.%d'`
PKGNAMES="SUNWompi SUNWompimn SUNWorte SUNWortemn SUNWomsc" PKGNAMES="SUNWompi SUNWompimn SUNWomsc"
PLATFORM=`uname -s` PLATFORM=`uname -s`
PROTO= PROTO=
SED_PKGINFO_PROTO=sed_pkginfo_proto SED_PKGINFO_PROTO=sed_pkginfo_proto
SPOOLDEV=`pwd`"/${PLATFORM}/${ARCH}/${DATE}" SPOOLDEV=`pwd`"/${PLATFORM}/${ARCH}/${DATE}"
MY_IDNAME=`id | awk -F"(" '{print $2}' | awk -F")" '{print $1}'`
MY_IDGRP=`id | awk -F"(" '{print $3}' | awk -F")" '{print $1}'`
# #
# build_package: This function takes as input the name of the package to build # build_package: This function takes as input the name of the package to build
@ -99,34 +97,67 @@ function build_package
fi fi
} }
#
# build_prototype: This function will create and update dynamic prototype files
# for open mpi
#
function build_prototype
{
f_proto_name=prototype.$1
if [ -f ${f_proto_name} ] ; then
rm -f ${f_proto_name}
fi
if [ -f ${f_proto_name}.tmp ] ; then
rm -f ${f_proto_name}.tmp
fi
# need to prepend copyright and some basic information
cat copyright > ${f_proto_name}.tmp 2>&1
cat << _EOF >> ${f_proto_name}.tmp
i pkginfo=pkginfo.${1}
i copyright
d none SUNWhpc 0755 root bin
_EOF
if [ "$1" = "SUNWompimn" ] ; then
echo "d none SUNWhpc/\$SUNW_PRODVERS 0755 root bin" >> ${f_proto_name}.tmp 2>&1
pkgproto ${PROTO}/man=SUNWhpc/\$SUNW_PRODVERS/man >> ${f_proto_name}.tmp 2>&1
fi
if [ "$1" = "SUNWomsc" ] ; then
echo "d none SUNWhpc/\$SUNW_PRODVERS 0755 root bin" >> ${f_proto_name}.tmp 2>&1
pkgproto ${PROTO}/examples=SUNWhpc/\$SUNW_PRODVERS/examples >> ${f_proto_name}.tmp 2>&1
fi
if [ "$1" = "SUNWompi" ] ; then
pkgproto ${PROTO}=SUNWhpc/\$SUNW_PRODVERS | egrep -v "man|examples|\.la" >> ${f_proto_name}.tmp 2>&1
fi
sed -f ${SED_PKGINFO_PROTO} ${f_proto_name}.tmp > ${f_proto_name}
if [ -f ${f_proto_name}.tmp ] ; then
rm -f ${f_proto_name}.tmp
fi
}
# #
# build_sed_script: This function creates the temporary sed script that is used # build_sed_script: This function creates the temporary sed script that is used
# to process the pkginfo and prototype template files. # to process the pkginfo and prototype template files.
# #
function build_sed_script function build_sed_script
{ {
if [ ${ARCH} == sparc ] ; then
lib_v9="sparcv9"
inc_v9="v9"
elif [ ${ARCH} == i386 ] ; then
lib_v9="amd64"
inc_v9="amd64"
else
lib_v9="64"
inc_v9="64"
fi
if [ -f ${SED_PKGINFO_PROTO} ] ; then if [ -f ${SED_PKGINFO_PROTO} ] ; then
rm -f ${SED_PKGINFO_PROTO} rm -f ${SED_PKGINFO_PROTO}
fi fi
cat << _EOF > ${SED_PKGINFO_PROTO} cat << _EOF > ${SED_PKGINFO_PROTO}
s/\/LIB_ISAV9/\/${lib_v9}/g
s/\/INC_ISAV9/\/${inc_v9}/g
s/\/LIB_ISA/\/${ARCH}/g
s/\/INC_ISA/\/${ARCH}/g
s/\/ISA/\/${ARCH}/g
s/\=\"ISA\"/\=\"${ARCH}\"/g s/\=\"ISA\"/\=\"${ARCH}\"/g
s/ ${MY_IDNAME} / root /g
s/ ${MY_IDGRP}/ bin/g
_EOF _EOF
} }
@ -175,22 +206,6 @@ function update_pkginfo
sed -f ${SED_PKGINFO_PROTO} ${f_pkginfo_name}.tmpl > ${f_pkginfo_name} sed -f ${SED_PKGINFO_PROTO} ${f_pkginfo_name}.tmpl > ${f_pkginfo_name}
} }
#
# update_prototype: This function takes a single input of a package name and
# creates the needed prototype file from the template and processing it
# with the sed_pkginfo_proto script.
#
function update_prototype
{
f_proto_name=prototype.$1
if [ -f ${f_proto_name} ] ; then
rm -f ${f_proto_name}
fi
sed -f ${SED_PKGINFO_PROTO} ${f_proto_name}.tmpl > ${f_proto_name}
}
# #
# #
# #
@ -233,13 +248,13 @@ build_sed_script
for pkg in ${PKGNAMES} for pkg in ${PKGNAMES}
do do
update_pkginfo ${pkg} update_pkginfo ${pkg}
update_prototype ${pkg} build_prototype ${pkg}
build_package ${pkg} build_package ${pkg}
cleanup_pkginfo ${pkg} cleanup_pkginfo ${pkg}
cleanup_prototype ${pkg} cleanup_prototype ${pkg}
done done
rm ${SED_PKGINFO_PROTO} rm ${SED_PKGINFO_PROTO}

1
contrib/dist/solaris/copyright поставляемый
Просмотреть файл

@ -1,2 +1 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. # Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.

19
contrib/dist/solaris/pkginfo.SUNWorte.tmpl поставляемый
Просмотреть файл

@ -1,19 +0,0 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
PKG="SUNWorte"
NAME="Open MPI Runtime Environment"
VERSION="1.0"
BASEDIR="/opt"
ARCH="ISA"
SUNW_PRODVERS="HPC7.0"
SUNW_PRODNAME="Sun HPC ClusterTools 7"
SUNW_PKGVERS="1.0"
DESC="Open MPI Runtime Environment"
VENDOR="Sun Microsystems, Inc."
CATEGORY="system"
CLASSES="none"
MAXINST="1000"
HOTLINE="Please contact your local service provider."
EMAIL=""
SUNW_PKG_THISZONE="true"

19
contrib/dist/solaris/pkginfo.SUNWortemn.tmpl поставляемый
Просмотреть файл

@ -1,19 +0,0 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
PKG="SUNWortemn"
NAME="Open MPI Runtime Environment Man Pages"
VERSION="1.0"
BASEDIR="/opt"
ARCH="ISA"
SUNW_PRODVERS="HPC7.0"
SUNW_PRODNAME="Sun HPC ClusterTools 7"
SUNW_PKGVERS="1.0"
DESC="Open MPI Runtime Environment Man Pages"
VENDOR="Sun Microsystems, Inc."
CATEGORY="system"
CLASSES="none"
MAXINST="1000"
HOTLINE="Please contact your local service provider."
EMAIL=""
SUNW_PKG_THISZONE="true"

219
contrib/dist/solaris/prototype.SUNWompi.tmpl поставляемый
Просмотреть файл

@ -1,219 +0,0 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# MPI Package
#
i pkginfo=pkginfo.SUNWompi
i copyright
#
# bin
#
d none SUNWhpc 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/bin 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/bin/ompi_info=bin/ompi_info 0755 root bin
#
# etc
#
d none SUNWhpc/$SUNW_PRODVERS/etc 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/etc/openmpi-default-hostfile=etc/openmpi-default-hostfile 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/etc/openmpi-mca-params.conf=etc/openmpi-mca-params.conf 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/etc/openmpi-totalview.tcl=etc/openmpi-totalview.tcl 0444 root bin
#
# include
#
d none SUNWhpc/$SUNW_PRODVERS/include 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/mpi.h=include/mpi.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/mpif.h=include/mpif.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/mpif-common.h=include/mpif-common.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/mpif-config.h=include/mpif-config.h 0444 root bin
#
# include/openmpi
#
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/comm.h=include/openmpi/ompi/mpi/cxx/comm.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/constants.h=include/openmpi/ompi/mpi/cxx/constants.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/datatype.h=include/openmpi/ompi/mpi/cxx/datatype.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/file.h=include/openmpi/ompi/mpi/cxx/file.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/group.h=include/openmpi/ompi/mpi/cxx/group.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/mpicxx.h=include/openmpi/ompi/mpi/cxx/mpicxx.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/errhandler.h=include/openmpi/ompi/mpi/cxx/errhandler.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/exception.h=include/openmpi/ompi/mpi/cxx/exception.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/topology.h=include/openmpi/ompi/mpi/cxx/topology.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/datatype_inln.h=include/openmpi/ompi/mpi/cxx/datatype_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/file_inln.h=include/openmpi/ompi/mpi/cxx/file_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/functions.h=include/openmpi/ompi/mpi/cxx/functions.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/functions_inln.h=include/openmpi/ompi/mpi/cxx/functions_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/request_inln.h=include/openmpi/ompi/mpi/cxx/request_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/comm_inln.h=include/openmpi/ompi/mpi/cxx/comm_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/intracomm.h=include/openmpi/ompi/mpi/cxx/intracomm.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/intracomm_inln.h=include/openmpi/ompi/mpi/cxx/intracomm_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/info.h=include/openmpi/ompi/mpi/cxx/info.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/info_inln.h=include/openmpi/ompi/mpi/cxx/info_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/win_inln.h=include/openmpi/ompi/mpi/cxx/win_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/topology_inln.h=include/openmpi/ompi/mpi/cxx/topology_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/intercomm.h=include/openmpi/ompi/mpi/cxx/intercomm.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/intercomm_inln.h=include/openmpi/ompi/mpi/cxx/intercomm_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/group_inln.h=include/openmpi/ompi/mpi/cxx/group_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/op.h=include/openmpi/ompi/mpi/cxx/op.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/op_inln.h=include/openmpi/ompi/mpi/cxx/op_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/errhandler_inln.h=include/openmpi/ompi/mpi/cxx/errhandler_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/status.h=include/openmpi/ompi/mpi/cxx/status.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/status_inln.h=include/openmpi/ompi/mpi/cxx/status_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/request.h=include/openmpi/ompi/mpi/cxx/request.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/win.h=include/openmpi/ompi/mpi/cxx/win.h 0444 root bin
#
# include (64 bit), INC_ISAV9 will be changed to v9 or amd64
#
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/mpi.h=include/INC_ISAV9/mpi.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/mpif.h=include/INC_ISAV9/mpif.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/mpif-common.h=include/INC_ISAV9/mpif-common.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/mpif-config.h=include/INC_ISAV9/mpif-config.h 0444 root bin
#
# include (64 bit), INC_ISAV9 will be changed to v9 or amd64
#
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/comm.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/comm.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/constants.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/constants.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/datatype.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/datatype.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/file.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/file.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/functions.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/functions.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/exception.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/exception.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/group.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/group.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/mpicxx.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/mpicxx.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/intracomm.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/intracomm.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/datatype_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/datatype_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/file_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/file_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/functions_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/functions_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/request_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/request_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/comm_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/comm_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/intracomm_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/intracomm_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/info.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/info.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/info_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/info_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/win_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/win_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/group_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/group_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/op.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/op.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/op_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/op_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/status.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/status.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/status_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/status_inln.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/request.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/request.h 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/win.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/win.h 0444 root bin
#
# libs
#
d none SUNWhpc/$SUNW_PRODVERS/lib 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/libmca_common_sm.so.0.0.0=lib/libmca_common_sm.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmca_common_sm.so=libmca_common_sm.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmca_common_sm.so.0=libmca_common_sm.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/libmpi.so.0.0.0=lib/libmpi.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi.so=libmpi.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi.so.0=libmpi.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_cxx.so.0.0.0=lib/libmpi_cxx.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_cxx.so=libmpi_cxx.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_cxx.so.0=libmpi_cxx.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f77.so.0.0.0=lib/libmpi_f77.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f77.so=libmpi_f77.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f77.so.0=libmpi_f77.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f90.so.0.0.0=lib/libmpi_f90.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f90.so=libmpi_f90.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f90.so.0=libmpi_f90.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/mpi.mod=lib/mpi.mod 0755 root bin
#
# libs/openmpi
#
d none SUNWhpc/$SUNW_PRODVERS/lib/openmpi 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/libompitv.so=lib/openmpi/libompitv.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_allocator_basic.so=lib/openmpi/mca_allocator_basic.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_allocator_bucket.so=lib/openmpi/mca_allocator_bucket.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_bml_r2.so=lib/openmpi/mca_bml_r2.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_btl_self.so=lib/openmpi/mca_btl_self.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_btl_sm.so=lib/openmpi/mca_btl_sm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_btl_tcp.so=lib/openmpi/mca_btl_tcp.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_btl_udapl.so=lib/openmpi/mca_btl_udapl.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_basic.so=lib/openmpi/mca_coll_basic.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_self.so=lib/openmpi/mca_coll_self.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_sm.so=lib/openmpi/mca_coll_sm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_tuned.so=lib/openmpi/mca_coll_tuned.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_io_romio.so=lib/openmpi/mca_io_romio.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_mpool_sm.so=lib/openmpi/mca_mpool_sm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_mpool_udapl.so=lib/openmpi/mca_mpool_udapl.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_osc_pt2pt.so=lib/openmpi/mca_osc_pt2pt.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_osc_rdma.so=lib/openmpi/mca_osc_rdma.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pml_cm.so=lib/openmpi/mca_pml_cm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pml_dr.so=lib/openmpi/mca_pml_dr.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pml_ob1.so=lib/openmpi/mca_pml_ob1.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rcache_rb.so=lib/openmpi/mca_rcache_rb.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rcache_vma.so=lib/openmpi/mca_rcache_vma.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_topo_unity.so=lib/openmpi/mca_topo_unity.so 0755 root bin
#
# lib (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
#
d none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmca_common_sm.so.0.0.0=lib/LIB_ISAV9/libmca_common_sm.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmca_common_sm.so=libmca_common_sm.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmca_common_sm.so.0=libmca_common_sm.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi.so.0.0.0=lib/LIB_ISAV9/libmpi.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi.so=libmpi.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi.so.0=libmpi.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_cxx.so.0.0.0=lib/LIB_ISAV9/libmpi_cxx.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_cxx.so=libmpi_cxx.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_cxx.so.0=libmpi_cxx.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f77.so.0.0.0=lib/LIB_ISAV9/libmpi_f77.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f77.so=libmpi_f77.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f77.so.0=libmpi_f77.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f90.so.0.0.0=lib/LIB_ISAV9/libmpi_f90.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f90.so=libmpi_f90.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f90.so.0=libmpi_f90.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/mpi.mod=lib/LIB_ISAV9/mpi.mod 0755 root bin
#
# lib (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
#
d none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/libompitv.so=lib/LIB_ISAV9/openmpi/libompitv.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_allocator_basic.so=lib/LIB_ISAV9/openmpi/mca_allocator_basic.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_allocator_bucket.so=lib/LIB_ISAV9/openmpi/mca_allocator_bucket.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_bml_r2.so=lib/LIB_ISAV9/openmpi/mca_bml_r2.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_btl_self.so=lib/LIB_ISAV9/openmpi/mca_btl_self.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_btl_sm.so=lib/LIB_ISAV9/openmpi/mca_btl_sm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_btl_tcp.so=lib/LIB_ISAV9/openmpi/mca_btl_tcp.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_btl_udapl.so=lib/LIB_ISAV9/openmpi/mca_btl_udapl.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_basic.so=lib/LIB_ISAV9/openmpi/mca_coll_basic.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_self.so=lib/LIB_ISAV9/openmpi/mca_coll_self.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_sm.so=lib/LIB_ISAV9/openmpi/mca_coll_sm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_tuned.so=lib/LIB_ISAV9/openmpi/mca_coll_tuned.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_io_romio.so=lib/LIB_ISAV9/openmpi/mca_io_romio.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_mpool_sm.so=lib/LIB_ISAV9/openmpi/mca_mpool_sm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_mpool_udapl.so=lib/LIB_ISAV9/openmpi/mca_mpool_udapl.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_osc_pt2pt.so=lib/LIB_ISAV9/openmpi/mca_osc_pt2pt.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_osc_rdma.so=lib/LIB_ISAV9/openmpi/mca_osc_rdma.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pml_cm.so=lib/LIB_ISAV9/openmpi/mca_pml_cm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pml_dr.so=lib/LIB_ISAV9/openmpi/mca_pml_dr.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pml_ob1.so=lib/LIB_ISAV9/openmpi/mca_pml_ob1.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rcache_rb.so=lib/LIB_ISAV9/openmpi/mca_rcache_rb.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rcache_vma.so=lib/LIB_ISAV9/openmpi/mca_rcache_vma.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_topo_unity.so=lib/LIB_ISAV9/openmpi/mca_topo_unity.so 0755 root bin
#
# share files
#
d none SUNWhpc/$SUNW_PRODVERS/share 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/share/openmpi 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mpi-api.txt=share/openmpi/help-mpi-api.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mpi-btl-base.txt=share/openmpi/help-mpi-btl-base.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mpi-runtime.txt=share/openmpi/help-mpi-runtime.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-ompi_info.txt=share/openmpi/help-ompi_info.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-rds-hostfile.txt=share/openmpi/help-rds-hostfile.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mca-bml-r2.txt=share/openmpi/help-mca-bml-r2.txt 0444 root bin

321
contrib/dist/solaris/prototype.SUNWompimn.tmpl поставляемый
Просмотреть файл

@ -1,321 +0,0 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# MPI Package Man Pages
#
i pkginfo=pkginfo.SUNWompimn
i copyright
#
# man
#
d none SUNWhpc 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/man 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/man/man3 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI.3=man/man3/MPI.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Abort.3=man/man3/MPI_Abort.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Accumulate.3=man/man3/MPI_Accumulate.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Add_error_class.3=man/man3/MPI_Add_error_class.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Add_error_code.3=man/man3/MPI_Add_error_code.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Add_error_string.3=man/man3/MPI_Add_error_string.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Address.3=man/man3/MPI_Address.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Allgather.3=man/man3/MPI_Allgather.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Allgatherv.3=man/man3/MPI_Allgatherv.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Alloc_mem.3=man/man3/MPI_Alloc_mem.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Allreduce.3=man/man3/MPI_Allreduce.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Alltoall.3=man/man3/MPI_Alltoall.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Alltoallv.3=man/man3/MPI_Alltoallv.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Alltoallw.3=man/man3/MPI_Alltoallw.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Attr_delete.3=man/man3/MPI_Attr_delete.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Attr_get.3=man/man3/MPI_Attr_get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Attr_put.3=man/man3/MPI_Attr_put.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Barrier.3=man/man3/MPI_Barrier.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Bcast.3=man/man3/MPI_Bcast.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Bsend.3=man/man3/MPI_Bsend.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Bsend_init.3=man/man3/MPI_Bsend_init.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Buffer_attach.3=man/man3/MPI_Buffer_attach.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Buffer_detach.3=man/man3/MPI_Buffer_detach.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cancel.3=man/man3/MPI_Cancel.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cart_coords.3=man/man3/MPI_Cart_coords.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cart_create.3=man/man3/MPI_Cart_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cartdim_get.3=man/man3/MPI_Cartdim_get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cart_get.3=man/man3/MPI_Cart_get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cart_map.3=man/man3/MPI_Cart_map.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cart_rank.3=man/man3/MPI_Cart_rank.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cart_shift.3=man/man3/MPI_Cart_shift.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Cart_sub.3=man/man3/MPI_Cart_sub.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Close_port.3=man/man3/MPI_Close_port.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_accept.3=man/man3/MPI_Comm_accept.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_c2f.3=man/man3/MPI_Comm_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_call_errhandler.3=man/man3/MPI_Comm_call_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_compare.3=man/man3/MPI_Comm_compare.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_connect.3=man/man3/MPI_Comm_connect.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_create.3=man/man3/MPI_Comm_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_create_errhandler.3=man/man3/MPI_Comm_create_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_create_keyval.3=man/man3/MPI_Comm_create_keyval.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_delete_attr.3=man/man3/MPI_Comm_delete_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_disconnect.3=man/man3/MPI_Comm_disconnect.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_dup.3=man/man3/MPI_Comm_dup.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_f2c.3=man/man3/MPI_Comm_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_free.3=man/man3/MPI_Comm_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_free_keyval.3=man/man3/MPI_Comm_free_keyval.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_get_attr.3=man/man3/MPI_Comm_get_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_get_errhandler.3=man/man3/MPI_Comm_get_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_get_name.3=man/man3/MPI_Comm_get_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_get_parent.3=man/man3/MPI_Comm_get_parent.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_group.3=man/man3/MPI_Comm_group.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_join.3=man/man3/MPI_Comm_join.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_rank.3=man/man3/MPI_Comm_rank.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_remote_group.3=man/man3/MPI_Comm_remote_group.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_remote_size.3=man/man3/MPI_Comm_remote_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_set_attr.3=man/man3/MPI_Comm_set_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_set_errhandler.3=man/man3/MPI_Comm_set_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_set_name.3=man/man3/MPI_Comm_set_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_size.3=man/man3/MPI_Comm_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_spawn.3=man/man3/MPI_Comm_spawn.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_spawn_multiple.3=man/man3/MPI_Comm_spawn_multiple.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_split.3=man/man3/MPI_Comm_split.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Comm_test_inter.3=man/man3/MPI_Comm_test_inter.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Dims_create.3=man/man3/MPI_Dims_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Errhandler_create.3=man/man3/MPI_Errhandler_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Errhandler_free.3=man/man3/MPI_Errhandler_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Errhandler_get.3=man/man3/MPI_Errhandler_get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Errhandler_set.3=man/man3/MPI_Errhandler_set.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Error_class.3=man/man3/MPI_Error_class.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Exscan.3=man/man3/MPI_Exscan.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Error_string.3=man/man3/MPI_Error_string.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_c2f.3=man/man3/MPI_File_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_call_errhandler.3=man/man3/MPI_File_call_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_close.3=man/man3/MPI_File_close.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_create_errhandler.3=man/man3/MPI_File_create_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_delete.3=man/man3/MPI_File_delete.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_f2c.3=man/man3/MPI_File_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_amode.3=man/man3/MPI_File_get_amode.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_atomicity.3=man/man3/MPI_File_get_atomicity.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_byte_offset.3=man/man3/MPI_File_get_byte_offset.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_errhandler.3=man/man3/MPI_File_get_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_group.3=man/man3/MPI_File_get_group.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_info.3=man/man3/MPI_File_get_info.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_position.3=man/man3/MPI_File_get_position.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_position_shared.3=man/man3/MPI_File_get_position_shared.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_size.3=man/man3/MPI_File_get_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_type_extent.3=man/man3/MPI_File_get_type_extent.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_get_view.3=man/man3/MPI_File_get_view.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_iread.3=man/man3/MPI_File_iread.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_iread_at.3=man/man3/MPI_File_iread_at.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_iread_shared.3=man/man3/MPI_File_iread_shared.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_iwrite.3=man/man3/MPI_File_iwrite.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_iwrite_at.3=man/man3/MPI_File_iwrite_at.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_iwrite_shared.3=man/man3/MPI_File_iwrite_shared.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_open.3=man/man3/MPI_File_open.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_preallocate.3=man/man3/MPI_File_preallocate.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read.3=man/man3/MPI_File_read.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_all.3=man/man3/MPI_File_read_all.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_all_begin.3=man/man3/MPI_File_read_all_begin.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_all_end.3=man/man3/MPI_File_read_all_end.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_at.3=man/man3/MPI_File_read_at.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_at_all.3=man/man3/MPI_File_read_at_all.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_seek.3=man/man3/MPI_File_seek.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_at_all_begin.3=man/man3/MPI_File_read_at_all_begin.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_at_all_end.3=man/man3/MPI_File_read_at_all_end.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_ordered.3=man/man3/MPI_File_read_ordered.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_ordered_begin.3=man/man3/MPI_File_read_ordered_begin.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_ordered_end.3=man/man3/MPI_File_read_ordered_end.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_read_shared.3=man/man3/MPI_File_read_shared.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_seek_shared.3=man/man3/MPI_File_seek_shared.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_set_atomicity.3=man/man3/MPI_File_set_atomicity.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_set_errhandler.3=man/man3/MPI_File_set_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_set_info.3=man/man3/MPI_File_set_info.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_set_size.3=man/man3/MPI_File_set_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_set_view.3=man/man3/MPI_File_set_view.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_sync.3=man/man3/MPI_File_sync.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write.3=man/man3/MPI_File_write.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_all.3=man/man3/MPI_File_write_all.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Finalize.3=man/man3/MPI_Finalize.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_all_begin.3=man/man3/MPI_File_write_all_begin.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_all_end.3=man/man3/MPI_File_write_all_end.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_at.3=man/man3/MPI_File_write_at.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_at_all.3=man/man3/MPI_File_write_at_all.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_at_all_begin.3=man/man3/MPI_File_write_at_all_begin.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_at_all_end.3=man/man3/MPI_File_write_at_all_end.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_ordered.3=man/man3/MPI_File_write_ordered.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_ordered_begin.3=man/man3/MPI_File_write_ordered_begin.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_ordered_end.3=man/man3/MPI_File_write_ordered_end.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_File_write_shared.3=man/man3/MPI_File_write_shared.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Finalized.3=man/man3/MPI_Finalized.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Free_mem.3=man/man3/MPI_Free_mem.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Gather.3=man/man3/MPI_Gather.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Gatherv.3=man/man3/MPI_Gatherv.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Get.3=man/man3/MPI_Get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Get_address.3=man/man3/MPI_Get_address.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Get_count.3=man/man3/MPI_Get_count.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Get_elements.3=man/man3/MPI_Get_elements.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Get_processor_name.3=man/man3/MPI_Get_processor_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Get_version.3=man/man3/MPI_Get_version.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Graph_create.3=man/man3/MPI_Graph_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Graphdims_get.3=man/man3/MPI_Graphdims_get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Graph_get.3=man/man3/MPI_Graph_get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Graph_map.3=man/man3/MPI_Graph_map.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Graph_neighbors.3=man/man3/MPI_Graph_neighbors.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Graph_neighbors_count.3=man/man3/MPI_Graph_neighbors_count.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Grequest_complete.3=man/man3/MPI_Grequest_complete.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Grequest_start.3=man/man3/MPI_Grequest_start.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_c2f.3=man/man3/MPI_Group_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_compare.3=man/man3/MPI_Group_compare.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_difference.3=man/man3/MPI_Group_difference.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_excl.3=man/man3/MPI_Group_excl.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_f2c.3=man/man3/MPI_Group_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Ibsend.3=man/man3/MPI_Ibsend.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_free.3=man/man3/MPI_Group_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_incl.3=man/man3/MPI_Group_incl.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_intersection.3=man/man3/MPI_Group_intersection.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_range_excl.3=man/man3/MPI_Group_range_excl.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_range_incl.3=man/man3/MPI_Group_range_incl.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_rank.3=man/man3/MPI_Group_rank.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_size.3=man/man3/MPI_Group_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_translate_ranks.3=man/man3/MPI_Group_translate_ranks.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Group_union.3=man/man3/MPI_Group_union.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_c2f.3=man/man3/MPI_Info_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_create.3=man/man3/MPI_Info_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_delete.3=man/man3/MPI_Info_delete.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_dup.3=man/man3/MPI_Info_dup.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_f2c.3=man/man3/MPI_Info_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_free.3=man/man3/MPI_Info_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_get.3=man/man3/MPI_Info_get.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_get_nkeys.3=man/man3/MPI_Info_get_nkeys.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_set.3=man/man3/MPI_Info_set.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_get_nthkey.3=man/man3/MPI_Info_get_nthkey.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Info_get_valuelen.3=man/man3/MPI_Info_get_valuelen.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Init.3=man/man3/MPI_Init.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Initialized.3=man/man3/MPI_Initialized.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Init_thread.3=man/man3/MPI_Init_thread.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Intercomm_create.3=man/man3/MPI_Intercomm_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Intercomm_merge.3=man/man3/MPI_Intercomm_merge.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Iprobe.3=man/man3/MPI_Iprobe.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Irecv.3=man/man3/MPI_Irecv.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Irsend.3=man/man3/MPI_Irsend.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Isend.3=man/man3/MPI_Isend.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Issend.3=man/man3/MPI_Issend.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Is_thread_main.3=man/man3/MPI_Is_thread_main.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Keyval_create.3=man/man3/MPI_Keyval_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Keyval_free.3=man/man3/MPI_Keyval_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Lookup_name.3=man/man3/MPI_Lookup_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Op_c2f.3=man/man3/MPI_Op_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Op_create.3=man/man3/MPI_Op_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Open_port.3=man/man3/MPI_Open_port.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Op_f2c.3=man/man3/MPI_Op_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Op_free.3=man/man3/MPI_Op_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Pack.3=man/man3/MPI_Pack.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Pack_external.3=man/man3/MPI_Pack_external.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Pack_external_size.3=man/man3/MPI_Pack_external_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Pack_size.3=man/man3/MPI_Pack_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Pcontrol.3=man/man3/MPI_Pcontrol.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Probe.3=man/man3/MPI_Probe.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Publish_name.3=man/man3/MPI_Publish_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Put.3=man/man3/MPI_Put.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Query_thread.3=man/man3/MPI_Query_thread.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Recv.3=man/man3/MPI_Recv.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Recv_init.3=man/man3/MPI_Recv_init.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Reduce.3=man/man3/MPI_Reduce.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Reduce_scatter.3=man/man3/MPI_Reduce_scatter.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Register_datarep.3=man/man3/MPI_Register_datarep.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Request_c2f.3=man/man3/MPI_Request_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Request_f2c.3=man/man3/MPI_Request_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Request_free.3=man/man3/MPI_Request_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Rsend.3=man/man3/MPI_Rsend.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Request_get_status.3=man/man3/MPI_Request_get_status.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Rsend_init.3=man/man3/MPI_Rsend_init.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Scan.3=man/man3/MPI_Scan.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Scatter.3=man/man3/MPI_Scatter.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Scatterv.3=man/man3/MPI_Scatterv.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Send.3=man/man3/MPI_Send.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Send_init.3=man/man3/MPI_Send_init.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Sendrecv.3=man/man3/MPI_Sendrecv.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Sendrecv_replace.3=man/man3/MPI_Sendrecv_replace.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Sizeof.3=man/man3/MPI_Sizeof.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Ssend.3=man/man3/MPI_Ssend.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Ssend_init.3=man/man3/MPI_Ssend_init.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Start.3=man/man3/MPI_Start.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Startall.3=man/man3/MPI_Startall.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Status_c2f.3=man/man3/MPI_Status_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Status_f2c.3=man/man3/MPI_Status_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Status_set_cancelled.3=man/man3/MPI_Status_set_cancelled.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Status_set_elements.3=man/man3/MPI_Status_set_elements.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Test.3=man/man3/MPI_Test.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Testall.3=man/man3/MPI_Testall.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Testany.3=man/man3/MPI_Testany.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Test_cancelled.3=man/man3/MPI_Test_cancelled.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Testsome.3=man/man3/MPI_Testsome.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Topo_test.3=man/man3/MPI_Topo_test.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_c2f.3=man/man3/MPI_Type_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_commit.3=man/man3/MPI_Type_commit.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_contiguous.3=man/man3/MPI_Type_contiguous.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_darray.3=man/man3/MPI_Type_create_darray.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_f90_complex.3=man/man3/MPI_Type_create_f90_complex.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_f90_integer.3=man/man3/MPI_Type_create_f90_integer.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_f90_real.3=man/man3/MPI_Type_create_f90_real.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_hindexed.3=man/man3/MPI_Type_create_hindexed.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_hvector.3=man/man3/MPI_Type_create_hvector.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_indexed_block.3=man/man3/MPI_Type_create_indexed_block.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_keyval.3=man/man3/MPI_Type_create_keyval.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_resized.3=man/man3/MPI_Type_create_resized.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_struct.3=man/man3/MPI_Type_create_struct.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_create_subarray.3=man/man3/MPI_Type_create_subarray.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_delete_attr.3=man/man3/MPI_Type_delete_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_dup.3=man/man3/MPI_Type_dup.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_extent.3=man/man3/MPI_Type_extent.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_f2c.3=man/man3/MPI_Type_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_free.3=man/man3/MPI_Type_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_free_keyval.3=man/man3/MPI_Type_free_keyval.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_get_attr.3=man/man3/MPI_Type_get_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_get_contents.3=man/man3/MPI_Type_get_contents.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_get_envelope.3=man/man3/MPI_Type_get_envelope.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_get_extent.3=man/man3/MPI_Type_get_extent.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_get_name.3=man/man3/MPI_Type_get_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_get_true_extent.3=man/man3/MPI_Type_get_true_extent.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_hindexed.3=man/man3/MPI_Type_hindexed.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_lb.3=man/man3/MPI_Type_lb.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_hvector.3=man/man3/MPI_Type_hvector.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_indexed.3=man/man3/MPI_Type_indexed.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_match_size.3=man/man3/MPI_Type_match_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_set_attr.3=man/man3/MPI_Type_set_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_set_name.3=man/man3/MPI_Type_set_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_size.3=man/man3/MPI_Type_size.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_struct.3=man/man3/MPI_Type_struct.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_ub.3=man/man3/MPI_Type_ub.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Type_vector.3=man/man3/MPI_Type_vector.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Unpack.3=man/man3/MPI_Unpack.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Unpack_external.3=man/man3/MPI_Unpack_external.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Unpublish_name.3=man/man3/MPI_Unpublish_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Wait.3=man/man3/MPI_Wait.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Waitall.3=man/man3/MPI_Waitall.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Waitany.3=man/man3/MPI_Waitany.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Waitsome.3=man/man3/MPI_Waitsome.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_c2f.3=man/man3/MPI_Win_c2f.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_call_errhandler.3=man/man3/MPI_Win_call_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_f2c.3=man/man3/MPI_Win_f2c.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_complete.3=man/man3/MPI_Win_complete.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_create.3=man/man3/MPI_Win_create.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_create_errhandler.3=man/man3/MPI_Win_create_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_create_keyval.3=man/man3/MPI_Win_create_keyval.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_delete_attr.3=man/man3/MPI_Win_delete_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_fence.3=man/man3/MPI_Win_fence.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_free.3=man/man3/MPI_Win_free.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_free_keyval.3=man/man3/MPI_Win_free_keyval.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_get_attr.3=man/man3/MPI_Win_get_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_get_errhandler.3=man/man3/MPI_Win_get_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_get_group.3=man/man3/MPI_Win_get_group.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_get_name.3=man/man3/MPI_Win_get_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_lock.3=man/man3/MPI_Win_lock.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_post.3=man/man3/MPI_Win_post.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_set_attr.3=man/man3/MPI_Win_set_attr.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_set_errhandler.3=man/man3/MPI_Win_set_errhandler.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_set_name.3=man/man3/MPI_Win_set_name.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_start.3=man/man3/MPI_Win_start.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_test.3=man/man3/MPI_Win_test.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_unlock.3=man/man3/MPI_Win_unlock.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Win_wait.3=man/man3/MPI_Win_wait.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Wtick.3=man/man3/MPI_Wtick.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/MPI_Wtime.3=man/man3/MPI_Wtime.3 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man3/OpenMPI.3=man/man3/OpenMPI.3 0444 root bin

37
contrib/dist/solaris/prototype.SUNWomsc.tmpl поставляемый
Просмотреть файл

@ -1,37 +0,0 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Misc Package
#
i pkginfo=pkginfo.SUNWomsc
i copyright
#
# examples
#
d none SUNWhpc 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/examples 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/README=examples/README 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/Makefile=examples/Makefile 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/Makefile.include=examples/Makefile.include 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_c.c=examples/ring_c.c 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_cxx.cc=examples/ring_cxx.cc 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_c.c=examples/hello_c.c 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_f77.f=examples/ring_f77.f 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_cxx.cc=examples/hello_cxx.cc 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_f77.f=examples/hello_f77.f 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_f90.f90=examples/ring_f90.f90 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_f90.f90=examples/hello_f90.f90 0444 root bin
#
# dtrace scripts
#
d none SUNWhpc/$SUNW_PRODVERS/examples/dtrace 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/README=examples/dtrace/README 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/Makefile=examples/dtrace/Makefile 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/mpicommleak.c=examples/dtrace/mpicommleak.c 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/mpicommcheck.d=examples/dtrace/mpicommcheck.d 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/mpitrace.d=examples/dtrace/mpitrace.d 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/mpitruss.d=examples/dtrace/mpitruss.d 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/partrace.sh=examples/dtrace/partrace.sh 0555 root bin
f none SUNWhpc/$SUNW_PRODVERS/examples/dtrace/myppriv.sh=examples/dtrace/myppriv.sh 0555 root bin

165
contrib/dist/solaris/prototype.SUNWorte.tmpl поставляемый
Просмотреть файл

@ -1,165 +0,0 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Runtime Environment Package
#
i pkginfo=pkginfo.SUNWorte
i copyright
#
# bin
#
d none SUNWhpc 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/bin 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/bin/opal_wrapper=bin/opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpiCC=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpic++=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpicc=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpicxx=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpif77=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpif90=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/opalCC=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/opalc++=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/opalcc=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/orteCC=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/ortec++=opal_wrapper 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/ortecc=opal_wrapper 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/bin/orted=bin/orted 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/bin/orterun=bin/orterun 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpiexec=orterun 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/bin/mpirun=orterun 0755 root bin
#
# lib
#
d none SUNWhpc/$SUNW_PRODVERS/lib 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/libopal.so.0.0.0=lib/libopal.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libopal.so=libopal.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/libopal.so.0=libopal.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/liborte.so.0.0.0=lib/liborte.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/liborte.so=liborte.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/liborte.so.0=liborte.so.0.0.0 0755 root bin
#
# lib/openmpi
#
d none SUNWhpc/$SUNW_PRODVERS/lib/openmpi 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_errmgr_hnp.so=lib/openmpi/mca_errmgr_hnp.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_errmgr_orted.so=lib/openmpi/mca_errmgr_orted.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_errmgr_proxy.so=lib/openmpi/mca_errmgr_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_gpr_null.so=lib/openmpi/mca_gpr_null.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_gpr_proxy.so=lib/openmpi/mca_gpr_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_gpr_replica.so=lib/openmpi/mca_gpr_replica.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_iof_proxy.so=lib/openmpi/mca_iof_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_iof_svc.so=lib/openmpi/mca_iof_svc.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_maffinity_first_use.so=lib/openmpi/mca_maffinity_first_use.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ns_proxy.so=lib/openmpi/mca_ns_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ns_replica.so=lib/openmpi/mca_ns_replica.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_odls_default.so=lib/openmpi/mca_odls_default.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_oob_tcp.so=lib/openmpi/mca_oob_tcp.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_osc_pt2pt.so=lib/openmpi/mca_osc_pt2pt.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_osc_rdma.so=lib/openmpi/mca_osc_rdma.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_paffinity_solaris.so=lib/openmpi/mca_paffinity_solaris.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_gridengine.so=lib/openmpi/mca_pls_gridengine.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_proxy.so=lib/openmpi/mca_pls_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_rsh.so=lib/openmpi/mca_pls_rsh.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_tm.so=lib/openmpi/mca_pls_tm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_dash_host.so=lib/openmpi/mca_ras_dash_host.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_gridengine.so=lib/openmpi/mca_ras_gridengine.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_localhost.so=lib/openmpi/mca_ras_localhost.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_tm.so=lib/openmpi/mca_ras_tm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rds_hostfile.so=lib/openmpi/mca_rds_hostfile.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rds_proxy.so=lib/openmpi/mca_rds_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rds_resfile.so=lib/openmpi/mca_rds_resfile.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rmaps_proxy.so=lib/openmpi/mca_rmaps_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rmaps_round_robin.so=lib/openmpi/mca_rmaps_round_robin.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rmgr_proxy.so=lib/openmpi/mca_rmgr_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rml_oob.so=lib/openmpi/mca_rml_oob.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rmgr_urm.so=lib/openmpi/mca_rmgr_urm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_env.so=lib/openmpi/mca_sds_env.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_pipe.so=lib/openmpi/mca_sds_pipe.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_seed.so=lib/openmpi/mca_sds_seed.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_singleton.so=lib/openmpi/mca_sds_singleton.so 0755 root bin
#
# libs (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
#
d none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libopal.so.0.0.0=lib/LIB_ISAV9/libopal.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libopal.so=libopal.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libopal.so.0=libopal.so.0.0.0 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/liborte.so.0.0.0=lib/LIB_ISAV9/liborte.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/liborte.so=liborte.so.0.0.0 0755 root bin
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/liborte.so.0=liborte.so.0.0.0 0755 root bin
#
# libs/openmpi (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
#
d none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_errmgr_hnp.so=lib/LIB_ISAV9/openmpi/mca_errmgr_hnp.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_errmgr_orted.so=lib/LIB_ISAV9/openmpi/mca_errmgr_orted.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_errmgr_proxy.so=lib/LIB_ISAV9/openmpi/mca_errmgr_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_gpr_null.so=lib/LIB_ISAV9/openmpi/mca_gpr_null.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_gpr_proxy.so=lib/LIB_ISAV9/openmpi/mca_gpr_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_gpr_replica.so=lib/LIB_ISAV9/openmpi/mca_gpr_replica.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_iof_proxy.so=lib/LIB_ISAV9/openmpi/mca_iof_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_iof_svc.so=lib/LIB_ISAV9/openmpi/mca_iof_svc.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_maffinity_first_use.so=lib/LIB_ISAV9/openmpi/mca_maffinity_first_use.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ns_proxy.so=lib/LIB_ISAV9/openmpi/mca_ns_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ns_replica.so=lib/LIB_ISAV9/openmpi/mca_ns_replica.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_odls_default.so=lib/LIB_ISAV9/openmpi/mca_odls_default.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_oob_tcp.so=lib/LIB_ISAV9/openmpi/mca_oob_tcp.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_osc_pt2pt.so=lib/LIB_ISAV9/openmpi/mca_osc_pt2pt.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_osc_rdma.so=lib/LIB_ISAV9/openmpi/mca_osc_rdma.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_paffinity_solaris.so=lib/LIB_ISAV9/openmpi/mca_paffinity_solaris.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_gridengine.so=lib/LIB_ISAV9/openmpi/mca_pls_gridengine.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_proxy.so=lib/LIB_ISAV9/openmpi/mca_pls_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_rsh.so=lib/LIB_ISAV9/openmpi/mca_pls_rsh.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_tm.so=lib/LIB_ISAV9/openmpi/mca_pls_tm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_dash_host.so=lib/LIB_ISAV9/openmpi/mca_ras_dash_host.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_gridengine.so=lib/LIB_ISAV9/openmpi/mca_ras_gridengine.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_localhost.so=lib/LIB_ISAV9/openmpi/mca_ras_localhost.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_tm.so=lib/LIB_ISAV9/openmpi/mca_ras_tm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rds_hostfile.so=lib/LIB_ISAV9/openmpi/mca_rds_hostfile.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rds_proxy.so=lib/LIB_ISAV9/openmpi/mca_rds_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rds_resfile.so=lib/LIB_ISAV9/openmpi/mca_rds_resfile.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rmaps_proxy.so=lib/LIB_ISAV9/openmpi/mca_rmaps_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rmaps_round_robin.so=lib/LIB_ISAV9/openmpi/mca_rmaps_round_robin.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rmgr_proxy.so=lib/LIB_ISAV9/openmpi/mca_rmgr_proxy.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rmgr_urm.so=lib/LIB_ISAV9/openmpi/mca_rmgr_urm.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rml_oob.so=lib/LIB_ISAV9/openmpi/mca_rml_oob.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_env.so=lib/LIB_ISAV9/openmpi/mca_sds_env.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_pipe.so=lib/LIB_ISAV9/openmpi/mca_sds_pipe.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_seed.so=lib/LIB_ISAV9/openmpi/mca_sds_seed.so 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_singleton.so=lib/LIB_ISAV9/openmpi/mca_sds_singleton.so 0755 root bin
#
# share
#
d none SUNWhpc/$SUNW_PRODVERS/share 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/share/openmpi 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mca-base.txt=share/openmpi/help-mca-base.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mca-coll-base.txt=share/openmpi/help-mca-coll-base.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mca-param.txt=share/openmpi/help-mca-param.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-odls-default.txt=share/openmpi/help-odls-default.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-opal-runtime.txt=share/openmpi/help-opal-runtime.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-opal-wrapper.txt=share/openmpi/help-opal-wrapper.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orte-rmaps-base.txt=share/openmpi/help-orte-rmaps-base.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orte-rmaps-rr.txt=share/openmpi/help-orte-rmaps-rr.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orte-runtime.txt=share/openmpi/help-orte-runtime.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orted.txt=share/openmpi/help-orted.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orterun.txt=share/openmpi/help-orterun.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-base.txt=share/openmpi/help-pls-base.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-gridengine.txt=share/openmpi/help-pls-gridengine.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-rsh.txt=share/openmpi/help-pls-rsh.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-tm.txt=share/openmpi/help-pls-tm.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-ras-gridengine.txt=share/openmpi/help-ras-gridengine.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-rmgr-base.txt=share/openmpi/help-rmgr-base.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpic++-wrapper-data.txt=share/openmpi/mpic++-wrapper-data.txt 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpiCC-wrapper-data.txt=mpic++-wrapper-data.txt 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpicxx-wrapper-data.txt=mpic++-wrapper-data.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpicc-wrapper-data.txt=share/openmpi/mpicc-wrapper-data.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpif77-wrapper-data.txt=share/openmpi/mpif77-wrapper-data.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpif90-wrapper-data.txt=share/openmpi/mpif90-wrapper-data.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/opalc++-wrapper-data.txt=share/openmpi/opalc++-wrapper-data.txt 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/opalCC-wrapper-data.txt=opalc++-wrapper-data.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/opalcc-wrapper-data.txt=share/openmpi/opalcc-wrapper-data.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/ortec++-wrapper-data.txt=share/openmpi/ortec++-wrapper-data.txt 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/orteCC-wrapper-data.txt=ortec++-wrapper-data.txt 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/ortecc-wrapper-data.txt=share/openmpi/ortecc-wrapper-data.txt 0444 root bin

Просмотреть файл

@ -1,29 +0,0 @@
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# MPI Package Man Pages
#
i pkginfo=pkginfo.SUNWortemn
i copyright
#
# man
#
d none SUNWhpc 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/man 0755 root bin
d none SUNWhpc/$SUNW_PRODVERS/man/man1 0755 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man1/mpiexec.1=man/man1/mpiexec.1 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man1/mpirun.1=man/man1/mpirun.1 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man1/opalcc.1=man/man1/opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/mpiCC.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/mpic++.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/mpicc.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/mpif77.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/mpif90.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/opalCC.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/opalc++.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/orteCC.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/ortecc.1=opalcc.1 0444 root bin
s none SUNWhpc/$SUNW_PRODVERS/man/man1/ortec++.1=opalcc.1 0444 root bin
f none SUNWhpc/$SUNW_PRODVERS/man/man1/orterun.1=man/man1/orterun.1 0444 root bin