Skip to content

Commit 05772bf

Browse files
authored
Avoid generic matmul fallback (#378)
1 parent d04b475 commit 05772bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tensors/indexmanipulations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ function _add_transform_multi!(
706706

707707
# Resummation into a second buffer using BLAS
708708
buffer_dst = StridedView(buffer1, (blocksize, rows), (1, blocksize), 0)
709-
mul!(buffer_dst, buffer_src, basistransform, α, Zero())
709+
mul!(buffer_dst, buffer_src, StridedView(basistransform), α, Zero())
710710

711711
# Filling up the output
712712
for (i, struct_dst) in enumerate(structs_dst)

0 commit comments

Comments
 (0)