ActiveBackend

Type Alias ActiveBackend 

Source
pub type ActiveBackend = FaerBackend;
Expand description

The active GEMM backend, selected by Cargo features.

  • faer (without blas/blas-inject) -> FaerBackend
  • blas or blas-inject (without faer) -> [BlasBackend]
  • no backend feature -> NaiveBackend
  • invalid combos -> NaiveBackend (placeholder; compile_error! fires first)

Aliased Typeยง

pub struct ActiveBackend;