onlyexec and onlyprint parameters added on openmp script
This commit is contained in:
parent
6907b262e1
commit
bb2934fd09
1 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,5 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import pylab
|
|
||||||
import optparse, logging, sys, os
|
import optparse, logging, sys, os
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
|
|
@ -53,6 +52,9 @@ def logger(level_name, filename=LOG_DEFAULT_FILENAME):
|
||||||
|
|
||||||
options = parser()
|
options = parser()
|
||||||
|
|
||||||
|
if not options.onlyexecute:
|
||||||
|
import pylab
|
||||||
|
|
||||||
def get_boxplot_data( filename ):
|
def get_boxplot_data( filename ):
|
||||||
try:
|
try:
|
||||||
f = open( filename )
|
f = open( filename )
|
||||||
|
|
|
||||||
Reference in a new issue