[][src]Struct autograd::Feed

pub struct Feed<'feed, T: Float> { /* fields omitted */ }

Links a placeholder tensor and its value at run-time.

Use Tensor::given to instanciate, and ensure that this is passed to ag::Eval, ag::eval or Tensor::eval.

use ndarray::array;
use autograd as ag;

ag::with(|g| {
    let x = g.placeholder(&[2]);

    // Fills the placeholder with an ArrayView, then eval.
    let value = array![1., 1.];
    let feed: ag::Feed<_> = x.given(value.view());
    x.eval(&[feed]);
});

Auto Trait Implementations

impl<'feed, T> RefUnwindSafe for Feed<'feed, T> where
    T: RefUnwindSafe

impl<'feed, T> Send for Feed<'feed, T>

impl<'feed, T> Sync for Feed<'feed, T>

impl<'feed, T> Unpin for Feed<'feed, T>

impl<'feed, T> UnwindSafe for Feed<'feed, T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,