hoa/bench

This package is abandoned and no longer maintained. No replacement package was suggested.

The Hoa\Bench library.

Maintainers

πŸ‘ Hoa

Package info

github.com/hoaproject/Bench

Homepage

Forum

Documentation

pkg:composer/hoa/bench

Statistics

Installs: 356 101

Dependents: 1

Suggesters: 2

Stars: 56

Open Issues: 3

3.17.01.11 2017-01-11 08:05 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause b3340f448050c870edcde22187ff0716dee12cd5

  • Ivan Enderlin <ivan.enderlin.woop@hoa-project.net>
  • Hoa community

performancelibrarytimetracebenchdtraceanalyze


README

πŸ‘ Hoa

πŸ‘ Build status
πŸ‘ Code coverage
πŸ‘ Packagist
πŸ‘ License

Hoa is a modular, extensible and structured set of PHP libraries.
Moreover, Hoa aims at being a bridge between industrial and research worlds.

Hoa\Bench

πŸ‘ Help on IRC
πŸ‘ Help on Gitter
πŸ‘ Documentation
πŸ‘ Board

This library allows to analyze performance of algorithms or programs by placing some β€œmarks” in the code. Furthermore, this library provides some DTrace programs.

Learn more.

Installation

With Composer, to include this library into your dependencies, you need to require hoa/bench:

$ composer require hoa/bench '~3.0'

For more installation procedures, please read the Source page.

Testing

Before running the test suites, the development dependencies must be installed:

$ composer install

Then, to run all the test suites:

$ vendor/bin/hoa test:run

For more information, please read the contributor guide.

Quick usage

We propose a quick overview of two usages: The library itself and one DTrace program.

Benchmark

All we have to do is to place different marks in the code. A mark can be started, paused, stopped and reset. The class Hoa\Bench\Bench proposes a quick statistic graph that could be helpful:

$bench = new Hoa\Bench\Bench();

// Start two marks: β€œone” and β€œtwo”.
$bench->one->start();
$bench->two->start();

usleep(50000);

// Stop the mark β€œtwo” and start the mark β€œthree”.
$bench->two->stop();
$bench->three->start();

usleep(25000);

// Stop all marks.
$bench->three->stop();
$bench->one->stop();

// Print statistics.
echo $bench;

/**
 * Will output:
 * __global__ |||||||||||||||||||||||||||||||||||||||||||||||||||| 77ms, 100.0%
 * one |||||||||||||||||||||||||||||||||||||||||||||||||||| 77ms, 99.8%
 * two |||||||||||||||||||||||||||||||||| 51ms, 65.9%
 * three |||||||||||||||||| 26ms, 33.9%
 */

More operations are available, such as iterating over all marks, deleting a mark, filters marks etc.

DTrace

An interesting DTrace program is hoa://Library/Bench/Dtrace/Execution.d that shows the call trace, errors and exceptions during an execution. For example, if we consider the Dtrace.php file that contains the following code:

<?php

function f() { g(); h(); }
function g() { h(); }
function h() { }

f();

Then, we can run DTrace like this:

$ exed=`hoa protocol:resolve hoa://Library/Bench/Dtrace/Execution.d`
$ sudo $exed -c "php Dtrace.php"
Request start
 2ms ➜ f() …/Dtrace.php:007
 37ms ➜ g() …/Dtrace.php:003
 26ms ➜ h() …/Dtrace.php:004
 28ms ← h()
 37ms ← g()
 44ms ➜ h() …/Dtrace.php:003
 25ms ← h()
 30ms ← f()
Request end

Another program shows statistics about an execution: Each function that has been called, how many times, how long the execution has taken etc.

Documentation

The hack book of Hoa\Bench contains detailed information about how to use this library and how it works.

To generate the documentation locally, execute the following commands:

$ composer require --dev hoa/devtools
$ vendor/bin/hoa devtools:documentation --open

More documentation can be found on the project's website: hoa-project.net.

Getting help

There are mainly two ways to get help:

Contribution

Do you want to contribute? Thanks! A detailed contributor guide explains everything you need to know.

License

Hoa is under the New BSD License (BSD-3-Clause). Please, see LICENSE for details.

Related projects

The following projects are using this library: