Skip to content

Commit 3689583

Browse files
authored
Release: 23.08 (#166)
The August release :)
1 parent e5bc881 commit 3689583

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
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.07)
4+
project(pyAMReX VERSION 23.08)
55

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

cmake/dependencies/AMReX.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ macro(find_amrex)
6767
elseif(NOT pyAMReX_amrex_internal)
6868
message(STATUS "Searching for pre-installed AMReX ...")
6969
# https://amrex-codes.github.io/amrex/docs_html/BuildingAMReX.html#importing-amrex-into-your-cmake-project
70-
find_package(AMReX 23.07 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
70+
find_package(AMReX 23.08 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
7171
message(STATUS "AMReX: Found version '${AMReX_VERSION}'")
7272
endif()
7373
endmacro()
@@ -82,7 +82,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
8282
set(pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
8383
CACHE STRING
8484
"Repository URI to pull and build AMReX from if(pyAMReX_amrex_internal)")
85-
set(pyAMReX_amrex_branch "b75dd9d5279263768c418ce19285f87de37209f9"
85+
set(pyAMReX_amrex_branch "23.08"
8686
CACHE STRING
8787
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
8888

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.07
18-
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.08+
17+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.08
18+
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.09+
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.07 1D-3D
17-
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.07 RZ
16+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.08 1D-3D
17+
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.08 RZ
1818
}

src/Particle/StructOfArrays.cpp

+3-3
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+
90+
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.06
9191
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.08
92-
make_StructOfArrays< 8, 2>(m); // ImpactX 23.08+
93-
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.08+
92+
make_StructOfArrays< 8, 2>(m); // ImpactX 23.09+
93+
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.06
9494
}

0 commit comments

Comments
 (0)