From 62e01b6ca9abc06bede88820bacccf109210c7a0 Mon Sep 17 00:00:00 2001 From: Lukas Devos Date: Thu, 5 Mar 2026 09:30:33 -0500 Subject: [PATCH] avoid generic matmul fallback --- src/tensors/indexmanipulations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tensors/indexmanipulations.jl b/src/tensors/indexmanipulations.jl index fe90c1789..49842f858 100644 --- a/src/tensors/indexmanipulations.jl +++ b/src/tensors/indexmanipulations.jl @@ -706,7 +706,7 @@ function _add_transform_multi!( # Resummation into a second buffer using BLAS buffer_dst = StridedView(buffer1, (blocksize, rows), (1, blocksize), 0) - mul!(buffer_dst, buffer_src, basistransform, α, Zero()) + mul!(buffer_dst, buffer_src, StridedView(basistransform), α, Zero()) # Filling up the output for (i, struct_dst) in enumerate(structs_dst)