source: ThirdParty/mpqc_open/src/bin/mpqc/mpqcrunproc

Candidate_v1.6.1
Last change on this file was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100755
File size: 992 bytes
Line 
1#!/bin/bash
2
3# This script starts up a single MPI process.
4# It is used in parallel environments where it
5# is difficult to set up environment variables
6# or command line arguments that contain special
7# shell characters.
8
9mpqc=$1 && shift
10messagegrp=$1 && shift
11threadgrp=$1 && shift
12memorygrp=$1 && shift
13integral=$1 && shift
14
15function isodecode() {
16 str=$1 && shift
17 echo $str | sed -e 's/%20/ /g' \
18 -e 's/%3c/</g' -e 's/%3e/>/g' \
19 -e 's/%5b/[/g' -e 's/%5d/]/g' \
20 -e 's/%24/$/g' \
21 -e 's/%38/:/g' \
22 -e 's/%28/(/g' -e 's/%29/)/g' \
23 -e 's/%25/%/g'
24}
25
26if [ "$messagegrp" != none ]; then
27 export MESSAGEGRP=`isodecode $messagegrp`
28fi
29
30if [ "$threadgrp" != none ]; then
31 export THREADGRP=`isodecode $threadgrp`
32fi
33
34if [ "$memorygrp" != none ]; then
35 export MEMORYGRP=`isodecode $memorygrp`
36fi
37
38if [ "$integral" != none ]; then
39 export INTEGRAL=`isodecode $integral`
40fi
41
42
43$mpqc $*
44
Note: See TracBrowser for help on using the repository browser.