summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Arteaga <andyspiros@gmail.com>2012-09-03 23:46:10 +0200
committerAndrea Arteaga <andyspiros@gmail.com>2012-09-03 23:46:10 +0200
commit0ac5830ac17340459766f96c7cf88741674d4ee0 (patch)
tree64f7903fca454e406641c25337757e39d9ae7742
parentMerge branch 'master' into accuracy (diff)
downloadauto-numerical-bench-0ac5830ac17340459766f96c7cf88741674d4ee0.tar.gz
auto-numerical-bench-0ac5830ac17340459766f96c7cf88741674d4ee0.tar.bz2
auto-numerical-bench-0ac5830ac17340459766f96c7cf88741674d4ee0.zip
Removed useless print.
-rw-r--r--numbench/modules/internal/accuracyBase.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/numbench/modules/internal/accuracyBase.py b/numbench/modules/internal/accuracyBase.py
index c251513..58a1101 100644
--- a/numbench/modules/internal/accuracyBase.py
+++ b/numbench/modules/internal/accuracyBase.py
@@ -108,7 +108,6 @@ def runExe(test, implementation, exe, args):
if errp == 0:
os.unlink(errfname)
- print "RESULT IN ACCURACY:", result
# Close, return
logfs.close()
return proc.returncode, result
@@ -168,4 +167,4 @@ def runTest(self, test, implementation):
return runExe(test, implementation, exe, self.tests)[1]
def reportConf(*args):
- return {'type':'plot', 'xlabel':'size', 'ylabel':'Error'}
+ return {'xscale':'log', 'yscale':'log', 'xlabel':'size', 'ylabel':'Error'}