Skip to content

peterrum/mpi-split-output

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Usage

mpisplit -np 7 bash ./main | cat temp_*

Installation

function mpisplit() {
    np=0

    while :; do
        case $1 in
            -np|--flag1) shift; np=$1;
            ;;
            *) break
        esac
        shift
    done


    if [ "$np" -le 1 ]; then
        $@
    else
        mpirun -np $np bash ~/projects/mpi-split/split.sh $@
    fi

}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages