Trait candle_core::cpu_backend::Map1Any
source · pub trait Map1Any {
// Required method
fn f<T: WithDType, W: Fn(Vec<T>) -> CpuStorage>(
&self,
vs: &[T],
layout: &Layout,
wrap: W
) -> Result<CpuStorage>;
// Provided method
fn map(&self, vs: &CpuStorage, layout: &Layout) -> Result<CpuStorage> { ... }
}