https://github.com/galmetzer/dipole-normal-prop
Raw File
Tip revision: 72ba66b6a54858ebdb34de44afaefaeabfeee81b authored by Gal Metzer on 21 May 2022, 06:59:19 UTC
Create LICENSE
Tip revision: 72ba66b
install_pytorch_geometric.sh
CUDA=cu101
TORCH=1.6.0

echo "*******************"
echo "Installing for pytorch ${TORCH} and CUDA ${CUDA}"
echo "Edit install_pytorch_geometric.sh for different versions"
echo "*******************"


pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-${TORCH}+${CUDA}.html
pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-${TORCH}+${CUDA}.html
pip install torch-geometric
pip install torch-cluster -f https://pytorch-geometric.com/whl/torch-${TORCH}+${CUDA}.html
pip install torch-spline-conv -f https://pytorch-geometric.com/whl/torch-${TORCH}+${CUDA}.html

back to top