Fork me on GitHub

src/arraymancer/tensor/fallback/naive_l2_gemv

Search:
Group by:
  Source Edit

Procs

proc naive_gemv_fallback[T: SomeInteger](alpha: T; A: Tensor[T]; x: Tensor[T];
    beta: T; y: var Tensor[T])
y <- alpha * A * x + beta * y   Source Edit
Arraymancer Technical reference Tutorial Spellbook (How-To's) Under the hood