Skip to content

Commit 94e908f

Browse files
authored
remove unused private argument from BLAS.get_num_threads (#38237)
1 parent 238874c commit 94e908f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/src/blas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ On exotic variants of `BLAS` this function can fail, which is indicated by retur
182182
!!! compat "Julia 1.6"
183183
`get_num_threads` requires at least Julia 1.6.
184184
"""
185-
get_num_threads(;_blas=guess_vendor())::Union{Int, Nothing} = _get_num_threads()
185+
get_num_threads()::Union{Int, Nothing} = _get_num_threads()
186186

187187
function _get_num_threads(; _blas = guess_vendor())::Union{Int, Nothing}
188188
if _blas === :openblas || _blas === :openblas64

0 commit comments

Comments
 (0)