Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 847 Bytes

parallel.md

File metadata and controls

22 lines (16 loc) · 847 Bytes

Parallel

Multiprocessing is the use of two or more processes that execute in parallel. Objects that implement the Parallel interface can take advantage of multicore processors by executing parts or all of the algorithm in parallel. Choose a number of processes equal to the number of CPU cores in order to take advantage of a system's full processing capability.

!!! note Most parallel learners are configured to use the Serial backend by default.

Set a Backend

Parallelizable objects can utilize a parallel processing Backend by passing it to the setBackend() method.

To set the backend processing engine:

public setBackend(Backend $backend) : void
use Rubix\ML\Classifiers\RandomForest;
use Rubix\ML\Backends\Amp;

$estimator = new RandomForest();

$estimator->setBackend(new Amp(16));