Enum sbr::models::Parallelism[][src]

pub enum Parallelism {
    Asynchronous,
    Synchronous,
}

Type of parallelism used to train the model.

Variants

Multiple threads operate in parallel without any locking.

Multiple threads synchronise parameters between minibatches.

Trait Implementations

impl Clone for Parallelism
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Parallelism
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Parallelism
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Parallelism

impl Sync for Parallelism