From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qp9R9-0001E4-2t for garchives@archives.gentoo.org; Fri, 05 Aug 2011 01:42:55 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66A6821C086; Fri, 5 Aug 2011 01:42:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 304CB21C086 for ; Fri, 5 Aug 2011 01:42:47 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B4621B401A for ; Fri, 5 Aug 2011 01:42:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 942EB80040 for ; Fri, 5 Aug 2011 01:42:44 +0000 (UTC) From: "Andrea Arteaga" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrea Arteaga" Message-ID: <7c9c82b70ca555ad7549150e6fe517d9623c6187.spiros@gentoo> Subject: [gentoo-commits] proj/auto-numerical-bench:unstable commit in: /, accuracy/lapack/ X-VCS-Repository: proj/auto-numerical-bench X-VCS-Files: accuracy/lapack/main_lapack.cpp main.py X-VCS-Directories: / accuracy/lapack/ X-VCS-Committer: spiros X-VCS-Committer-Name: Andrea Arteaga X-VCS-Revision: 7c9c82b70ca555ad7549150e6fe517d9623c6187 Date: Fri, 5 Aug 2011 01:42:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 0596db270421a9f73d53427fa4fb4771 commit: 7c9c82b70ca555ad7549150e6fe517d9623c6187 Author: Andrea Arteaga gmail com> AuthorDate: Fri Aug 5 01:42:29 2011 +0000 Commit: Andrea Arteaga gmail com> CommitDate: Fri Aug 5 01:42:29 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/auto-numerica= l-bench.git;a=3Dcommit;h=3D7c9c82b7 Solved problem with sizes. --- accuracy/lapack/main_lapack.cpp | 2 +- main.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/accuracy/lapack/main_lapack.cpp b/accuracy/lapack/main_lapac= k.cpp index ca4fa67..896e190 100644 --- a/accuracy/lapack/main_lapack.cpp +++ b/accuracy/lapack/main_lapack.cpp @@ -29,7 +29,7 @@ extern "C" { template void test(exec_t exec, const std::string& testname, const int& max =3D 3= 000, const int& N =3D 100) { - static vector sizes =3D logsizes(1, max, N); + vector sizes =3D logsizes(1, max, N); Timer timer; =20 ostringstream fname; diff --git a/main.py b/main.py index 360d055..0bd842f 100755 --- a/main.py +++ b/main.py @@ -108,6 +108,8 @@ cfg.tests =3D tests_from_input(input) # Write summary print 80*'=3D' print "The following tests will be run:" +print "-------------------------------" +print for tname, ttest in cfg.tests.items(): print "Test: " + tname if ttest['descr'] is not None: