Installation#

Clone PySEQM#

This is the recommended way to install PySEQM

git clone https://github.com/lanl/PYSEQM.git

Note

You must install PyTorch and Numpy first before installing PySEQM

Test the Installation#

To verify the installation, run:

python -c "import torch; print('PyTorch version:', torch.__version__)"
python -c "import torch; print('CUDA available:', torch.cuda.is_available())"
python -c "import torch; print('GPU name:', torch.cuda.get_device_name(0) if torch.cuda.is_available() else 'None')"