openmp testing up-to-date
This commit is contained in:
parent
790153f6aa
commit
6625cd247b
3 changed files with 95 additions and 16 deletions
10
eo/test/boxplot.py
Executable file
10
eo/test/boxplot.py
Executable 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()
|
||||
Reference in a new issue