class Benchmark::IPS::Report::Entry
def initialize(label, us, iters, ips, ips_sd, cycles)
-
cycles
(Integer
) -- Number of Cycles. -
ips_sd
(Float
) -- Standard deviation of iterations per second. -
ips
(Float
) -- Iterations per second. -
iters
(Integer
) -- Iterations. -
us
(Integer
) -- Measured time in microsecond. -
label
(#to_s
) -- Label of entry.
def initialize(label, us, iters, ips, ips_sd, cycles) @label = label @microseconds = us @iterations = iters @ips = ips @ips_sd = ips_sd @measurement_cycle = cycles @show_total_time = false end