The impi-rt package provides Python bindings for Intel MPI Library, enabling high-performance message passing for parallel computing. Currently at version 2021.18.0, it follows Intel's release cadence tied to Intel MPI releases. It is a runtime-only package intended for executing MPI applications; the development package (impi-devel) is separate.
pip install impi-rtNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic MPI send/receive using mpi4py with Intel MPI runtime. Run with 'mpirun -np 2 python script.py'.
Install impi-devel (or intel-oneapi-mpi-devel) for development headers and compiler wrappers.
Use conda: conda install -c intel intelmpi -c intel mpi4py
Use mpi4py: from mpi4py import MPI; rank = MPI.COMM_WORLD.Get_rank()