Skip to content
Snippets Groups Projects
Commit c2c9b860 authored by Martin Schroschk's avatar Martin Schroschk
Browse files

Refine content and improve wording

parent 44e870d4
No related branches found
No related tags found
2 merge requests!1133Automated merge from preview to main,!1118Remove beegfs from documentation
...@@ -69,9 +69,9 @@ marie@login.alpha$ module spider <module_name> ...@@ -69,9 +69,9 @@ marie@login.alpha$ module spider <module_name>
[...] [...]
``` ```
Not all modules can be loaded directly. Most modules are build with a certain compiler or toolchain Not all modules can be loaded directly. Most modules are build with a certain compiler or
that need to be loaded beforehand. toolchain that need to be loaded beforehand. Luckely, the module system can tell us, what we
Luckely, the module system can tell us, what we need to do for a specific module or software version need to do for a specific module or software version
```console ```console
marie@login.alpha$ module spider PyTorch/1.12.1-CUDA-11.7.0 marie@login.alpha$ module spider PyTorch/1.12.1-CUDA-11.7.0
...@@ -97,6 +97,8 @@ marie@login.alpha$ module spider <module_name> ...@@ -97,6 +97,8 @@ marie@login.alpha$ module spider <module_name>
Module GCC/11.3.0, OpenMPI/4.1.4, PyTorch/1.12.1-CUDA-11.7.0 and 64 dependencies loaded. Module GCC/11.3.0, OpenMPI/4.1.4, PyTorch/1.12.1-CUDA-11.7.0 and 64 dependencies loaded.
``` ```
Now, you can verify with the following command that the pytorch module is available
```console ```console
marie@login.alpha$ python -c "import torch; print(torch.__version__); print(torch.cuda.is_available())" marie@login.alpha$ python -c "import torch; print(torch.__version__); print(torch.cuda.is_available())"
1.12.1 1.12.1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment