diff options
author | miwi <miwi@FreeBSD.org> | 2006-11-19 07:03:16 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-11-19 07:03:16 +0800 |
commit | e20594cee923f8676226b02852ac440f5ed39636 (patch) | |
tree | 98c5e327dcdb94faf17ca0a6fe49c70e025eb41b /sysutils | |
parent | 352ba7d1ffbc7a39565162a8af9faf6bf298a770 (diff) | |
download | freebsd-ports-gnome-e20594cee923f8676226b02852ac440f5ed39636.tar.gz freebsd-ports-gnome-e20594cee923f8676226b02852ac440f5ed39636.tar.zst freebsd-ports-gnome-e20594cee923f8676226b02852ac440f5ed39636.zip |
Mpiexec is a replacement program for the script mpirun, which is
part of the MPICH package. It is used to initialize a parallel job
from within a PBS batch or interactive environment. Mpiexec uses
the task manager library of PBS to spawn copies of the executable
on the nodes in a PBS allocation.
WWW: http://www.osc.edu/~pw/mpiexec/index.php
PR: ports/105650
Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/mpiexec/Makefile | 25 | ||||
-rw-r--r-- | sysutils/mpiexec/distinfo | 3 | ||||
-rw-r--r-- | sysutils/mpiexec/pkg-descr | 7 |
4 files changed, 36 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index d914a0e380dd..3bf61dca9f0e 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -374,6 +374,7 @@ SUBDIR += most SUBDIR += mount.app SUBDIR += mountsmb2 + SUBDIR += mpiexec SUBDIR += msyslog SUBDIR += mtxorbd SUBDIR += multitail diff --git a/sysutils/mpiexec/Makefile b/sysutils/mpiexec/Makefile new file mode 100644 index 000000000000..be967beb260b --- /dev/null +++ b/sysutils/mpiexec/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: mpiexec +# Date created: 2006-11-16 +# Whom: trasz <trasz@pin.if.uz.zgora.pl> +# +# $FreeBSD$ +# + +PORTNAME= mpiexec +PORTVERSION= 0.81 +CATEGORIES= sysutils parallel +MASTER_SITES= http://www.osc.edu/~pw/mpiexec/ +EXTRACT_SUFX= .tgz + +MAINTAINER= trasz@pin.if.uz.zgora.pl +COMMENT= A tool to run a parallel job from within a PBS environment + +LIB_DEPENDS= torque.0:${PORTSDIR}/sysutils/torque + +GNU_CONFIGURE= yes +USE_GMAKE= yes + +PLIST_FILES= bin/mpiexec +MAN1= mpiexec.1 + +.include <bsd.port.mk> diff --git a/sysutils/mpiexec/distinfo b/sysutils/mpiexec/distinfo new file mode 100644 index 000000000000..1fc0aaaa5168 --- /dev/null +++ b/sysutils/mpiexec/distinfo @@ -0,0 +1,3 @@ +MD5 (mpiexec-0.81.tgz) = bc687b3d2882d32af87577bb6cc687de +SHA256 (mpiexec-0.81.tgz) = 31f5287d7d9049a2302935e094c6885e48baecfd5492ac0fe9afc091d6b0db04 +SIZE (mpiexec-0.81.tgz) = 195474 diff --git a/sysutils/mpiexec/pkg-descr b/sysutils/mpiexec/pkg-descr new file mode 100644 index 000000000000..b1bc6700df95 --- /dev/null +++ b/sysutils/mpiexec/pkg-descr @@ -0,0 +1,7 @@ +Mpiexec is a replacement program for the script mpirun, which is +part of the MPICH package. It is used to initialize a parallel job +from within a PBS batch or interactive environment. Mpiexec uses +the task manager library of PBS to spawn copies of the executable +on the nodes in a PBS allocation. + +WWW: http://www.osc.edu/~pw/mpiexec/index.php |