Repast4Py
Repast for Python (Repast4Py) is the newest member of the Repast Suite of free and open source agent-based modeling and simulation software. It builds on Repast HPC, and provides the ability to build large, distributed agent-based models (ABMs) that span multiple processing cores. Distributed ABMs enable the development of complex systems models that capture the scale and relevant details of many problems of societal importance. Where Repast HPC is implemented in C++ and is more HPC expert focused, Repast4Py is a Python package and is designed to provide an easier on-ramp for researchers from diverse scientific communities to apply large-scale distributed ABM methods. Repast4Py is released under the BSD-3 open source license, and leverages Numba, NumPy, and PyTorch packages, and the Python C API to create a scalable modeling system that can exploit the largest HPC resources and emerging computing architectures. See our papers on Repast4Py for additional information about the design and implementation.[1] [2]
Requirements
Repast4Py can run on Linux, macOS and Windows provided there is a working MPI implementation installed and mpi4py is supported. Repast4Py is developed and tested on Linux. We recommend that Windows users use the Windows Subsystem for Linux (WSL). Installation instructions for WSL can be found here.
Under Linux, MPI can be installed using your OS’s package manager. For example, under Ubuntu 22.04 (and thus WSL), the mpich MPI implementation can be installed with:
$ sudo apt install mpich
Installation instructions for MPI on macOS can be found here.
A typical campus cluster, or HPC resource will have MPI and mpi4py installed. Check the resource’s documentation on available software for more details.
Installation
Repast4Py can be downloaded and installed from PyPI using pip.
Since Repast4Py includes native MPI C++ code that needs to be compiled,
the C compiler CC
environment variable must be set
to the mpicxx
(or mpic++
) compiler wrapper provided by your MPI installation.
Depending on the operating system, the CXX
variable may also need to be set.
env CC=mpicxx CXX=mpicxx pip install repast4py
If you see an error message about a missing python.h header file when
installing Repast4Py under Ubuntu (or other Linuxes), you will need to install
a python dev package using your OS’s package manager. For example, assuming
Python 3.8, sudo apt install python3.8-dev will work for Ubuntu.
|
Documentation
Contact and Support
In addition to filing issues on GitHub, support is also available via
Stack Overflow.
Please use the repast4py
tag to ensure that we are notified of your question.
Software announcements will be made on the
repast-interest mailing list.
Jonathan Ozik is the Repast project lead. Please contact him through the Argonne Staff Directory if you have project-related questions.
Funding
This material is based upon work supported by the U.S. Department of Energy, Office of Science, under contract number DE-AC02-06CH11357. Repast4Py is being used in multiple projects, including the NIH funded projects R01AI136056, U2CDA050098, R01MD014703, R21MH128116, R01AI146917, R01AI158666 and is informed by their requirements and continuing development.