Module: Fruity::Util
Overview
Utility module doing most of the maths
Constant Summary collapse
- PROPER_TIME_RELATIVE_ERROR =
0.001
- MEASUREMENTS_BY_REALTIME =
2
- MEASUREMENTS_BY_PROPER_TIME =
2 * MEASUREMENTS_BY_REALTIME
- APPROX_POWER =
5
- BASELINE_THRESHOLD =
Ratio between two identical baselines is typically < 1.02, while 2+2 compared to baseline is typically > 1.02
1.02
Instance Method Summary collapse
-
#clock_precision ⇒ Object
Measures the smallest obtainable delta of two time measurements.
-
#compare_stats(cur, vs) ⇒ Object
Given two stats
cur
andvs
, returns a hash with the ratio between the two, the precision, etc. -
#difference(values, baseline) ⇒ Object
Calculates the stats of the difference of
values
andbaseline
(which can be stats or timings). - #filter(series, remove_min_ratio, remove_max_ratio = remove_min_ratio) ⇒ Object
-
#proper_time(exec, options = {}) ⇒ Object
The proper time is the real time taken by calling
exec
number of times given byoptions[:magnify]
minus the real time for calling an empty executable instead. -
#proper_time_precision ⇒ Object
Returns the inherent precision of
proper_time
. -
#real_time(exec, options = {}) ⇒ Object
Returns the real time taken by calling
exec
number of times given byoptions[:magnify]
. -
#result_of(exec, options = {}) ⇒ Object
Returns the result of calling
exec
. -
#stats(values) ⇒ Object
Calculates stats on some values: {:min, :max, :mean, :sample_std_dev }.
-
#sufficient_magnification(exec, options = {}) ⇒ Object
Calculates the number
n
that needs to be passed toreal_time
to get a result that is precise to withinPROPER_TIME_RELATIVE_ERROR
when compared to the baseline. - #sufficient_magnification_and_delay(exec, options = {}) ⇒ Object
Instance Method Details
#clock_precision ⇒ Object
Measures the smallest obtainable delta of two time measurements
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/fruity/util.rb', line 16 def clock_precision @clock_precision ||= 10.times.map do t = Time.now delta = Time.now - t while delta == 0 delta = Time.now - t end delta end.min end |
#compare_stats(cur, vs) ⇒ Object
Given two stats cur
and vs
, returns a hash with the ratio between the two, the precision, etc.
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/fruity/util.rb', line 168 def compare_stats(cur, vs) err = (vs[:sample_std_dev] + cur[:sample_std_dev] * vs[:mean] / cur[:mean] ) / cur[:mean] rounding = err > 0 ? -Math.log(err, 10) : 666 mean = vs[:mean] / cur[:mean] { :mean => mean, :factor => (mean).round(rounding), :max => (vs[:mean] + vs[:sample_std_dev]) / (cur[:mean] - cur[:sample_std_dev]), :min => (vs[:mean] - vs[:sample_std_dev]) / (cur[:mean] + cur[:sample_std_dev]), :rounding => rounding, :precision => 10.0 **(-rounding.round), } end |
#difference(values, baseline) ⇒ Object
Calculates the stats of the difference of values
and baseline
(which can be stats or timings)
154 155 156 157 158 159 160 161 162 163 |
# File 'lib/fruity/util.rb', line 154 def difference(values, baseline) values, baseline = [values, baseline].map{|x| x.is_a?(Hash) ? x : stats(x)} { :min => values[:min] - baseline[:max], :max => values[:max] - baseline[:min], :mean => values[:mean] - baseline[:mean], :sample_std_dev => Math.sqrt(values[:sample_std_dev] ** 2 + values[:sample_std_dev] ** 2), # See http://stats.stackexchange.com/questions/6096/correct-way-to-calibrate-means } end |
#filter(series, remove_min_ratio, remove_max_ratio = remove_min_ratio) ⇒ Object
185 186 187 188 189 190 |
# File 'lib/fruity/util.rb', line 185 def filter(series, remove_min_ratio, remove_max_ratio = remove_min_ratio) series.sort![ (remove_min_ratio * series.size).floor ... ((1-remove_max_ratio) * series.size).ceil ] end |
#proper_time(exec, options = {}) ⇒ Object
The proper time is the real time taken by calling exec
number of times given by options[:magnify]
minus the real time for calling an empty executable instead.
If options[:magnify]
is not given, it will be calculated to be meaningful.
81 82 83 84 85 86 |
# File 'lib/fruity/util.rb', line 81 def proper_time(exec, = {}) unless .has_key?(:magnify) = {:magnify => sufficient_magnification(exec, )}.merge() end real_time(exec, ) - real_time(Baseline[exec], ) end |
#proper_time_precision ⇒ Object
Returns the inherent precision of proper_time
126 127 128 |
# File 'lib/fruity/util.rb', line 126 def proper_time_precision MEASUREMENTS_BY_PROPER_TIME * clock_precision end |
#real_time(exec, options = {}) ⇒ Object
Returns the real time taken by calling exec
number of times given by options[:magnify]
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/fruity/util.rb', line 91 def real_time(exec, = {}) GC.start GC.disable if [:disable_gc] n = .fetch(:magnify) if .has_key?(:self) new_self = [:self] if args = [:args] and args.size > 0 Benchmark.realtime{ n.times{ new_self.instance_exec(*args, &exec) } } else Benchmark.realtime{ n.times{ new_self.instance_eval(&exec) } } end else if args = [:args] and args.size > 0 Benchmark.realtime{ n.times{ exec.call(*args) } } else Benchmark.realtime{ n.times{ exec.call } } end end ensure GC.enable end |
#result_of(exec, options = {}) ⇒ Object
Returns the result of calling exec
115 116 117 118 119 120 121 122 |
# File 'lib/fruity/util.rb', line 115 def result_of(exec, = {}) args = ([:args] || []) if .has_key?(:self) [:self].instance_exec(*args, &exec) else exec.call(*args) end end |
#stats(values) ⇒ Object
Calculates stats on some values: {:min, :max, :mean, :sample_std_dev }
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/fruity/util.rb', line 132 def stats(values) sum = values.inject(0, :+) # See http://en.wikipedia.org/wiki/Standard_deviation#Rapid_calculation_methods q = mean = 0 values.each_with_index do |x, k| prev_mean = mean mean += (x - prev_mean) / (k + 1) q += (x - mean) * (x - prev_mean) end sample_std_dev = Math.sqrt( q / (values.size-1) ) min, max = values.minmax { :min => min, :max => max, :mean => mean, :sample_std_dev => sample_std_dev } end |
#sufficient_magnification(exec, options = {}) ⇒ Object
Calculates the number n
that needs to be passed to real_time
to get a result that is precise to within PROPER_TIME_RELATIVE_ERROR
when compared to the baseline.
For example, ->{ sleep(1) } needs only to be run once to get a measurement that will not be affected by the inherent imprecision of the time measurement (or of the inner loop), but ->{ 2 + 2 } needs to be called a huge number of times so that the returned time measurement is not due in big part to the imprecision of the measurement itself or the inner loop itself.
41 42 43 44 |
# File 'lib/fruity/util.rb', line 41 def sufficient_magnification(exec, = {}) mag, delay = sufficient_magnification_and_delay(exec, ) mag end |
#sufficient_magnification_and_delay(exec, options = {}) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/fruity/util.rb', line 48 def sufficient_magnification_and_delay(exec, = {}) power = 0 min_desired_delta = clock_precision * MEASUREMENTS_BY_PROPER_TIME / PROPER_TIME_RELATIVE_ERROR # First, make a gross approximation with a single sample and no baseline min_approx_delay = min_desired_delta / (1 << APPROX_POWER) while (delay = real_time(exec, .merge(:magnify => 1 << power))) < min_approx_delay power += [Math.log(min_approx_delay.div(delay + clock_precision), 2), 1].max.floor end # Then take a couple of samples, along with a baseline power += 1 unless delay > 2 * min_approx_delay group = Group.new(exec, Baseline[exec], .merge(:baseline => :none, :samples => 5, :filter => [0, 0.25], :magnify => 1 << power)) stats = group.run.stats if stats[0][:mean] / stats[1][:mean] < 2 # Quite close to baseline, which means we need to be more discriminant power += APPROX_POWER stats = group.run(:samples => 40, :magnify => 1 << power).stats raise "Given callable can not be reasonably distinguished from an empty block" if stats[0][:mean] / stats[1][:mean] < BASELINE_THRESHOLD end delta = stats[0][:mean] - stats[1][:mean] addl_power = [Math.log(min_desired_delta.div(delta), 2), 0].max.floor [ 1 << (power + addl_power), stats[0][:mean] * (1 << addl_power), ] end |