Skip to content

Serial

[source]

Serial#

The Serial backend executes tasks sequentially inside of a single process. The advantage of the Serial backend is that it has zero overhead, thus it may be faster than a parallel backend for small datasets.

Note

The Serial backend is the default for most objects that are capable of parallel processing.

Parameters#

This backend does not have any additional parameters.

Example#

use Rubix\ML\Backends\Serial;

$backend = new Serial();

Additional Methods#

This backend does not have any additional methods.


Last update: 2021-01-25