GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Dumbbench::Instance::PerlSub(3) User Contributed Perl Documentation Dumbbench::Instance::PerlSub(3)

Dumbbench::Instance::PerlSub - Benchmarks a Perl code reference

  use Dumbbench;

  my $bench = Dumbbench->new(
    target_rel_precision => 0.005, # seek ~0.5%
    initial_runs         => 20,    # the higher the more reliable
  );
  $bench->add_instances(
    Dumbbench::Instance::PerlSub->new(name => 'mauve', code => sub {...}),
    # ... more things to benchmark ...
  );
  $bench->run();
  # ...

This class inherits from Dumbbench::Instance and implements benchmarking of Perl code references.

Constructor that takes named arguments.

In addition to the properties of the base class, the "Dumbbench::Instance::PerlSub" constructor requires a "code" parameter. The "code" needs to be subroutine reference.

Optionally, you can provide a "dry_run_code" option. It has the same structure and purpose as the "code" option, but it is used for the dry-runs. By default, an empty sub is used for this, so it's unlikely you will need the dry-run unless you want to strip out some particular overhead.

Returns the code string that was set during construction.

Returns the dry-run code string that was set during construction.

Dumbbench, Dumbbench::Instance, Dumbbench::Instance::PerlEval, Dumbbench::Instance::Cmd, Dumbbench::Result

Benchmark

Number::WithError does the Gaussian error propagation.

SOOT can optionally generate histograms from the timing distributions.

<http://en.wikipedia.org/wiki/Median_absolute_deviation>

Steffen Mueller, <smueller@cpan.org>

Copyright (C) 2010 by Steffen Mueller

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available.

2021-02-15 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.