-
Notifications
You must be signed in to change notification settings - Fork 98
57 lines (48 loc) · 1.61 KB
/
rad-compare.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Rad2Tshock
on: [pull_request]
jobs:
Rad2Tshock-1d:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get submodules
run: |
git submodule update --init
cd external/Microphysics
git fetch; git checkout development
cd ../amrex
git fetch; git checkout development
cd ../..
- name: Install dependencies
run: |
sudo apt-get update -y -qq
sudo apt-get -qq -y install curl cmake jq clang g++>=9.3.0 libopenmpi-dev openmpi-bin
- name: Install hypre
run: |
wget -q https://github.com/hypre-space/hypre/archive/refs/tags/v2.26.0.tar.gz
tar xfz v2.26.0.tar.gz
cd hypre-2.26.0/src
./configure --with-cxxstandard=17
make -j 4
make install
cd ../../
- name: Compile Rad2Tshock
run: |
export AMREX_HYPRE_HOME=${PWD}/hypre-2.26.0/src/hypre
cd Exec/radiation_tests/Rad2Tshock
make DEBUG=TRUE USE_MPI=TRUE DIM=1 -j 4
- name: Run Rad2Tshock-1d
run: |
cd Exec/radiation_tests/Rad2Tshock
./Castro1d.gnu.DEBUG.MPI.ex inputs.M2 max_step=25
- name: Build the fextrema tool
run: |
cd external/amrex/Tools/Plotfile
make programs=fextrema -j 4
- name: Check the extrema
run: |
cd Exec/radiation_tests/Rad2Tshock
../../../external/amrex/Tools/Plotfile/fextrema.gnu.ex plt_00025 > fextrema.out
diff fextrema.out ci-benchmarks/Rad2TShock-1d.out