openmp testing up-to-date

This commit is contained in:
Caner Candan 2010-11-20 01:01:45 +01:00
commit 6625cd247b
3 changed files with 95 additions and 16 deletions

10
eo/test/boxplot.py Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python
from pylab import *
import sys
DEFAULT_RESULTS_NAME = 'results.txt'
if __name__ == '__main__':
boxplot( [ [ float(value) for value in line.split() ] for line in open( DEFAULT_RESULTS_NAME if len(sys.argv) < 2 else sys.argv[1] ).readlines() ] )
show()