compbench-devel Mailing List for CompBenchmarks (Page 42)
Brought to you by:
xfred
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(48) |
Oct
(51) |
Nov
(66) |
Dec
(83) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(242) |
Feb
(56) |
Mar
(95) |
Apr
(120) |
May
(127) |
Jun
(32) |
Jul
(10) |
Aug
(55) |
Sep
(114) |
Oct
(3) |
Nov
|
Dec
|
From: Frederic T. <xf...@us...> - 2006-10-10 16:50:52
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv4707 Modified Files: Benchmark-Selector.cpp Log Message: benchpp-stepanov and linpackc-* selection/descriptions fixed. Index: Benchmark-Selector.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-Selector.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Benchmark-Selector.cpp 1 Oct 2006 19:36:11 -0000 1.4 --- Benchmark-Selector.cpp 10 Oct 2006 16:50:46 -0000 1.5 *************** *** 102,106 **** } ! if (tmp=="benchpp-stefanov-al12") { return(new CBMBenchmarkBENCHPP_STEPANOV_AL12(system)); } --- 102,106 ---- } ! if (tmp=="benchpp-stepanov-al12") { return(new CBMBenchmarkBENCHPP_STEPANOV_AL12(system)); } *************** *** 159,165 **** CBMBenchmarkBENCHPP_STEPANOV_AL12 benchpp_ste_al12(system); CBMBenchmarkLINPACKC_SP_UNROLL linpackc_sp_unroll(system); ! CBMBenchmarkLINPACKC_SP_UNROLL linpackc_sp_roll(system); ! CBMBenchmarkLINPACKC_SP_UNROLL linpackc_dp_unroll(system); ! CBMBenchmarkLINPACKC_SP_UNROLL linpackc_dp_roll(system); gzip1.display(); --- 159,165 ---- CBMBenchmarkBENCHPP_STEPANOV_AL12 benchpp_ste_al12(system); CBMBenchmarkLINPACKC_SP_UNROLL linpackc_sp_unroll(system); ! CBMBenchmarkLINPACKC_SP_ROLL linpackc_sp_roll(system); ! CBMBenchmarkLINPACKC_DP_UNROLL linpackc_dp_unroll(system); ! CBMBenchmarkLINPACKC_DP_ROLL linpackc_dp_roll(system); gzip1.display(); |
From: Frederic T. <xf...@us...> - 2006-10-10 16:49:47
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv4297 Modified Files: Benchmark.cpp Log Message: resetContext() added; Make() and Fetch() can be forced. UO_* variables used. Index: Benchmark.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Benchmark.cpp 3 Oct 2006 15:47:54 -0000 1.11 --- Benchmark.cpp 10 Oct 2006 16:49:41 -0000 1.12 *************** *** 4,7 **** --- 4,9 ---- #include <UI/UI.h> + #include <cloptions.h> + #include <config.h> *************** *** 39,42 **** --- 41,57 ---- } + int CBMBenchmark::resetContext(void) + { + std::string contextFile; + + contextFile=system->temporaryDirectory(CBMSystem::Status); + contextFile+="/"; + + contextFile+="bm-context-"; + contextFile+=packageName(); + + return(system->unlink(contextFile)); + } + std::string CBMBenchmark::localPackageAbsoluteName(void) { *************** *** 118,124 **** { std::string what = _currentCompiler->Binary(); ! what+="-"; what+=_currentOptions->Options(); ! return(system->md5(what)); } --- 133,139 ---- { std::string what = _currentCompiler->Binary(); ! what+="\n"; what+=_currentOptions->Options(); ! return(what); } *************** *** 385,394 **** } ! int CBMBenchmark::Make(void) { int r; std::string info; ! if (getStatus()>=Made) { return(1); } --- 400,409 ---- } ! int CBMBenchmark::Make(int _force) { int r; std::string info; ! if ((getStatus()>=Made) && (!_force)) { return(1); } *************** *** 415,423 **** int CBMBenchmark::Test(int _force) { ! int r; if (!hasTest()) return(1); if ((!_force) && (getStatus()>=Benchmarked)) { --- 430,443 ---- int CBMBenchmark::Test(int _force) { ! int r; ! std::string dum; if (!hasTest()) return(1); + if (getStatus()<Configured) { + UI->Fatal("Package is not configured"); + } + if ((!_force) && (getStatus()>=Benchmarked)) { *************** *** 429,436 **** } ! UI->Information(CBMUI::BenchTest, ! packageName()); ! ! r=test(_force); if (r) --- 449,464 ---- } ! if (UO_enableTestSuite) { ! UI->Information(CBMUI::BenchTest, ! packageName()); ! ! r=test(_force); ! } else { ! dum=packageName(); ! dum+=" : passed (disabled by user option)."; ! UI->Information(CBMUI::BenchTest, ! dum); ! r=1; ! } if (r) *************** *** 452,456 **** ! if ((getStatus()!=Tested) && (hasTest())) { info=benchmarkName(); info+=" not tested !"; --- 480,485 ---- ! if (((getStatus()!=Tested) && (hasTest())) && ! (UO_enableTestSuite)) { info=benchmarkName(); info+=" not tested !"; *************** *** 493,499 **** r=release(); ! if (r) storeStatus(Preconfigured); ! else { info="Clean failed for "; info+=packageName(); --- 522,529 ---- r=release(); ! if (r) { ! resetContext(); storeStatus(Preconfigured); ! } else { info="Clean failed for "; info+=packageName(); *************** *** 508,516 **** int r; ! r=Download(); if (!r) return(0); ! r=Extract(); if (!r) return(0); --- 538,548 ---- int r; ! resetContext(); ! ! r=Download(_force); if (!r) return(0); ! r=Extract(_force); if (!r) return(0); *************** *** 522,530 **** } ! r=PreConfigure(); return(r); } ! int CBMBenchmark::Fetch(char *_source) { std::string dest = localPackageAbsoluteName(); --- 554,562 ---- } ! r=PreConfigure(_force); return(r); } ! int CBMBenchmark::Fetch(char *_source, int _force) { std::string dest = localPackageAbsoluteName(); *************** *** 533,537 **** std::string md5; ! if (getStatus()>=Downloaded) { return(1); } --- 565,569 ---- std::string md5; ! if ((getStatus()>=Downloaded) && (!_force)) { return(1); } *************** *** 563,567 **** { std::string statusFile; - std::string contextFile; int r; --- 595,598 ---- *************** *** 571,578 **** statusFile=system->temporaryDirectory(CBMSystem::Status); statusFile+="/"; - - contextFile=statusFile; - contextFile+="bm-context-"; - contextFile+=packageName(); statusFile+="bm-status-"; statusFile+=packageName(); --- 602,605 ---- *************** *** 582,586 **** system->unlink(localPackageAbsoluteName().c_str()); system->unlink(statusFile.c_str()); ! system->unlink(contextFile.c_str()); r=uninstall(); storeStatus(Unknown); --- 609,613 ---- system->unlink(localPackageAbsoluteName().c_str()); system->unlink(statusFile.c_str()); ! resetContext(); r=uninstall(); storeStatus(Unknown); |
From: Frederic T. <xf...@us...> - 2006-10-10 16:49:01
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv3908 Modified Files: Benchmark.h Log Message: resetContext() added; Make() and Fetch() can be forced. Index: Benchmark.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Benchmark.h 4 Oct 2006 15:50:09 -0000 1.7 --- Benchmark.h 10 Oct 2006 16:48:49 -0000 1.8 *************** *** 102,105 **** --- 102,110 ---- virtual int readStatus(void); + /** Remove context. + * \sa storeContext() + */ + virtual int resetContext(void); + protected: /** Stores current compiler. */ *************** *** 325,328 **** --- 330,334 ---- * Uses make(). Overloading is unadvised. * This step won't be done and'll return 1 if getStatus()>=CBMPackage::Made. + * \param _force sets to 1 to force operation. May changes status. * \return 1 if ok. May changes status. * \sa Configure() *************** *** 330,334 **** * \sa status * \sa ContextMatches() */ ! virtual int Make(void); /** Test a package. --- 336,340 ---- * \sa status * \sa ContextMatches() */ ! virtual int Make(int _force = 0); /** Test a package. *************** *** 372,379 **** * to be extracted using Install(). * \param _source the archive file * \return 1 if ok. May changes status. * \sa status * \sa extract */ ! virtual int Fetch(char *_source); /** Uninstall package. --- 378,386 ---- * to be extracted using Install(). * \param _source the archive file + * \param _force assign to 1 for forcing operation. * \return 1 if ok. May changes status. * \sa status * \sa extract */ ! virtual int Fetch(char *_source, int _force = 0); /** Uninstall package. |
From: Frederic T. <xf...@us...> - 2006-10-04 16:41:12
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17022 Modified Files: compbenchmarks-config compbenchmarks-config.1 Log Message: 0.3.1 Index: compbenchmarks-config.1 =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-config.1,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** compbenchmarks-config.1 3 Oct 2006 15:59:54 -0000 1.3 --- compbenchmarks-config.1 4 Oct 2006 16:41:05 -0000 1.4 *************** *** 130,136 **** .\" .IX Title "COMPBENCHMARKS-CONFIG 1" ! .TH COMPBENCHMARKS-CONFIG 1 "2006-10-03" "perl v5.8.8" "User Contributed Perl Documentation" .SH "NAME" ! compbenchmarks\-config 0.3.0 \- compilers' benchmarking environment .SH "SYNOPSIS" .IX Header "SYNOPSIS" --- 130,136 ---- .\" .IX Title "COMPBENCHMARKS-CONFIG 1" ! .TH COMPBENCHMARKS-CONFIG 1 "2006-10-04" "perl v5.8.8" "User Contributed Perl Documentation" .SH "NAME" ! compbenchmarks\-config 0.3.1 \- compilers' benchmarking environment .SH "SYNOPSIS" .IX Header "SYNOPSIS" Index: compbenchmarks-config =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-config,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** compbenchmarks-config 4 Oct 2006 15:53:57 -0000 1.22 --- compbenchmarks-config 4 Oct 2006 16:41:04 -0000 1.23 *************** *** 564,568 **** $w=60; } ! my $cmd = "echo 'EOF' | $CBM_PROGRAMS{'DIALOG'} --backtitle 'compbenchmarks 0.3.0' --gauge '$title' $h $w $percent"; system("$cmd"); --- 564,568 ---- $w=60; } ! my $cmd = "echo 'EOF' | $CBM_PROGRAMS{'DIALOG'} --backtitle 'compbenchmarks 0.3.1' --gauge '$title' $h $w $percent"; system("$cmd"); *************** *** 575,579 **** $args=~s/\n/\\n/g; ! my $cmd = "$CBM_PROGRAMS{'DIALOG'} --backtitle 'compbenchmarks 0.3.0' $args --stdout > $DIALOG_TMPFILE"; system("$cmd"); --- 575,579 ---- $args=~s/\n/\\n/g; ! my $cmd = "$CBM_PROGRAMS{'DIALOG'} --backtitle 'compbenchmarks 0.3.1' $args --stdout > $DIALOG_TMPFILE"; system("$cmd"); *************** *** 1119,1123 **** =head1 NAME ! compbenchmarks-config 0.3.0 - compilers' benchmarking environment =head1 SYNOPSIS --- 1119,1123 ---- =head1 NAME ! compbenchmarks-config 0.3.1 - compilers' benchmarking environment =head1 SYNOPSIS |
From: Frederic T. <xf...@us...> - 2006-10-04 16:15:22
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv6888 Modified Files: ChangeLog Log Message: Better progress reporting. Index: ChangeLog =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ChangeLog 3 Oct 2006 15:51:14 -0000 1.10 --- ChangeLog 4 Oct 2006 16:15:18 -0000 1.11 *************** *** 6,9 **** --- 6,10 ---- * Verbosity on MD5 checksumings. * New --resume option for compbenchmarks-config + * Better progress report on compbenchmarks-config * Compiler compatibility checked for benchmark's defined language. |
From: Frederic T. <xf...@us...> - 2006-10-04 15:54:41
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv30740 Modified Files: TODO Log Message: References SF project tasks' page. Index: TODO =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/TODO,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TODO 20 Sep 2006 09:02:20 -0000 1.2 --- TODO 4 Oct 2006 15:54:38 -0000 1.3 *************** *** 0 **** --- 1,2 ---- + See http://sourceforge.net/pm/?group_id=150828 - + |
From: Frederic T. <xf...@us...> - 2006-10-04 15:54:01
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv30366 Modified Files: compbenchmarks-config Log Message: Cosmetic changes on benchmarking progress dialog; Status is now said explicit ly as previous. Index: compbenchmarks-config =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-config,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** compbenchmarks-config 4 Oct 2006 15:48:49 -0000 1.21 --- compbenchmarks-config 4 Oct 2006 15:53:57 -0000 1.22 *************** *** 869,873 **** my $togo = ($TOTAL_TIME/$i)*($tot-$i); my $eta = cbmc_eta($togo); ! cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); } next; --- 869,873 ---- my $togo = ($TOTAL_TIME/$i)*($tot-$i); my $eta = cbmc_eta($togo); ! cbmc_dialog_gauge("Benchmarked : $i/$tot (ETA. $eta) - Previous context :\n\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); } next; *************** *** 883,887 **** my $eta = cbmc_eta($togo); $r=~s/ //g; ! cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); if ($r =~ /^([\d|\.]*)e\+(\d*)$/) { --- 883,887 ---- my $eta = cbmc_eta($togo); $r=~s/ //g; ! cbmc_dialog_gauge("Benchmarked : $i/$tot (ETA. $eta) - Previous context :\n\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); if ($r =~ /^([\d|\.]*)e\+(\d*)$/) { |
From: Frederic T. <xf...@us...> - 2006-10-04 15:50:17
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv29041 Modified Files: Benchmark.h Log Message: Updated comments for Configure(); Index: Benchmark.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Benchmark.h 3 Oct 2006 15:47:54 -0000 1.6 --- Benchmark.h 4 Oct 2006 15:50:09 -0000 1.7 *************** *** 307,316 **** /** Configure package. * Configure downloaded package. ! * Uses configure(). Overloading is unadvised. ! * This step won't be done and'll return 1 if getStatus()>=CBMPackage::Configured. * \return 1 if ok. * \sa Download() * \sa Release() * \sa ContextMatches() * \sa status */ virtual int Configure(CBMBenchmarkContextCompiler *_currentCompiler, --- 307,319 ---- /** Configure package. * Configure downloaded package. ! * Uses configure(). Overloading is unadvised. Argument are used to keep ! * compiler and options used for current bench (context), even ! * if ./configure script is not present : they'll be used by Make(). ! * This step won't be done and'll return 1 if getStatus()>=CBMPackage::Configured. May changes status. * \return 1 if ok. * \sa Download() * \sa Release() * \sa ContextMatches() + * \sa Make(). * \sa status */ virtual int Configure(CBMBenchmarkContextCompiler *_currentCompiler, |
From: Frederic T. <xf...@us...> - 2006-10-04 15:49:37
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28663 Modified Files: Benchmark-BZIP2.cpp Benchmark-GZIP.cpp Log Message: Testsuites enabled. Index: Benchmark-GZIP.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-GZIP.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Benchmark-GZIP.cpp 3 Oct 2006 15:48:36 -0000 1.4 --- Benchmark-GZIP.cpp 4 Oct 2006 15:49:34 -0000 1.5 *************** *** 53,57 **** int CBMBenchmarkGZIP::hasTest(void) { ! return(0); } --- 53,57 ---- int CBMBenchmarkGZIP::hasTest(void) { ! return(1); } Index: Benchmark-BZIP2.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-BZIP2.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Benchmark-BZIP2.cpp 3 Oct 2006 15:48:36 -0000 1.3 --- Benchmark-BZIP2.cpp 4 Oct 2006 15:49:34 -0000 1.4 *************** *** 97,101 **** int CBMBenchmarkBZIP2::hasTest(void) { ! return(0); } --- 97,101 ---- int CBMBenchmarkBZIP2::hasTest(void) { ! return(1); } |
From: Frederic T. <xf...@us...> - 2006-10-04 15:48:54
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28290 Modified Files: compbenchmarks-config Log Message: Results given as 7.782e9 are understood and modified to standard form. Index: compbenchmarks-config =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-config,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** compbenchmarks-config 3 Oct 2006 15:44:48 -0000 1.20 --- compbenchmarks-config 4 Oct 2006 15:48:49 -0000 1.21 *************** *** 871,880 **** cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); } - next; } my $beg = time(); $SIG{INT} = \&sigint_compbenchmark; ! my $r = `$cmd`; $SIG{INT} = 'DEFAULT'; my $end = time(); --- 871,879 ---- cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); } next; } my $beg = time(); $SIG{INT} = \&sigint_compbenchmark; ! my $r = `$cmd`; $SIG{INT} = 'DEFAULT'; my $end = time(); *************** *** 885,888 **** --- 884,900 ---- $r=~s/ //g; cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); + + if ($r =~ /^([\d|\.]*)e\+(\d*)$/) { + my $pow = 1; + my $p = $2; + + if ($p>1) { + while ($p--) { + $pow*=10; + } + $r=$1*$pow; + } + } + my $F = $CBM_CURRENT_BENCH_RESULTS_FILE; open(FD, ">>$F"); # file must exists for archiving |
From: Frederic T. <xf...@us...> - 2006-10-03 16:00:02
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv1131 Modified Files: compbenchmarks-config.1 Log Message: 0.3.1. Index: compbenchmarks-config.1 =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-config.1,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** compbenchmarks-config.1 27 Sep 2006 16:53:28 -0000 1.2 --- compbenchmarks-config.1 3 Oct 2006 15:59:54 -0000 1.3 *************** *** 130,134 **** .\" .IX Title "COMPBENCHMARKS-CONFIG 1" ! .TH COMPBENCHMARKS-CONFIG 1 "2006-09-27" "perl v5.8.8" "User Contributed Perl Documentation" .SH "NAME" compbenchmarks\-config 0.3.0 \- compilers' benchmarking environment --- 130,134 ---- .\" .IX Title "COMPBENCHMARKS-CONFIG 1" ! .TH COMPBENCHMARKS-CONFIG 1 "2006-10-03" "perl v5.8.8" "User Contributed Perl Documentation" .SH "NAME" compbenchmarks\-config 0.3.0 \- compilers' benchmarking environment *************** *** 138,141 **** --- 138,143 ---- .PP compbenchmarks-config \-\-setup + .PP + compbenchmarks-config \-\-resume .SH "DESCRIPTION" .IX Header "DESCRIPTION" *************** *** 150,153 **** --- 152,158 ---- missing ones, basically according to your environment. .PP + If \-\-resume if the first argument, previous benchmarking is restored without any + user confirmation. + .PP compbenchmarks-config uses compbenchmark program. .SH "DIRECTORIES" |
From: Frederic T. <xf...@us...> - 2006-10-03 15:51:20
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv29980 Modified Files: ChangeLog Log Message: 0.3.1. Index: ChangeLog =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ChangeLog 1 Oct 2006 19:36:38 -0000 1.9 --- ChangeLog 3 Oct 2006 15:51:14 -0000 1.10 *************** *** 4,7 **** --- 4,13 ---- * linpackc package support (4 benchmarks). * bzip2 package support (2 benchmarks). + * Verbosity on MD5 checksumings. + * New --resume option for compbenchmarks-config + * Compiler compatibility checked for benchmark's defined + language. + * Fixes Cygwin compilation. + * Supports for native benchmark's testsuites. 0.3.0 *************** *** 33,35 **** 0.1.0-BETA ! * First public version \ No newline at end of file --- 39,41 ---- 0.1.0-BETA ! * First public version |
From: Frederic T. <xf...@us...> - 2006-10-03 15:48:39
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv29130 Modified Files: Benchmark-BZIP2.cpp Benchmark-BZIP2.h Benchmark-GZIP.cpp Benchmark-GZIP.h Log Message: Items for package testing (once built, and before benchmarking); disabled for now. Index: Benchmark-GZIP.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-GZIP.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Benchmark-GZIP.h 19 Sep 2006 17:09:35 -0000 1.3 --- Benchmark-GZIP.h 3 Oct 2006 15:48:36 -0000 1.4 *************** *** 32,35 **** --- 32,38 ---- protected: + virtual int hasTest(void); + virtual int test(void); + public: CBMBenchmarkGZIP(class CBMSystem *_system); Index: Benchmark-GZIP.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-GZIP.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Benchmark-GZIP.cpp 20 Sep 2006 16:51:27 -0000 1.3 --- Benchmark-GZIP.cpp 3 Oct 2006 15:48:36 -0000 1.4 *************** *** 4,7 **** --- 4,9 ---- #include <fstream> + #include <config.h> + CBMBenchmarkGZIP::CBMBenchmarkGZIP(CBMSystem *_system) : CBMBenchmarkxZIP(_system) *************** *** 49,52 **** --- 51,73 ---- } + int CBMBenchmarkGZIP::hasTest(void) + { + return(0); + } + + int CBMBenchmarkGZIP::test(void) + { + std::string cmd; + std::string sstdout; + + cmd="cd "; + cmd+=localPackageAbsoluteDirectory(); + cmd+=" && "; + cmd+=CBM_PROG_MAKE; + cmd+=" test 2> /dev/null"; + + return(system->exec(cmd, sstdout)==0); + } + char* CBMBenchmarkGZIP::extractDirectory(void) { Index: Benchmark-BZIP2.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-BZIP2.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Benchmark-BZIP2.h 2 Oct 2006 16:27:36 -0000 1.2 --- Benchmark-BZIP2.h 3 Oct 2006 15:48:36 -0000 1.3 *************** *** 32,35 **** --- 32,37 ---- protected: + virtual int hasTest(void); + virtual int test(void); public: CBMBenchmarkBZIP2(class CBMSystem *_system); Index: Benchmark-BZIP2.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-BZIP2.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Benchmark-BZIP2.cpp 2 Oct 2006 19:33:57 -0000 1.2 --- Benchmark-BZIP2.cpp 3 Oct 2006 15:48:36 -0000 1.3 *************** *** 95,98 **** --- 95,117 ---- } + int CBMBenchmarkBZIP2::hasTest(void) + { + return(0); + } + + int CBMBenchmarkBZIP2::test(void) + { + std::string cmd; + std::string sstdout; + + cmd="cd "; + cmd+=localPackageAbsoluteDirectory(); + cmd+=" && "; + cmd+=CBM_PROG_MAKE; + cmd+=" check 2> /dev/null"; + + return(system->exec(cmd, sstdout)==0); + } + char* CBMBenchmarkBZIP2::extractDirectory(void) { |
From: Frederic T. <xf...@us...> - 2006-10-03 15:47:57
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28658 Modified Files: Benchmark.cpp Benchmark.h Log Message: Items for package testing (once built, and before benchmarking). Index: Benchmark.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Benchmark.h 24 Sep 2006 16:30:00 -0000 1.5 --- Benchmark.h 3 Oct 2006 15:47:54 -0000 1.6 *************** *** 42,45 **** --- 42,46 ---- Configured, /*!< Package is configured (./configure) */ Made, /*!< Package has been made (make) */ + Tested, /*!< Package has been tested */ Benchmarked }; /*!< Benchmarked */ *************** *** 162,165 **** --- 163,181 ---- virtual int patch(int _force = 0); + + /** Indicates if the package provides a test method. + * Must be overloaded if so. Returns 0 by default. + * \return 0 by default, 1 if patch is needed. + * \sa test() + * \sa Test() + */ + virtual int hasTest(void); + + /** Method to test package. + * Must be overloaded to test package using a method provided by package + * maintainers. + * \sa Test() */ + virtual int test(int _force = 0); + /** Pure virtual method to pre-configure package * Pre-configuration creates any needed elements (files or what ever) to benchmark *************** *** 269,273 **** /** Patch package. * Patches extracted package. ! * Overloading is unadvised, 1 is returned without any action by default. * If hasPatch() returns 1, uses patch(). * This step won't be done and'll return 1 if getStatus()>=CBMPackage::Patched. --- 285,289 ---- /** Patch package. * Patches extracted package. ! * Overloading is unadvised, 1 is returned without any action, by default. * If hasPatch() returns 1, uses patch(). * This step won't be done and'll return 1 if getStatus()>=CBMPackage::Patched. *************** *** 313,316 **** --- 329,344 ---- virtual int Make(void); + /** Test a package. + * Test a built package. + * Overloading is unadvised, 1 is returned without any action, by default. + * If hasPatch() returns 1, uses patch(). + * This step won't be done and'll return 1 if getStatus()>=CBMPackage::Benchmarked. + * \param _force sets to 1 to force operation. May changes status. + * \return 1 if ok. + * \sa Make() + * \sa status */ + virtual int Test(int _force = 0); + + /** Run benchmarks. * Uses bench(). Overloading is unadvised. Index: Benchmark.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Benchmark.cpp 2 Oct 2006 19:17:11 -0000 1.10 --- Benchmark.cpp 3 Oct 2006 15:47:54 -0000 1.11 *************** *** 70,73 **** --- 70,83 ---- } + int CBMBenchmark::hasTest(void) + { + return(0); + } + + int CBMBenchmark::test(int _force) + { + return(1); + } + int CBMBenchmark::uninstall(void) *************** *** 343,346 **** --- 353,369 ---- } + if (language()!=_currentCompiler->language()) { + + storeContext(_currentCompiler, + _currentOptions); + info=_currentCompiler->Binary(); + info+=" is a "; + info+=_currentCompiler->language(); + info+=" compiler, while benchmark is written is "; + info+=language(); + info+="."; + UI->Fatal(info); + } + UI->Information(CBMUI::BenchConfigure, info); *************** *** 390,393 **** --- 413,449 ---- } + int CBMBenchmark::Test(int _force) + { + int r; + + if (!hasTest()) + return(1); + + if ((!_force) && + (getStatus()>=Benchmarked)) { + return(1); + } + + if (getStatus()<Made) { + return(0); + } + + UI->Information(CBMUI::BenchTest, + packageName()); + + r=test(_force); + + if (r) + storeStatus(Tested); + else { + std::string info; + info="Error testing "; + info+=localPackageAbsoluteName(); + UI->Fatal(info); + } + + return(r); + } + std::string CBMBenchmark::Bench(void) { *************** *** 395,398 **** --- 451,464 ---- std::string info; + + if ((getStatus()!=Tested) && (hasTest())) { + info=benchmarkName(); + info+=" not tested !"; + UI->Information(CBMUI::BenchTest, + info); + + return("0"); + } + UI->Information(CBMUI::BenchBench, benchmarkName()); *************** *** 481,485 **** if (expected_md5==md5) { UI->Information(CBMUI::ChecksumOK, ! localFile); storeStatus(Downloaded); --- 547,551 ---- if (expected_md5==md5) { UI->Information(CBMUI::ChecksumOK, ! dest); storeStatus(Downloaded); *************** *** 487,491 **** } else { UI->Information(CBMUI::ChecksumFailed, ! localFile); } } --- 553,557 ---- } else { UI->Information(CBMUI::ChecksumFailed, ! dest); } } |
From: Frederic T. <xf...@us...> - 2006-10-03 15:46:59
|
Update of /cvsroot/compbench/CompBenchmarks++/System In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28237 Modified Files: System-Unix.cpp Log Message: Fixes potential compiling issues on copy(); Index: System-Unix.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/System/System-Unix.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** System-Unix.cpp 24 Sep 2006 16:30:43 -0000 1.3 --- System-Unix.cpp 3 Oct 2006 15:46:56 -0000 1.4 *************** *** 26,30 **** { std::string cmd; ! std::string stdout; cmd="cp -f "; --- 26,30 ---- { std::string cmd; ! std::string sstdout; cmd="cp -f "; *************** *** 33,37 **** cmd+=to; ! return(exec(cmd, stdout)); } --- 33,37 ---- cmd+=to; ! return(exec(cmd, sstdout)); } |
From: Frederic T. <xf...@us...> - 2006-10-03 15:46:05
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark/Compiler In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27869 Modified Files: BenchmarkContext-Compiler.h Log Message: language() is now public, and commented. Index: BenchmarkContext-Compiler.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Compiler/BenchmarkContext-Compiler.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BenchmarkContext-Compiler.h 19 Sep 2006 17:08:59 -0000 1.3 --- BenchmarkContext-Compiler.h 3 Oct 2006 15:45:59 -0000 1.4 *************** *** 55,60 **** * \sa getCompilerVersion() */ virtual std::string getCompilerVersion(void) = 0; - - virtual char *language(void) = 0; public: /** Display compiler's information. --- 55,58 ---- *************** *** 81,84 **** --- 79,85 ---- virtual std::string Binary(void); + /** Gets compiler's language. + \return C or C++. */ + virtual char *language(void) = 0; /** Virtual destructor */ virtual ~CBMBenchmarkContextCompiler(); |
From: Frederic T. <xf...@us...> - 2006-10-03 15:44:52
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27472 Modified Files: compbenchmarks-config Log Message: --resume added. More detailled interface on benchmarking progress. Index: compbenchmarks-config =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-config,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** compbenchmarks-config 27 Sep 2006 16:23:24 -0000 1.19 --- compbenchmarks-config 3 Oct 2006 15:44:48 -0000 1.20 *************** *** 554,561 **** my $title = shift; my $percent = shift; ! my $result = ""; ! my $x; ! my $cmd = "echo 'EOF' | $CBM_PROGRAMS{'DIALOG'} --backtitle 'compbenchmarks 0.3.0' --gauge '$title' 6 60 $percent"; system("$cmd"); --- 554,568 ---- my $title = shift; my $percent = shift; ! my $h = shift; ! my $w = shift; ! my $result = ""; ! if (!defined($h)) { ! $h=6; ! } ! if (!defined($w)) { ! $w=60; ! } ! my $cmd = "echo 'EOF' | $CBM_PROGRAMS{'DIALOG'} --backtitle 'compbenchmarks 0.3.0' --gauge '$title' $h $w $percent"; system("$cmd"); *************** *** 834,840 **** if (!defined($resume)) { ! cbmc_dialog_gauge("Benchmarking...", 0); } else { ! cbmc_dialog_gauge("Resuming benchmarking...", 0); } foreach $r_l (keys %languages) { --- 841,847 ---- if (!defined($resume)) { ! cbmc_dialog_gauge("Benchmarking...", 0, 10, 70); } else { ! cbmc_dialog_gauge("Resuming benchmarking...", 0, 10, 70); } foreach $r_l (keys %languages) { *************** *** 862,866 **** my $togo = ($TOTAL_TIME/$i)*($tot-$i); my $eta = cbmc_eta($togo); ! cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)", sprintf("%d", $i*100.0/$tot)); } --- 869,873 ---- my $togo = ($TOTAL_TIME/$i)*($tot-$i); my $eta = cbmc_eta($togo); ! cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); } *************** *** 877,881 **** my $eta = cbmc_eta($togo); $r=~s/ //g; ! cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)", sprintf("%d", $i*100.0/$tot)); my $F = $CBM_CURRENT_BENCH_RESULTS_FILE; open(FD, ">>$F"); # file must exists for archiving --- 884,888 ---- my $eta = cbmc_eta($togo); $r=~s/ //g; ! cbmc_dialog_gauge("Benchmarking $i/$tot (ETA. $eta)\nCompiler : $r_c\nOptions : $r_o\nBenchmark : $r_b (" . ($r_n+1) . "/$CBM_BENCHMARKS_RUNS)", sprintf("%d", $i*100.0/$tot), 11, 70); my $F = $CBM_CURRENT_BENCH_RESULTS_FILE; open(FD, ">>$F"); # file must exists for archiving *************** *** 1065,1068 **** --- 1072,1078 ---- } elsif ($ARGV[0] eq '--setup') { cbmc_setup(); + } elsif ($ARGV[0] eq '--resume') { + cbmc_setup(); + cbmc_dialog_benchmark_run('resume'); } else { print STDERR "Unknown option.\n"; *************** *** 1105,1108 **** --- 1115,1120 ---- compbenchmarks-config --setup + compbenchmarks-config --resume + =head1 DESCRIPTION *************** *** 1117,1120 **** --- 1129,1135 ---- missing ones, basically according to your environment. + If --resume if the first argument, previous benchmarking is restored without any + user confirmation. + compbenchmarks-config uses compbenchmark program. |
From: Frederic T. <xf...@us...> - 2006-10-03 15:43:06
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv26590 Modified Files: cloptions.cpp Log Message: Test() launch on --bench Index: cloptions.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/cloptions.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** cloptions.cpp 24 Sep 2006 18:14:16 -0000 1.6 --- cloptions.cpp 3 Oct 2006 15:43:02 -0000 1.7 *************** *** 205,208 **** --- 205,209 ---- B->Configure(C, O); B->Make(); + B->Test(); } B->Bench(); |
From: Frederic T. <xf...@us...> - 2006-10-02 19:34:07
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv24142 Modified Files: Benchmark-BZIP2.cpp Log Message: Make just builds "bzip2" binary. Index: Benchmark-BZIP2.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-BZIP2.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Benchmark-BZIP2.cpp 1 Oct 2006 19:36:11 -0000 1.1 --- Benchmark-BZIP2.cpp 2 Oct 2006 19:33:57 -0000 1.2 *************** *** 66,70 **** cmd+=" && "; cmd+=CBM_PROG_MAKE; ! cmd+=" "; if (language()=="C") { --- 66,70 ---- cmd+=" && "; cmd+=CBM_PROG_MAKE; ! cmd+=" bzip2 "; if (language()=="C") { |
From: Frederic T. <xf...@us...> - 2006-10-02 19:17:15
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17803 Modified Files: Benchmark.cpp Log Message: Checksum status is reported (downloading & fetching). Index: Benchmark.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Benchmark.cpp 25 Sep 2006 15:38:51 -0000 1.9 --- Benchmark.cpp 2 Oct 2006 19:17:11 -0000 1.10 *************** *** 204,210 **** --- 204,216 ---- if (expected_md5==md5) { + UI->Information(CBMUI::ChecksumOK, + localFile); + storeStatus(Downloaded); return(1); } else { + UI->Information(CBMUI::ChecksumFailed, + localFile); + system->unlink((char*) localFile.c_str()); info="Unsuccesfull download "; *************** *** 474,479 **** --- 480,491 ---- if (expected_md5==md5) { + UI->Information(CBMUI::ChecksumOK, + localFile); + storeStatus(Downloaded); return(1); + } else { + UI->Information(CBMUI::ChecksumFailed, + localFile); } } |
From: Frederic T. <xf...@us...> - 2006-10-02 19:08:30
|
Update of /cvsroot/compbench/CompBenchmarks++/UI In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv14175 Modified Files: UI.cpp UI.h Log Message: New messages (package's testing & checksuming). Index: UI.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/UI/UI.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** UI.h 19 Sep 2006 17:11:05 -0000 1.3 --- UI.h 2 Oct 2006 19:08:26 -0000 1.4 *************** *** 37,40 **** --- 37,42 ---- FileWrite, /*!< File has been written */ FileRemove, /*!< File has been removed */ + ChecksumOK, /*!< Correct checksum message */ + ChecksumFailed, /*!< Bad checksum */ DirectoryCheck, /*!< Directory has been checked */ DirectoryCreate, /*!< Directory has been created */ *************** *** 45,48 **** --- 47,51 ---- BenchConfigure, /*!< Benchmark configured */ BenchMake, /*!< Benchmark (package) build */ + BenchTest, /*!< Benchmark is tested */ BenchBench, /*!< Benchmark ran */ BenchResult, /*!< Benchmark result is being Index: UI.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/UI/UI.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** UI.cpp 19 Sep 2006 17:10:25 -0000 1.3 --- UI.cpp 2 Oct 2006 19:08:26 -0000 1.4 *************** *** 39,42 **** --- 39,48 ---- what="Removing"; break; + case ChecksumOK: + what="MD5 Checksum successfuly verified on"; + break; + case ChecksumFailed: + what="Bad MD5 Checksum on"; + break; case DirectoryCheck: what="Checking directory"; *************** *** 60,63 **** --- 66,72 ---- what="Configuring"; break; + case BenchTest: + what="Testing"; + break; case BenchMake: what="Making"; |
From: Frederic T. <xf...@us...> - 2006-10-02 16:28:18
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv15503 Modified Files: main.h Log Message: doxygen comments updated. Version removed (now provided by the Doxyfile). Index: main.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/main.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** main.h 25 Sep 2006 16:44:26 -0000 1.1 --- main.h 2 Oct 2006 16:28:11 -0000 1.2 *************** *** 10,14 **** #define H_CBMMAIN ! /*! \mainpage CompBenchmarks 0.3.0 Internals * * \section intro_sec A foreword --- 10,14 ---- #define H_CBMMAIN ! /*! \mainpage CompBenchmarks Internals * * \section intro_sec A foreword |
From: Frederic T. <xf...@us...> - 2006-10-02 16:27:40
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv15154 Modified Files: Benchmark-BZIP2.h Log Message: doxygen comments. Index: Benchmark-BZIP2.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-BZIP2.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Benchmark-BZIP2.h 1 Oct 2006 19:36:11 -0000 1.1 --- Benchmark-BZIP2.h 2 Oct 2006 16:27:36 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- #include <Benchmark/Benchmark-xZIP.h> + /** \brief Defines the bzip2 package. + */ class CBMBenchmarkBZIP2 : public CBMBenchmarkxZIP { *************** *** 43,46 **** --- 45,50 ---- }; + /** \brief Defines the bzip2 benchmark using fastest compression level. + */ class CBMBenchmarkBZIP21 : public CBMBenchmarkBZIP2 { *************** *** 55,59 **** }; ! class CBMBenchmarkBZIP29 : public CBMBenchmarkBZIP2 { --- 59,64 ---- }; ! /** \brief Defines the bzip2 benchmark using maximum compression level. ! */ class CBMBenchmarkBZIP29 : public CBMBenchmarkBZIP2 { |
From: Frederic T. <xf...@us...> - 2006-10-01 19:57:28
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv13668 Modified Files: Doxyfile configure.in configure Log Message: 0.3.1 Index: Doxyfile =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Doxyfile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Doxyfile 27 Sep 2006 16:57:13 -0000 1.3 --- Doxyfile 1 Oct 2006 19:57:25 -0000 1.4 *************** *** 5,9 **** #--------------------------------------------------------------------------- PROJECT_NAME = CompBenchmarks ! PROJECT_NUMBER = 0.3.0 OUTPUT_DIRECTORY = doc CREATE_SUBDIRS = NO --- 5,9 ---- #--------------------------------------------------------------------------- PROJECT_NAME = CompBenchmarks ! PROJECT_NUMBER = 0.3.1 OUTPUT_DIRECTORY = doc CREATE_SUBDIRS = NO Index: configure =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/configure,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** configure 25 Sep 2006 17:29:32 -0000 1.9 --- configure 1 Oct 2006 19:57:25 -0000 1.10 *************** *** 2237,2241 **** PACKAGE=compbenchmarks ! VERSION=0.3.0 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then --- 2237,2241 ---- PACKAGE=compbenchmarks ! VERSION=0.3.1 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then Index: configure.in =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/configure.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** configure.in 25 Sep 2006 17:29:32 -0000 1.9 --- configure.in 1 Oct 2006 19:57:25 -0000 1.10 *************** *** 7,11 **** AC_CANONICAL_TARGET ! AM_INIT_AUTOMAKE(compbenchmarks, 0.3.0) AM_CONFIG_HEADER(config.h) --- 7,11 ---- AC_CANONICAL_TARGET ! AM_INIT_AUTOMAKE(compbenchmarks, 0.3.1) AM_CONFIG_HEADER(config.h) |
From: Frederic T. <xf...@us...> - 2006-10-01 19:49:19
|
Update of /cvsroot/compbench/CompBenchmarks++/share/patches In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv10619 Modified Files: Makefile.am Makefile.in Added Files: linpackc.patch.gz Log Message: patch for linpackc. Index: Makefile.in =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/share/patches/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile.in 20 Sep 2006 10:48:54 -0000 1.4 --- Makefile.in 1 Oct 2006 19:49:15 -0000 1.5 *************** *** 105,109 **** VERSION = @VERSION@ ! data_DATA = scimark2.patch.gz benchpp.patch.gz datarootdir = @datarootdir@/compbenchmarks/@VERSION@/patches --- 105,109 ---- VERSION = @VERSION@ ! data_DATA = scimark2.patch.gz benchpp.patch.gz linpackc.patch.gz datarootdir = @datarootdir@/compbenchmarks/@VERSION@/patches Index: Makefile.am =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/share/patches/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 18 Sep 2006 17:27:16 -0000 1.3 --- Makefile.am 1 Oct 2006 19:49:15 -0000 1.4 *************** *** 1,3 **** ! data_DATA = scimark2.patch.gz benchpp.patch.gz datarootdir = @datarootdir@/compbenchmarks/@VERSION@/patches --- 1,3 ---- ! data_DATA = scimark2.patch.gz benchpp.patch.gz linpackc.patch.gz datarootdir = @datarootdir@/compbenchmarks/@VERSION@/patches --- NEW FILE: linpackc.patch.gz --- (This appears to be a binary file; contents omitted.) |