Skip to content

Commit

Permalink
Merge pull request #158 from JuliaLinearAlgebra/vs/distributed
Browse files Browse the repository at this point in the history
Add note on Distributed
  • Loading branch information
ViralBShah authored Feb 23, 2024
2 parents 7fd298f + cc1f4a6 commit 2b65319
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ Libraries:

We use ILP64 by default on 64-bit systems, and LP64 on 32-bit systems.

## NOTE: Using MKL with Distributed

If you are using `Distributed` for parallelism on a single node, set MKL to single threaded mode to [avoid over subcribing](https://github.com/JuliaLinearAlgebra/MKL.jl/issues/122) the CPUs.

```julia
BLAS.set_num_threads(1)
```

## NOTE: MKL on Intel Macs
MKL for Intel Macs is discontinued as of MKL 2024. Thus, in order to use MKL on Intel Macs, you will need to install the right version of `MKL_jll` and possibly also pin it.

Expand Down

0 comments on commit 2b65319

Please sign in to comment.