Skip to content

Commit a645c66

Browse files
authored
Merge pull request #105 from JuliaSparse/jf/cleanup-readme
Remove linux specific parts on panua pardiso from README
2 parents e646342 + 6d656d0 commit a645c66

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,6 @@ Note: In the past, weird errors and problems with MKL Pardiso had been observed
4747
In that case, if you want to use MKL Pardiso it is better to just disable PanuaPardiso by not setting
4848
the environment variable `JULIA_PARDISO` (and rerunning `Pkg.build("Pardiso")`).
4949

50-
##### Linux / macOS specific
51-
52-
* Make sure that the version of `gfortran` corresponding to the pardiso library is installed.
53-
* Make sure OpenMP is installed.
54-
* Install a (fast) installation of a BLAS and LAPACK (this should preferably be single threaded since PARDISO handles threading itself), using for example [OpenBLAS](https://github.com/xianyi/OpenBLAS/wiki/Precompiled-installation-packages)
55-
56-
`gfortran` and OpenMP usually come with recent version of gcc/gfortran. On Linux, Panua Pardiso
57-
looks for libraries `libgfortran.so` and `libgomp.so` . They may be named differently on your system.
58-
In this situation you may try to create links to them with names known to
59-
`Pardiso.jl` (bash; pathnames serve as examples here):
60-
````
61-
$ mkdir $HOME/extralibs
62-
$ ln -s /usr/lib64/libgomp.so.1 $HOME/extralibs/libgomp.so
63-
$ ln -s /usr/lib64/libgfortran.so.5 $HOME/extralibs/libgfortran.so
64-
$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/extralibs/
65-
````
6650

6751
## Basic Usage
6852

0 commit comments

Comments
 (0)