NAME
Bencher::Scenario::Z::Overhead - Measure startup overhead of Z
VERSION
This document describes version 0.004 of Bencher::Scenario::Z::Overhead (from Perl distribution Bencher-Scenarios-Z), released on 2020-10-08.
SYNOPSIS
To run benchmark with default option:
% bencher -m Z::Overhead
For more options (dump scenario, list/include/exclude/add participants, list/include/exclude/add datasets, etc), see bencher or run bencher --help
.
DESCRIPTION
Packaging a benchmark script as a Bencher scenario makes it convenient to include/exclude/add participants/datasets (either via CLI or Perl code), send the result to a central repository, among others . See Bencher and bencher (CLI) for more details.
BENCHMARK PARTICIPANTS
use Z; (perl_code)
Code template:
use Z;
use Z -modern; (perl_code)
Code template:
use Z -modern;
use Z -compat; (perl_code)
Code template:
use Z -compat;
use Z -detect; (perl_code)
Code template:
use Z -detect;
use Type::Tiny; (perl_code)
Code template:
use Type::Tiny;
use Types::Standard; (perl_code)
Code template:
use Types::Standard;
use Zydeco; (perl_code)
Code template:
use Zydeco;
use Zydeco::Lite; (perl_code)
Code template:
use Zydeco::Lite;
use MooX::Press; (perl_code)
Code template:
use MooX::Press;
use Moo; (perl_code)
Code template:
use Moo;
use Moose; (perl_code)
Code template:
use Moose;
SAMPLE BENCHMARK RESULTS
Run on: perl: v5.30.0, CPU: Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz (2 cores), OS: GNU/Linux Ubuntu version 19.10, OS kernel: Linux version 5.3.0-64-generic.
Benchmark with default options (bencher -m Z::Overhead
):
#table1#
+----------------------+-----------+--------------------+-----------------------+-----------------------+-----------+---------+
| participant | time (ms) | code_overhead_time | pct_faster_vs_slowest | pct_slower_vs_fastest | errors | samples |
+----------------------+-----------+--------------------+-----------------------+-----------------------+-----------+---------+
| use Zydeco; | 164 | 157.6 | 0.00% | 2468.18% | 0.00014 | 20 |
| use Moose; | 140 | 133.6 | 14.87% | 2135.66% | 0.00098 | 21 |
| use Z; | 120 | 113.6 | 35.18% | 1799.79% | 0.00016 | 20 |
| use Z -detect; | 120 | 113.6 | 35.25% | 1798.89% | 0.00021 | 20 |
| use Z -modern; | 120 | 113.6 | 35.82% | 1790.85% | 0.00013 | 20 |
| use Z -compat; | 120 | 113.6 | 36.83% | 1776.93% | 0.00015 | 20 |
| use MooX::Press; | 91 | 84.6 | 80.91% | 1319.55% | 0.00011 | 20 |
| use Zydeco::Lite; | 75 | 68.6 | 118.06% | 1077.75% | 0.00013 | 20 |
| use Types::Standard; | 47 | 40.6 | 252.29% | 628.99% | 0.00025 | 23 |
| use Type::Tiny; | 19 | 12.6 | 785.24% | 190.11% | 7.7e-05 | 20 |
| use Moo; | 18 | 11.6 | 804.45% | 183.95% | 4.4e-05 | 20 |
| perl -e1 (baseline) | 6.4 | 0 | 2468.18% | 0.00% | 9.6e-06 | 20 |
+----------------------+-----------+--------------------+-----------------------+-----------------------+-----------+---------+
To display as an interactive HTML table on a browser, you can add option --format html+datatables
.
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Bencher-Scenarios-Z.
SOURCE
Source repository is at https://github.com/perlancar/perl-Bencher-Scenarios-Z.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Bencher-Scenarios-Z
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2020 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.