35 lines
1.3 KiB
Bash
Executable File
35 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
#BHEADER**********************************************************************
|
|
# Copyright (c) 2008, Lawrence Livermore National Security, LLC.
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
# This file is part of HYPRE. See file COPYRIGHT for details.
|
|
#
|
|
# HYPRE is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU Lesser General Public License (as published by the Free
|
|
# Software Foundation) version 2.1 dated February 1999.
|
|
#
|
|
# $Revision$
|
|
#EHEADER**********************************************************************
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#=============================================================================
|
|
# sstruct: Run base 2d case
|
|
#=============================================================================
|
|
|
|
mpirun -np 1 ./sstruct -in sstruct.in.default_2D -r 2 2 1 -solver 19 \
|
|
> default2d.out.0
|
|
|
|
#=============================================================================
|
|
# sstruct: Run various blockings and distributions of default problem
|
|
#=============================================================================
|
|
|
|
mpirun -np 1 ./sstruct -in sstruct.in.default_2D -b 2 2 1 -solver 19 \
|
|
> default2d.out.1
|
|
mpirun -np 2 ./sstruct -in sstruct.in.default_2D -P 1 2 1 -r 2 1 1 -solver 19 \
|
|
> default2d.out.2
|