Skip to content

Commit 627374c

Browse files
authored
fix typos in the doc for batched_mul! (#590)
1 parent 381a41f commit 627374c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/batched/batchedmul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ In-place batched matrix multiplication, equivalent to
203203
If `size(B,3) == 1` then every batch uses `B[:,:,1]` instead.
204204
205205
This will call `batched_gemm!` whenever possible. For real arrays this means that,
206-
for `X ∈ [A,B,C]`, either `strides(X,1)==1` or `strides(X,2)==1`, the latter may
206+
for `X ∈ [A,B,C]`, either `stride(X,1)==1` or `stride(X,2)==1`, the latter may
207207
be caused by `batched_transpose` or by for instance `PermutedDimsArray(::Array, (3,1,2))`.
208208
Unlike `batched_mul` this will never make a copy.
209209

0 commit comments

Comments
 (0)