I am attemping to use "gpmetis" function on my "$*.graph.info$ file, however the command didn't exist, so I tried to download "GKlib" and "METIS" via GitHub, and recieved an error when compiling "METIS".
Here are those GitHub repos:
github.com
github.com
Here is how I attempted to install:
(First for GKlib)
"...... METIS/build/libmetis: ../libmetis/libmetis.so -lGKlib -lm /usr/bin/ld: cannot find -lGKlib"
Here are those GitHub repos:
GitHub - KarypisLab/GKlib: A library of various helper routines and frameworks used by many of the lab's software
A library of various helper routines and frameworks used by many of the lab's software - KarypisLab/GKlib
GitHub - KarypisLab/METIS: METIS - Serial Graph Partitioning and Fill-reducing Matrix Ordering
METIS - Serial Graph Partitioning and Fill-reducing Matrix Ordering - KarypisLab/METIS
Here is how I attempted to install:
(First for GKlib)
- git clone GitHub - KarypisLab/GKlib: A library of various helper routines and frameworks used by many of the lab's software
- cd GKlib/
- module load cmake
- make distclean
- make config cc=gcc shared=1 prefix=~/local
- make
- make install
- git clone GitHub - KarypisLab/METIS: METIS - Serial Graph Partitioning and Fill-reducing Matrix Ordering
- cd METIS/
- module load gcc
- module load cmake
- make distclean
- make config cc=gcc shared=1 prefix=~/local gklib_path=~/local
- make
- make install
"...... METIS/build/libmetis: ../libmetis/libmetis.so -lGKlib -lm /usr/bin/ld: cannot find -lGKlib"