~ubuntu-branches/ubuntu/saucy/rheolef/saucy

« back to all changes in this revision

Viewing changes to skit/ptst2/pcg_tst.sh

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-03-23 11:14:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110323111426-cjvhey7lxt6077ty
Tags: 5.93-1
* New upstream release (minor changes):
  - some extra warning message deleted in heap_allocator
  - graphic output with mayavi2 fixed
  - add doc refman in .info and .pdf format

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# This file is part of Rheolef.
 
4
#
 
5
# Copyright (C) 2000-2009 Pierre Saramito 
 
6
#
 
7
# Rheolef is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation; either version 2 of the License, or
 
10
# (at your option) any later version.
 
11
#
 
12
# Rheolef is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with Rheolef; if not, write to the Free Software
 
19
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
20
#
 
21
# -------------------------------------------------------------------------
 
22
SRCDIR=${SRCDIR-"."}
 
23
TOP_SRCDIR=${TOP_SRCDIR-"../.."}
 
24
NPROC_MAX=${NPROC_MAX-"3"}
 
25
. "${TOP_SRCDIR}/config/loop_mpirun.sh"
 
26
 
 
27
status=0
 
28
#loop_mpirun "./pcg_tst < solver_tst.mm 2>/dev/null >/dev/null"
 
29
#if test $? -ne 0; then status=1; fi
 
30
 
 
31
#TODO: also check small matrices, but pastix is buggy
 
32
#exit $status
 
33
 
 
34
i=5;
 
35
while test $i -ge 0; do
 
36
    run "echo | LANG=C awk -v n=$i -f ${SRCDIR}/gen_solver_mtx.awk > solver-$i.mtx"
 
37
    if test $? -ne 0; then status=1; break; fi
 
38
 
 
39
    loop_mpirun "./pcg_tst < solver-$i.mtx 2>/dev/null >/dev/null"
 
40
    if test $? -ne 0; then status=1; fi
 
41
 
 
42
    run "rm -f solver-$i.mtx"
 
43
    if test $? -ne 0; then status=1; break; fi
 
44
 
 
45
    i=`expr $i - 1`
 
46
done
 
47
 
 
48
exit $status