Lines Matching refs:min_time
151 def compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir, min_time, max_time):
155 if verbose: print "Processing data file 1/2 with %s<time<%s" % (min_time,end_time)
207 if (min_time == 0):
208 min_time==0.5
211 if ((float(time)>(float(min_time)*1000)) and ((int(time) < (int(max_time)*1000)) or max_time==-1)):
376 print '-m or --min_time <time> : Only consider data starting from <time> seconds (default is 0)'
393 min_time=0
410 opts, args = getopt.getopt(argv[1:],"ghkbivo:d:t:p:G:m:M:",['bandwidth', 'iops', 'pattern', 'outputfile', 'outputdir', 'title', 'min_time', 'max_time', 'gnuplot', 'Global', 'help', 'verbose','keep'])
440 elif opt in ("-m", "--min_time"):
441 min_time=arg
495 blk_size=compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir,min_time,max_time)