Skip to content

[source]

Amp#

Amp Parallel is a multiprocessing subsystem that requires no extensions. It uses a non-blocking concurrency framework that implements coroutines using PHP generator functions under the hood.

Note

The optimal number of workers will depend on the system specifications of the computer. Fewer workers than CPU cores may not achieve full processing potential but more workers than cores can cause excess overhead.

Parameters#

# Name Default Type Description
1 workers Auto int The maximum number of workers in the worker pool. If null then tries to autodetect CPU core count.

Example#

use Rubix\ML\Backends\Amp;

$backend = new Amp(16);

Additional Methods#

Return the maximum number of workers in the worker pool:

public workers() : int


Last update: 2021-01-25