COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/benchmark/benchmark @ 754:2471ef33b4a0

Last change on this file since 754:2471ef33b4a0 was 754:2471ef33b4a0, checked in by Alpar Juttner, 20 years ago

Test icc compiler as well.

  • Property exe set to *
File size: 1.2 KB
Line 
1#!/bin/bash
2
3function runtest () # prefix, prog, args
4{
5    echo $1 1>&2
6    $2 $3 $4 $5 $6 $7 $8 $9 >/dev/null;
7    for ((i=1;i<=3;i++))
8      do
9      $2 $3 $4 $5 $6 $7 $8 $9;
10    done |
11    awk '{print "'$1'",$0}'
12}
13
14function runalltest() #postfix, CXX, CXXFLAGS
15{
16    echo $1 1>&2
17    make clean >/dev/null
18    make CXX="$2" CXXFLAGS="$3"  >/dev/null
19    {
20        runtest HCUBE19 hcube 19
21        runtest BFS13-5000 hcube 13 5000
22        runtest BFS10-50000 hcube 10 50000
23        runtest GRBENCH graph-bench
24    } | awk "{print \$0, \"$1\"}"
25}
26
27runalltest "gcc-3.3 -O2"                 g++ "-O2"
28runalltest "gcc-3.3 -O2-march=pentium-m" g++ "-O2 -march=pentium-m"
29runalltest "gcc-3.3 -O3"                 g++ "-O3"
30runalltest "gcc-3.3 -O3-march=pentium-m" g++ "-O3 -march=pentium-m"
31
32runalltest "gcc-3.4 -O2"                 g++-3.4 "-O2"
33runalltest "gcc-3.4 -O2-march=pentium-m" g++-3.4 "-O2 -march=pentium-m"
34runalltest "gcc-3.4 -O3"                 g++-3.4 "-O3"
35runalltest "gcc-3.4 -O3-march=pentium-m" g++-3.4 "-O3 -march=pentium-m"
36         
37runalltest "icc -O2"                 icc "-O2"
38runalltest "icc -O2-march=pentium-m" icc "-O2 -march=pentium-m"
39runalltest "icc -O3"                 icc "-O3"
40runalltest "icc -O3-march=pentium-m" icc "-O3 -march=pentium-m"
41
Note: See TracBrowser for help on using the repository browser.