Skip to content

Commit

Permalink
Update README with BLAS instructions for 1.7 (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Dec 9, 2021
1 parent f92cda1 commit 66efbc3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,15 @@ To improve performance, Ipopt supports a number of linear solvers. Installing
these can be tricky, however, the following instructions should work. If they
don't, or are not explicit enough, please open an issue.

### Julia 1.7

Depending on your system, you may encounter the error:
`Error: no BLAS/LAPACK library loaded!`. If you do, run:
```julia
import LinearAlgebra, OpenBLAS32_jll
LinearAlgebra.BLAS.lbt_forward(OpenBLAS32_jll.libopenblas_path)
```

### Pardiso (Pardiso Project)

#### Linux
Expand Down

2 comments on commit 66efbc3

@odow
Copy link
Member Author

@odow odow commented on 66efbc3 Dec 9, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/50220

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.1 -m "<description of version>" 66efbc31cb706017eec17bc54a51ec9c44e59791
git push origin v0.9.1

Please sign in to comment.