Skip to content

Commit

Permalink
add experimental warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnychen94 authored Aug 20, 2021
1 parent d67f771 commit 91f50af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion stdlib/LinearAlgebra/src/blas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,14 @@ julia> BLAS.get_num_threads()
8
```
!!! warning
!!! warning "Thread unsafe"
This function is not thread safe. If there are multiple
threads calling BLAS routines, then the threads they are
using will also be changed until this function finishes.
!!! warning "Experimental"
This function is experimental. It might be rewritten or removed in future releases.
See also [`set_num_threads`](@ref BLAS.set_num_threads) to permanently change
number of BLAS threads.
"""
Expand Down

0 comments on commit 91f50af

Please sign in to comment.