Skip to content

Commit efea3ec

Browse files
Update docstring
1 parent 56ab6e0 commit efea3ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vfindminmax.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ vfindminmax(f, op, init, A, dims::Int) = vfindminmax(f, op, init, A, (dims,))
3131
3232
Return the value and the index of the argument which maximizes `f` over the
3333
dimensions `dims`, which may be `::Int`, `::NTuple{M, Int} where {M}` or `::Colon`.
34-
Expands upon the functionality provided in Julia Base.
34+
Expands upon the functionality provided in Julia (v1.8) Base.
3535
3636
# Additional Notes
3737
Due to the current limitations of LoopVectorization, searches over the first dimension
3838
of an array are not well-supported. A workaround is possible by reshaping `A` but
3939
the resultant performance is often only on par with `findmax`. As a temporary convenience,
40-
`findmax1` is provided for explicit uses of the re-shaping strategy, though the user
40+
`vfindmax1` is provided for explicit uses of the re-shaping strategy, though the user
4141
is cautioned as to the performance problems.
4242
4343
# Warning
@@ -50,13 +50,13 @@ vfindmax(f::F, A, dims) where {F<:Function} = vfindminmax(f, >, typemin, A, dims
5050
5151
Return the value and the index of the argument which minimizes `f` over the
5252
dimensions `dims`, which may be `::Int`, `::NTuple{M, Int} where {M}` or `::Colon`.
53-
Expands upon the functionality provided in Julia Base.
53+
Expands upon the functionality provided in Julia (v1.8) Base.
5454
5555
# Additional Notes
5656
Due to the current limitations of LoopVectorization, searches over the first dimension
5757
of an array are not well-supported. A workaround is possible by reshaping `A` but
5858
the resultant performance is often only on par with `findmin`. As a temporary convenience,
59-
`findmin1` is provided for explicit uses of the re-shaping strategy, though the user
59+
`vfindmin1` is provided for explicit uses of the re-shaping strategy, though the user
6060
is cautioned as to the performance problems.
6161
6262
# Warning

0 commit comments

Comments
 (0)