Skip to main content

SessionCachedDot

Trait SessionCachedDot 

Source
pub trait SessionCachedDot: TensorDot { }
Expand description

Session-scoped cached dot-general operations.

§Examples

use tenferro_tensor::BackendSession;

fn accepts_session_dot<S: BackendSession + ?Sized>(_session: &mut S) {}

Implementors§

Source§

impl<T> SessionCachedDot for T
where T: TensorBackend + ?Sized,