Skip to content

Commit 7ee6919

Browse files
authored
Release: 23.10 (#199)
* Release: 23.10 * Update Stub Files --------- Co-authored-by: ax3l <[email protected]>
1 parent ac28c29 commit 7ee6919

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Preamble ####################################################################
22
#
33
cmake_minimum_required(VERSION 3.20.0)
4-
project(pyAMReX VERSION 23.09)
4+
project(pyAMReX VERSION 23.10)
55

66
include(${pyAMReX_SOURCE_DIR}/cmake/pyAMReXFunctions.cmake)
77

cmake/dependencies/AMReX.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ macro(find_amrex)
7070
elseif(NOT pyAMReX_amrex_internal)
7171
message(STATUS "Searching for pre-installed AMReX ...")
7272
# https://amrex-codes.github.io/amrex/docs_html/BuildingAMReX.html#importing-amrex-into-your-cmake-project
73-
find_package(AMReX 23.09 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
73+
find_package(AMReX 23.10 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
7474
message(STATUS "AMReX: Found version '${AMReX_VERSION}'")
7575
endif()
7676
endmacro()
@@ -85,7 +85,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
8585
set(pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
8686
CACHE STRING
8787
"Repository URI to pull and build AMReX from if(pyAMReX_amrex_internal)")
88-
set(pyAMReX_amrex_branch "23.09"
88+
set(pyAMReX_amrex_branch "23.10"
8989
CACHE STRING
9090
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
9191

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
# built documents.
7272
#
7373
# The short X.Y version.
74-
version = "23.09"
74+
version = "23.10"
7575
# The full version, including alpha/beta/rc tags.
76-
release = "23.09"
76+
release = "23.10"
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def build_extension(self, ext):
211211
setup(
212212
name="amrex",
213213
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
214-
version="23.09",
214+
version="23.10",
215215
packages=["amrex"],
216216
# Python sources:
217217
package_dir={"": "src"},

src/Particle/Particle.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,6 @@ void init_Particle(py::module& m) {
327327
make_Particle< 3, 2 > (m);
328328
make_Particle< 4, 0 > (m); // HiPACE++ 22.07
329329
make_Particle< 5, 0 > (m); // ImpactX 22.07
330-
make_Particle< 8, 2 > (m); // ImpactX 23.09+
330+
make_Particle< 8, 2 > (m); // ImpactX 23.11+
331331
make_Particle< 37, 1> (m); // HiPACE++ 22.07
332332
}

src/Particle/ParticleContainer_ImpactX.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ void init_ParticleContainer_ImpactX(py::module& m) {
1414

1515
// TODO: we might need to move all or most of the defines in here into a
1616
// test/example submodule, so they do not collide with downstream projects
17-
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.09
18-
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.10+
17+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.10
18+
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.11+
1919
}

src/Particle/ParticleContainer_WarpX.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ void init_ParticleContainer_WarpX(py::module& m) {
1313

1414
// TODO: we might need to move all or most of the defines in here into a
1515
// test/example submodule, so they do not collide with downstream projects
16-
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.09 1D-3D
17-
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.09 RZ
16+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.10 1D-3D
17+
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.10 RZ
1818
}

src/Particle/ParticleTile.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,6 @@ void init_ParticleTile(py::module& m) {
189189
make_ParticleTile<ParticleType_1_1, 2, 1> (m);
190190
make_ParticleTile<ParticleType_0_0, 4, 0> (m); // HiPACE++ 22.07
191191
make_ParticleTile<ParticleType_0_0, 5, 0> (m); // ImpactX 22.07
192-
make_ParticleTile<SoAParticleType_8_2, 8, 2> (m); // ImpactX 23.09+
192+
make_ParticleTile<SoAParticleType_8_2, 8, 2> (m); // ImpactX 23.11+
193193
make_ParticleTile<ParticleType_0_0, 37, 1> (m); // HiPACE++ 22.07
194194
}

src/Particle/StructOfArrays.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ void make_StructOfArrays(py::module &m)
8787

8888
void init_StructOfArrays(py::module& m) {
8989
make_StructOfArrays< 2, 1>(m);
90-
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.06
91-
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.09
92-
make_StructOfArrays< 8, 2>(m); // ImpactX 23.10+
93-
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.06
90+
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.10
91+
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.10
92+
make_StructOfArrays< 8, 2>(m); // ImpactX 23.11+
93+
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.10
9494
}

src/amrex/space1d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,4 +492,4 @@ def d_decl(x, y, z):
492492

493493
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
494494
__license__: str = "BSD-3-Clause-LBNL"
495-
__version__: str = "23.09"
495+
__version__: str = "23.10"

src/amrex/space1d/amrex_1d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -3567,7 +3567,7 @@ class BoxArray:
35673567
def size(self) -> int: ...
35683568

35693569
class Config:
3570-
amrex_version: typing.ClassVar[str] = "23.09"
3570+
amrex_version: typing.ClassVar[str] = "23.10"
35713571
gpu_backend = None
35723572
have_gpu: typing.ClassVar[bool] = False
35733573
have_mpi: typing.ClassVar[bool] = True
@@ -10845,4 +10845,4 @@ def write_single_level_plotfile(
1084510845

1084610846
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1084710847
__license__: str = "BSD-3-Clause-LBNL"
10848-
__version__: str = "23.09"
10848+
__version__: str = "23.10"

src/amrex/space2d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,4 +492,4 @@ def d_decl(x, y, z):
492492

493493
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
494494
__license__: str = "BSD-3-Clause-LBNL"
495-
__version__: str = "23.09"
495+
__version__: str = "23.10"

src/amrex/space2d/amrex_2d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -3567,7 +3567,7 @@ class BoxArray:
35673567
def size(self) -> int: ...
35683568

35693569
class Config:
3570-
amrex_version: typing.ClassVar[str] = "23.09"
3570+
amrex_version: typing.ClassVar[str] = "23.10"
35713571
gpu_backend = None
35723572
have_gpu: typing.ClassVar[bool] = False
35733573
have_mpi: typing.ClassVar[bool] = True
@@ -10862,4 +10862,4 @@ def write_single_level_plotfile(
1086210862

1086310863
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1086410864
__license__: str = "BSD-3-Clause-LBNL"
10865-
__version__: str = "23.09"
10865+
__version__: str = "23.10"

src/amrex/space3d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,4 +492,4 @@ def d_decl(x, y, z):
492492

493493
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
494494
__license__: str = "BSD-3-Clause-LBNL"
495-
__version__: str = "23.09"
495+
__version__: str = "23.10"

src/amrex/space3d/amrex_3d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -3567,7 +3567,7 @@ class BoxArray:
35673567
def size(self) -> int: ...
35683568

35693569
class Config:
3570-
amrex_version: typing.ClassVar[str] = "23.09"
3570+
amrex_version: typing.ClassVar[str] = "23.10"
35713571
gpu_backend = None
35723572
have_gpu: typing.ClassVar[bool] = False
35733573
have_mpi: typing.ClassVar[bool] = True
@@ -10886,4 +10886,4 @@ def write_single_level_plotfile(
1088610886

1088710887
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1088810888
__license__: str = "BSD-3-Clause-LBNL"
10889-
__version__: str = "23.09"
10889+
__version__: str = "23.10"

0 commit comments

Comments
 (0)