1#!/bin/sh
2
3##########################################################################
4# Copyright (c) 2007, 2008, 2009, ETH Zurich.
5# All rights reserved.
6#
7# This file is distributed under the terms in the attached LICENSE file.
8# If you do not find this file, copies can be found by writing to:
9# ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
10##########################################################################
11
12rm -f results*.txt
13
14for i in `seq 1 $MAXCORES`; do
15    ./scalability-gomp $i >> results_scalability_gomp.txt
16    ./scalability-bomp $i >> results_scalability_bomp.txt
17    ./cg-gomp $i >> results_cg_gomp.txt
18    ./cg-bomp $i >> results_cg_bomp.txt
19    ./ft-gomp $i >> results_ft_gomp.txt
20    ./ft-bomp $i >> results_ft_bomp.txt
21    ./is-gomp $i >> results_is_gomp.txt
22    ./is-bomp $i >> results_is_bomp.txt
23done
24