Trait argmin::core::Gradient

source ·
pub trait Gradient {
    type Param;
    type Gradient;

    // Required method
    fn gradient(&self, param: &Self::Param) -> Result<Self::Gradient, Error>;

    // Provided methods
    fn bulk_gradient<P>(
        &self,
        params: &[P]
    ) -> Result<Vec<Self::Gradient>, Error>
       where P: Borrow<Self::Param> + SyncAlias,
             Self::Gradient: SendAlias,
             Self: SyncAlias { ... }
    fn parallelize(&self) -> bool { ... }
}
Expand description

Defines the computation of the gradient.

§Example

use argmin::core::{Gradient, Error};

struct Rosenbrock {}

impl Gradient for Rosenbrock {
    type Param = Vec<f64>;
    type Gradient = Vec<f64>;

    /// Compute gradient of rosenbrock function
    fn gradient(&self, param: &Self::Param) -> Result<Self::Gradient, Error> {
        Ok(compute_gradient(param))
    }
}

Required Associated Types§

source

type Param

Type of the parameter vector

source

type Gradient

Type of the gradient

Required Methods§

source

fn gradient(&self, param: &Self::Param) -> Result<Self::Gradient, Error>

Compute gradient

Provided Methods§

source

fn bulk_gradient<P>(&self, params: &[P]) -> Result<Vec<Self::Gradient>, Error>
where P: Borrow<Self::Param> + SyncAlias, Self::Gradient: SendAlias, Self: SyncAlias,

Compute gradient in bulk. If the rayon feature is enabled, multiple calls to gradient will be run in parallel using rayon, otherwise they will execute sequentially. If the rayon feature is enabled, parallelization can still be turned off by overwriting parallelize to return false. This can be useful in cases where it is preferable to parallelize only certain parts. Note that even if parallelize is set to false, the parameter vectors and the problem are still required to be Send and Sync. Those bounds are linked to the rayon feature. This method can be overwritten.

source

fn parallelize(&self) -> bool

Indicates whether to parallelize calls to gradient when using bulk_gradient. By default returns true, but can be set manually to false if needed. This allows users to turn off parallelization for certain traits implemented on their problem. Note that parallelization requires the rayon feature to be enabled, otherwise calls to gradient will be executed sequentially independent of how parallelize is set.

Object Safety§

This trait is not object safe.

Implementors§