-
Notifications
You must be signed in to change notification settings - Fork 74
111 lines (101 loc) · 3.27 KB
/
cuda.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
---
name: CUDA
on:
push:
pull_request:
schedule:
- cron: "23 8 * * *"
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-CUDA
cancel-in-progress: true
jobs:
cuda_eb_2d:
if: ${{ github.repository == 'AMReX-Fluids/IAMR' || github.event_name != 'schedule' }}
name: CUDA EB 2D
runs-on: ubuntu-20.04
steps:
- name: Checkout IAMR
uses: actions/checkout@v4
with:
path: IAMR
- name: Checkout AMReX-Hydro
uses: actions/checkout@v4
with:
repository: AMReX-Fluids/AMReX-Hydro
path: AMReX-Hydro
- name: Checkout AMReX
uses: actions/checkout@v4
with:
repository: AMReX-Codes/amrex
path: amrex
- name: Set Up Cache
uses: actions/cache@v4
with:
path: ~/.cache/ccache
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }}
restore-keys: |
ccache-${{ github.workflow }}-${{ github.job }}-git-
- name: Load Dependencies
run: |
amrex/.github/workflows/dependencies/dependencies_nvcc.sh 11.2
amrex/.github/workflows/dependencies/dependencies_ccache.sh
- name: Build
run: |
export PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:${PATH}
export LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/local/cuda/lib64:${LD_LIBRARY_PATH}
nvcc --version
g++ --version
export CCACHE_COMPRESS=1
export CCACHE_COMPRESSLEVEL=10
export CCACHE_MAXSIZE=500M
ccache -z
cd IAMR/Exec/eb_run2d
make -j 2 USE_CUDA=TRUE USE_CCACHE=TRUE \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference"
ccache -s
du -hs ~/.cache/ccache
cuda_no_eb_2d:
if: ${{ github.repository == 'AMReX-Fluids/IAMR' || github.event_name != 'schedule' }}
name: CUDA NO EB 2D
runs-on: ubuntu-20.04
steps:
- name: Checkout IAMR
uses: actions/checkout@v4
with:
path: IAMR
- name: Checkout AMReX-Hydro
uses: actions/checkout@v4
with:
repository: AMReX-Fluids/AMReX-Hydro
path: AMReX-Hydro
- name: Checkout AMReX
uses: actions/checkout@v4
with:
repository: AMReX-Codes/amrex
path: amrex
- name: Set Up Cache
uses: actions/cache@v4
with:
path: ~/.cache/ccache
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }}
restore-keys: |
ccache-${{ github.workflow }}-${{ github.job }}-git-
- name: Load Dependencies
run: |
amrex/.github/workflows/dependencies/dependencies_nvcc.sh 11.2
amrex/.github/workflows/dependencies/dependencies_ccache.sh
- name: Build
run: |
export PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:${PATH}
export LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/local/cuda/lib64:${LD_LIBRARY_PATH}
nvcc --version
g++ --version
export CCACHE_COMPRESS=1
export CCACHE_COMPRESSLEVEL=10
export CCACHE_MAXSIZE=400M
ccache -z
cd IAMR/Exec/run2d
make -j 2 USE_CUDA=TRUE USE_CCACHE=TRUE \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference"
ccache -s
du -hs ~/.cache/ccache