Commit c6875f4 1 parent 11aabdc commit c6875f4 Copy full SHA for c6875f4
File tree 4 files changed +14
-12
lines changed
4 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -121,8 +121,8 @@ jobs:
121
121
ccache -s
122
122
du -hs ~/.cache/ccache
123
123
124
- build_nvhpc21-11 -nvcc :
125
- name : NVHPC@21.11 NVCC/NVC++ Release [tests]
124
+ build_nvhpc24-1 -nvcc :
125
+ name : NVHPC@24.1 NVCC/NVC++ Release [tests]
126
126
runs-on : ubuntu-20.04
127
127
if : github.event.pull_request.draft == false
128
128
# env:
@@ -147,7 +147,7 @@ jobs:
147
147
ccache -z
148
148
149
149
source /etc/profile.d/modules.sh
150
- module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/21.11
150
+ module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/24.1
151
151
which nvcc || echo "nvcc not in PATH!"
152
152
which nvc++ || echo "nvc++ not in PATH!"
153
153
which nvc || echo "nvc not in PATH!"
@@ -165,7 +165,7 @@ jobs:
165
165
-DCMAKE_VERBOSE_MAKEFILE=ON \
166
166
-DWarpX_COMPUTE=CUDA \
167
167
-DWarpX_EB=ON \
168
- -DWarpX_PYTHON=ON \
168
+ -DWarpX_PYTHON=OFF \
169
169
-DAMReX_CUDA_ARCH=8.0 \
170
170
-DWarpX_OPENPMD=ON \
171
171
-DWarpX_PSATD=ON \
Original file line number Diff line number Diff line change @@ -31,17 +31,17 @@ $(dirname "$0")/ccache.sh
31
31
echo ' deb [trusted=yes] https://developer.download.nvidia.com/hpc-sdk/ubuntu/amd64 /' | \
32
32
sudo tee /etc/apt/sources.list.d/nvhpc.list
33
33
sudo apt update -y && \
34
- sudo apt install -y --no-install-recommends nvhpc-21-11 && \
34
+ sudo apt install -y --no-install-recommends nvhpc-24-1 && \
35
35
sudo rm -rf /var/lib/apt/lists/* && \
36
- sudo rm -rf /opt/nvidia/hpc_sdk/Linux_x86_64/21.11 /examples \
37
- /opt/nvidia/hpc_sdk/Linux_x86_64/21.11 /profilers \
38
- /opt/nvidia/hpc_sdk/Linux_x86_64/21.11 /math_libs/11.5/targets/x86_64-linux/lib/lib* _static* .a
36
+ sudo rm -rf /opt/nvidia/hpc_sdk/Linux_x86_64/24.1 /examples \
37
+ /opt/nvidia/hpc_sdk/Linux_x86_64/24.1 /profilers \
38
+ /opt/nvidia/hpc_sdk/Linux_x86_64/24.1 /math_libs/11.5/targets/x86_64-linux/lib/lib* _static* .a
39
39
40
40
# things should reside in /opt/nvidia/hpc_sdk now
41
41
42
42
# activation via:
43
43
# source /etc/profile.d/modules.sh
44
- # module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/21.11
44
+ # module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/24.1
45
45
46
46
# cmake-easyinstall
47
47
#
Original file line number Diff line number Diff line change @@ -144,9 +144,9 @@ private:
144
144
/* * Number of Fabs in the plotfile. */
145
145
int m_numFabs;
146
146
/* * Lower corner physical coordinates of each fab in the plotfile. */
147
- amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_glo {{ AMREX_D_DECL ( 0 ., 0 ., 0 .)}} ;
147
+ amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_glo;
148
148
/* * Upper corner physical coordinates of each fab in the plotfile. */
149
- amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_ghi {{ AMREX_D_DECL ( 1 ., 1 ., 1 .)}} ;
149
+ amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_ghi;
150
150
std::string m_CellPath;
151
151
152
152
};
Original file line number Diff line number Diff line change 22
22
using namespace amrex ::literals;
23
23
24
24
BTDPlotfileHeaderImpl::BTDPlotfileHeaderImpl (std::string const & Headerfile_path)
25
- : m_Header_path{Headerfile_path}
25
+ : m_Header_path{Headerfile_path},
26
+ m_glo{{AMREX_D_DECL (0 ., 0 ., 0 .)}},
27
+ m_ghi{{AMREX_D_DECL (1 ., 1 ., 1 .)}}
26
28
{
27
29
28
30
}
You can’t perform that action at this time.
0 commit comments