← Back
Editing: serial.md
<span style="float:right;"><a href="https://github.com/RubixML/ML/blob/master/src/Backends/Serial.php">[source]</a></span> ### 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 ```php use Rubix\ML\Backends\Serial; $backend = new Serial(); ``` ## Additional Methods This backend does not have any additional methods.
Save File
Cancel