Skip to content

Commit

Permalink
Fix docs/Multithreading.md
Browse files Browse the repository at this point in the history
Recreate one more omitting fragment (fix previous commit).
  • Loading branch information
jip committed Jan 11, 2025
1 parent 43aae7a commit 4f4ba1e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/Multithreading.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,11 @@ If you want to initialize it as part of the declaration, you may do so via the d
rntm_t rntm = BLIS_RNTM_INITIALIZER;
```
As of this writing, BLIS treats a default-initialized `rntm_t` as a request for single-threaded execution.
If your application needs to know the ways of parallelism that were conveyed via environment variables, then there is an another way by copying the global `rntm_t` object:
If your application needs to know the ways of parallelism that were conveyed via environment variables, then there is an another way by copying the global `rntm_t` object via
```c
void bli_rntm_init_from_global( rntm_t* rntm );
```
Which may be called as:
```c
bli_rntm_init_from_global( &rntm );
```
Expand Down

0 comments on commit 4f4ba1e

Please sign in to comment.