Skip to content

Commit 63b75d8

Browse files
authored
fix metis (#255)
1 parent bd7273e commit 63b75d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/metis-Windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
METIS=metis-5.1.0
44

5-
curl -k -L "http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/${METIS}.tar.gz" --output "${METIS}.tar.gz"
5+
curl -k -L "https://web.archive.org/web/20170712055800/http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/${METIS}.tar.gz" --output "${METIS}.tar.gz"
66
tar -xvzf "${METIS}.tar.gz"
77
rm -f "${METIS}.tar.gz"
88
cd "${METIS}" || exit

.github/workflows/metis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
METIS=metis-5.1.0
44

5-
wget -nv "http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/${METIS}.tar.gz"
5+
wget -nv "https://web.archive.org/web/20211119110155/http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/${METIS}.tar.gz"
66
tar -xvzf "${METIS}.tar.gz"
77
rm -f "${METIS}.tar.gz"
88
cd "${METIS}" || exit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $ echo $CPATH
9494
>>> /usr/local/cuda/include:...
9595
```
9696

97-
If you want to additionally build `torch-sparse` with METIS support, *e.g.* for partioning, please download and install the [METIS library](http://glaros.dtc.umn.edu/gkhome/metis/metis/download) by following the instructions in the `Install.txt` file.
97+
If you want to additionally build `torch-sparse` with METIS support, *e.g.* for partioning, please download and install the [METIS library](https://web.archive.org/web/20211119110155/http://glaros.dtc.umn.edu/gkhome/metis/metis/download) by following the instructions in the `Install.txt` file.
9898
Note that METIS needs to be installed with 64 bit `IDXTYPEWIDTH` by changing `include/metis.h`.
9999
Afterwards, set the environment variable `WITH_METIS=1`.
100100

0 commit comments

Comments
 (0)