compbench-devel Mailing List for CompBenchmarks (Page 45)
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-09-24 16:28:46
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21154 Modified Files: cloptions.cpp Log Message: --fetch added. Index: cloptions.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/cloptions.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** cloptions.cpp 19 Sep 2006 17:11:52 -0000 1.4 --- cloptions.cpp 24 Sep 2006 16:28:38 -0000 1.5 *************** *** 18,22 **** std::cout << "Usage: compbenchmarks [specs]" << std::endl << "Where specs is one of :" << std::endl ! << " --install <b-id> : download and pre-configure specified benchmark" << std::endl << " --version : display software version" << std::endl << " --uninstall <b-id> : remove specified benchmark" << std::endl --- 18,24 ---- std::cout << "Usage: compbenchmarks [specs]" << std::endl << "Where specs is one of :" << std::endl ! << " --install <b-id> : download and pre-configure specified benchmark" << std::endl ! << " --fetch <b-id> <tarball> : uses local gzipped-tarball file to prepare" << std::endl ! << " installation of <b-id>" << std::endl << " --version : display software version" << std::endl << " --uninstall <b-id> : remove specified benchmark" << std::endl *************** *** 60,63 **** --- 62,66 ---- {"version", 0, 0, 'v'}, {"install", 1, 0, 'i' }, + {"fetch", 1, 0, 'f'}, {"uninstall", 1, 0, 'u' }, {"list-benchmarks", 0, 0, 'L'}, *************** *** 76,80 **** break; ! c = getopt_long (argc, argv, "vhi:u:LHPC:I:B:2", /* :011000112", */ long_options, &option_index); if (c==-1) { --- 79,83 ---- break; ! c = getopt_long (argc, argv, "vhi:u:LHPCF:1:I:B:2", /* :011000112", */ long_options, &option_index); if (c==-1) { *************** *** 133,136 **** --- 136,163 ---- x=1; break; + case 'F': + if (!optarg) { + std::cerr << "benchmark missing in argument line" << std::endl; + x=1; + break; + } + bench=optarg; + printf("bid='%s'\n", bench.c_str()); + B=SB.select((char*) bench.c_str()); + if (!B) { + cbmUnknownBenchmark((char*) bench.c_str()); + x=1; + break; + } + printf("bench found.\n"); + optind++; + if (optind<=argc) { + B->Fetch(argv[optind-1]); + } else { + std::cerr << "tarball missing in argument line" << std::endl; + x=1; + break; + } + break; case 'B': bench=optarg; |
From: Frederic T. <xf...@us...> - 2006-09-24 16:27:48
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20785 Modified Files: ChangeLog configure configure.in README Log Message: Updated for 0.3.0. Index: README =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/README,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** README 20 Sep 2006 16:47:47 -0000 1.5 --- README 24 Sep 2006 16:27:42 -0000 1.6 *************** *** 1,8 **** $Id$ ! CompBenchmarks' suite 0.3.0-BETA1 ! ! This package integrate some of the well-known benchmarks and applications, providing a simple interface to download, compile and evaluate generated binaries more conveniently, according to customizable parameters. --- 1,7 ---- $Id$ ! CompBenchmarks' suite 0.3.0 ! This package integrates some of the well-known benchmarks and applications, providing a simple interface to download, compile and evaluate generated binaries more conveniently, according to customizable parameters. *************** *** 14,18 **** * wget, dialog, and few UNIX commands (tar, gzip, unzip, zcat, grep, head, mkdir, patch, rm, tail and cat) ! * Internet connection (to download packages) For now, CompilerBenchmarks' suite just supports tcc and gcc compilers on Linux and has only been tested on i686 and compatible systems. Any help improving that is welcome. --- 13,17 ---- * wget, dialog, and few UNIX commands (tar, gzip, unzip, zcat, grep, head, mkdir, patch, rm, tail and cat) ! * Internet connection (needed only to download packages) For now, CompilerBenchmarks' suite just supports tcc and gcc compilers on Linux and has only been tested on i686 and compatible systems. Any help improving that is welcome. *************** *** 46,49 **** --- 45,51 ---- * Run ./compbenchmarks-config + * If you don't have an internet connection, look at the --fetch of + compbenchmarks. It'll import a local archive as a known benchmark package. + * Contact informations and ways to submit results described at Index: ChangeLog =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ChangeLog 14 Sep 2006 19:43:23 -0000 1.2 --- ChangeLog 24 Sep 2006 16:27:41 -0000 1.3 *************** *** 1,3 **** ! 0.3.0 Complete rewrite of the core in C++. A new GUI has been developped in Perl with dialog. --- 1,9 ---- ! 0.3.0-BETA2 ! Few bug fixes. ! Internet connection is no longer needed (local ! packages can be used as input). ! Man page for compbenchmarks-config. ! ! 0.3.0-BETA1 Complete rewrite of the core in C++. A new GUI has been developped in Perl with dialog. *************** *** 20,22 **** 0.1.0-BETA ! First public version --- 26,28 ---- 0.1.0-BETA ! First public version \ No newline at end of file Index: configure =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/configure,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configure 20 Sep 2006 12:10:47 -0000 1.6 --- configure 24 Sep 2006 16:27:41 -0000 1.7 *************** *** 2233,2237 **** PACKAGE=compbenchmarks ! VERSION=0.3.0-BETA1 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then --- 2233,2237 ---- PACKAGE=compbenchmarks ! VERSION=0.3.0 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.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configure.in 20 Sep 2006 12:10:47 -0000 1.6 --- configure.in 24 Sep 2006 16:27:42 -0000 1.7 *************** *** 7,11 **** AC_CANONICAL_TARGET ! AM_INIT_AUTOMAKE(compbenchmarks, 0.3.0-BETA1) AM_CONFIG_HEADER(config.h) --- 7,11 ---- AC_CANONICAL_TARGET ! AM_INIT_AUTOMAKE(compbenchmarks, 0.3.0) AM_CONFIG_HEADER(config.h) |