ML | NVIDIA Modulus
NVIDIA Modulus
Modulus is an open source deep-learning framework for building, training, and fine-tuning deep learning models using state-of-the-art Physics-ML methods.
Whether you are exploring the use of Neural operators like Fourier Neural Operators or interested in Physics informed Neural Networks or a hybrid approach in between, Modulus provides you with the optimized stack that will enable you to train your models at real world scale.
Modulus code is open source and packaged in a modular fashion into two repos - Modulus Core and Modulus Sym.
- Modulus Core provides a pytorch like experience for those proficient with python for AI. It includes all the core algorithms, network architectures and utilities to cover the broad spectrum of physics-constrained and data-driven workflows to suit the diversity of use cases in the science and engineering disciplines.
- Modulus Symbolic (Modulus Sym) provides pythonic APIs, algorithms and utilities to be used with Modulus core, to explicitly physics inform the model training. This includes symbolic APIs for PDEs, domain sampling and PDE-based residuals. It also provides higher level abstraction to compose a training loop from specification of the geometry, PDEs and constraints like boundary conditions using simple symbolic APIs.
We also package the entire Modulus source in a single container image to simplify the ease of use and is freely available on NGC. The container does not include the reference applications due to their size and we recommend you to download the examples directly from Github source.
Modulus with Docker Image - Singularity
Once you have installed Singularity
, to build and run Modulus Docker image with Singularity
:
1 |
|
- https://github.com/NVIDIA/modulus/releases
- tag
- https://catalog.ngc.nvidia.com/orgs/nvidia/teams/modulus/containers/modulus/tags
- up to 24.12 (2025-02-21)
- consider
singularity build Modulus.sif docker://nvcr.io/nvidia/modulus/modulus:23.08
- 10/04/2023 2:35 AM, 11.24 GB, 1 Architecture
9.5G Feb 21 17:19 Modulus.sif
But,
1 |
|
- Running a Singularity Container Image on Pleiades | NASA
WARNING: By using --writable, Singularity can't create /homeX destination ......
- Note: If you encounter the following warning message,
cd
toyour_image_sandbox
and use themkdir
command to createhomeX
before you retry the commands above. (The X inhomeX
represents the actual value (X=1-7) of your $HOME directory on Pleiades.)
Can Modulus run on CPU?
- Modulus is built on top of PyTorch, which supports both CPU and GPU execution. By default, Modulus will attempt to use a GPU if available, but it can fall back to CPU execution if no GPU is detected or if explicitly configured.
- Running on a CPU is feasible for smaller models or prototyping, but large-scale training or complex simulations may be impractical due to performance constraints.
By default, the Modulus container is optimized for GPU use and assumes CUDA availability. To run it on CPU:
- Avoid passing GPU resources to Singularity (e.g., no
--nv
flag). - Launch the container interactively or with a script.
1 |
|
and, Importantly, add on conf/config.yaml
1 |
|
like, on three_fin_2d/heat_sink
case,
- $ cat /home/wpsze/ML/NVIDIA-Modulus/modulus-sym/examples/three_fin_2d/conf/config.yaml
1 |
|
Bug
root filesystem extraction failed: failed to copy content in staging file: write /tmp/rootfs
- root filesystem extraction failed: command error: while getting library dependencies: exit status 127
- Temporary Folders
- The location for temporary directories defaults to
/tmp
. Singularity will also respect the environment variableTMPDIR
, and both of these locations can be overridden by setting the environment variableSINGULARITY_TMPDIR
. - The temporary directory used during a build must be on a filesystem that has enough space to hold the entire container image, uncompressed, including any temporary files that are created and later removed during the build.
- You may need to set
SINGULARITY_TMPDIR
when building a large container on a system which has a small/tmp
filesystem. $ ls -a /tmp
- cleanup:
rm -r rootfs*
- The location for temporary directories defaults to
- try to add
export SINGULARITY_TMPDIR="/home/wpsze/ML/NVIDIA-Modulus/singularity_tmp"
-B $SINGULARITY_TMPDIR:/tmp
Running Examples
1 |
|
Modulus Examples
Clone the Modulus repository in your working directory using:
1 |
|
To verify the examples run correctly, run these commands:
1 |
|
If you see the outputs/
directory created after the execution of the command (~5 min), the installation is successful.
Modulus Sym examples
- The modulus-sym repository has Git LFS enabled. You will need to have Git LFS installed for the clone to work correctly.
Clone the Modulus Sym repository in your working directory using:
1 |
|
To verify the examples run correctly, run these commands:
1 |
|
If you see the outputs/
directory created after the execution of the command (~5 min), the installation is successful.
Examples
- Scalar Transport: 2D Advection Diffusion
examples/three_fin_2d/heat_sink.py
- Heat Transfer with High Thermal Conductivity | 2d_heat_transfer
examples/limerock/limerock_hFTB
- Parameterized 3D Heat Sink
Post Processing in Modulus
- Post Processing in Modulus
- var_to_polyvtk(save_var, "./test_file")
- grid_to_vtk(save_var, "./test_file", batch_index=1)
- Simple Training and Inference recipe
Load model
1 |
|