Skip to content

Commit

Permalink
Pandas: ParticleContainer_*.to_df() (#220)
Browse files Browse the repository at this point in the history
* Pandas: `ParticleContainer_*.to_df()`

Copy all particles into a `pandas.DataFrame`. Supports local and
MPI-gathered results.

* Update Stubs
  • Loading branch information
ax3l committed Nov 6, 2023
1 parent a47db85 commit 038727f
Show file tree
Hide file tree
Showing 16 changed files with 1,474 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
export CXX=$(which g++-10)
python3 -m pip install -U pip setuptools wheel
python3 -m pip install -U cmake
python3 -m pip install -U pytest mpi4py
python3 -m pip install -U pandas pytest mpi4py
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Debug \
Expand Down Expand Up @@ -174,7 +174,8 @@ jobs:
export CCACHE_MAXSIZE=300M
ccache -z
python3 -m pip install -U pip pytest
python3 -m pip install -U pip
python3 -m pip install -U pandas pytest
python3 -m pip install -v .
python3 -c "import amrex.space1d as amr; print(amr.__version__)"
python3 -c "import amrex.space2d as amr; print(amr.__version__)"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
python-version: '3.x'
- name: Build & Install
run: |
python3 -m pip install -U pip pytest
python3 -m pip install -U pip
python3 -m pip install -U pandas pytest
python3 -m pip install -v .
if(!$?) { Exit $LASTEXITCODE }
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Optional dependencies include:
- [mpi4py](https://mpi4py.readthedocs.io) 2.1+: for multi-node and/or multi-GPU execution
- [CCache](https://ccache.dev): to speed up rebuilds (for CUDA support, needs 3.7.9+ and 4.2+ is recommended)
- further [optional dependencies of AMReX](https://github.com/AMReX-Codes/amrex/)
- [pandas](https://pandas.pydata.org/) 2+: for DataFrame support
- [pytest](https://docs.pytest.org/en/stable/) 6.2+: for running unit tests

Optional CUDA-capable dependencies for tests include:
Expand Down Expand Up @@ -105,6 +106,10 @@ If you wish to run unit tests, then please install `pytest`
python3 -m pip install -U pytest
```

Some of our tests depend on optional third-party modules (e.g., `pandas`, `cupy`, `numba`, and/or `pytorch`).
If these are not installed then their tests will be skipped.


### Configure your compiler

For example, using the Clang compiler:
Expand Down
9 changes: 5 additions & 4 deletions docs/source/install/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ Optional dependencies include:
- further `optional dependencies of AMReX <https://github.com/AMReX-Codes/amrex/>`__
- `Python dependencies <https://www.python.org>`__

- `mpi4py <https://mpi4py.readthedocs.io>`__
- `cupy <https://github.com/cupy/cupy#installation>`__ 11.2+
- `numba <https://numba.readthedocs.io/en/stable/user/installing.html>`__ 0.56+
- `torch <https://pytorch.org/get-started/locally/>`__ 1.12+
- `mpi4py 2.1+ <https://mpi4py.readthedocs.io>`__: for multi-node and/or multi-GPU execution
- `cupy 11.2+ <https://github.com/cupy/cupy#installation>`__
- `numba 0.56+ <https://numba.readthedocs.io/en/stable/user/installing.html>`__
- `pandas 2+ <https://pandas.pydata.org>`__: for DataFrame support
- `torch 1.12+ <https://pytorch.org/get-started/locally/>`__

For all other systems, we recommend to use a **package dependency manager**:
Pick *one* of the installation methods below to install all dependencies for pyAMReX development in a consistent manner.
Expand Down
10 changes: 10 additions & 0 deletions src/Particle/ParticleContainer.H
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ void make_Base_Iterators (py::module &m, std::string allocstr)
py::return_value_policy::reference_internal)

.def_property_readonly_static("is_soa_particle", [](const py::object&){ return ParticleType::is_soa_particle;})
.def_property_readonly("size", &iterator_base::numParticles,
"the number of particles on this tile")
.def_property_readonly("num_particles", &iterator_base::numParticles)
.def_property_readonly("num_real_particles", &iterator_base::numRealParticles)
.def_property_readonly("num_neighbor_particles", &iterator_base::numNeighborParticles)
Expand Down Expand Up @@ -382,6 +384,14 @@ void make_ParticleContainer_and_Iterators (py::module &m, std::string allocstr)
make_Iterators< false, iterator, Allocator >(m, allocstr);
using const_iterator = amrex::ParConstIter_impl<ParticleType, T_NArrayReal, T_NArrayInt, Allocator>;
make_Iterators< true, const_iterator, Allocator >(m, allocstr);

// simpler particle iterator loops: return types of this particle box
py_pc
.def_property_readonly_static("iterator", [](py::object /* pc */){ return py::type::of<iterator>(); },
"amrex iterator for particle boxes")
.def_property_readonly_static("const_iterator", [](py::object /* pc */){ return py::type::of<const_iterator>(); },
"amrex constant iterator for particle boxes (read-only)")
;
}

/** Create ParticleContainers and Iterators
Expand Down
104 changes: 104 additions & 0 deletions src/amrex/ParticleContainer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
"""
This file is part of pyAMReX
Copyright 2023 AMReX community
Authors: Axel Huebl
License: BSD-3-Clause-LBNL
"""


def pc_to_df(self, local=True, comm=None, root_rank=0):
"""
Copy all particles into a pandas.DataFrame
Parameters
----------
self : amrex.ParticleContainer_*
A ParticleContainer class in pyAMReX
local : bool
MPI-local particles
comm : MPI Communicator
if local is False, this defaults to mpi4py.MPI.COMM_WORLD
root_rank : MPI root rank to gather to
if local is False, this defaults to 0
Returns
-------
A concatenated pandas.DataFrame with particles from all levels.
Returns None if no particles were found.
If local=False, then all ranks but the root_rank will return None.
"""
import pandas as pd

# create a DataFrame per particle box and append it to the list of
# local DataFrame(s)
dfs_local = []
for lvl in range(self.finest_level + 1):
for pti in self.const_iterator(self, level=lvl):
if pti.size == 0:
continue

if self.is_soa_particle:
next_df = pd.DataFrame()
else:
# AoS
aos_np = pti.aos().to_numpy(copy=True)
next_df = pd.DataFrame(aos_np)
next_df.set_index("cpuid")
next_df.index.name = "cpuid"

# SoA
soa_view = pti.soa().to_numpy(copy=True)
soa_np_real = soa_view.real
soa_np_int = soa_view.int

for idx, array in enumerate(soa_np_real):
next_df[f"SoA_real_{idx}"] = array
for idx, array in enumerate(soa_np_int):
next_df[f"SoA_int_{idx}"] = array

dfs_local.append(next_df)

# MPI Gather to root rank if requested
if local:
if len(dfs_local) == 0:
df = None
else:
df = pd.concat(dfs_local)
else:
from mpi4py import MPI

if comm is None:
comm = MPI.COMM_WORLD
rank = comm.Get_rank()

# a list for each rank's list of DataFrame(s)
df_list_list = comm.gather(dfs_local, root=root_rank)

if rank == root_rank:
flattened_list = [df for sublist in df_list_list for df in sublist]

if len(flattened_list) == 0:
df = pd.DataFrame()
else:
df = pd.concat(flattened_list, ignore_index=True)
else:
df = None

return df


def register_ParticleContainer_extension(amr):
"""ParticleContainer helper methods"""
import inspect
import sys

# register member functions for every ParticleContainer_* type
for _, ParticleContainer_type in inspect.getmembers(
sys.modules[amr.__name__],
lambda member: inspect.isclass(member)
and member.__module__ == amr.__name__
and member.__name__.startswith("ParticleContainer_"),
):
ParticleContainer_type.to_df = pc_to_df
2 changes: 2 additions & 0 deletions src/amrex/space1d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,12 @@ def Print(*args, **kwargs):
from ..ArrayOfStructs import register_AoS_extension
from ..MultiFab import register_MultiFab_extension
from ..PODVector import register_PODVector_extension
from ..ParticleContainer import register_ParticleContainer_extension
from ..StructOfArrays import register_SoA_extension

register_Array4_extension(amrex_1d_pybind)
register_MultiFab_extension(amrex_1d_pybind)
register_PODVector_extension(amrex_1d_pybind)
register_SoA_extension(amrex_1d_pybind)
register_AoS_extension(amrex_1d_pybind)
register_ParticleContainer_extension(amrex_1d_pybind)
2 changes: 2 additions & 0 deletions src/amrex/space1d/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ from amrex.Array4 import register_Array4_extension
from amrex.ArrayOfStructs import register_AoS_extension
from amrex.MultiFab import register_MultiFab_extension
from amrex.PODVector import register_PODVector_extension
from amrex.ParticleContainer import register_ParticleContainer_extension
from amrex.StructOfArrays import register_SoA_extension
from amrex.space1d.amrex_1d_pybind import (
AlmostEqual,
Expand Down Expand Up @@ -472,6 +473,7 @@ __all__ = [
"register_Array4_extension",
"register_MultiFab_extension",
"register_PODVector_extension",
"register_ParticleContainer_extension",
"register_SoA_extension",
"size",
"ubound",
Expand Down
Loading

0 comments on commit 038727f

Please sign in to comment.