-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' of https://github.com/AMReX-Codes/amrex in…
…to bicgstab
- Loading branch information
Showing
137 changed files
with
2,260 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
abot | ||
alo | ||
apoints | ||
asend | ||
ba | ||
bloc | ||
blocs | ||
boxs | ||
cant | ||
ccache | ||
clen | ||
compex | ||
couldnt | ||
fromm | ||
frop | ||
geometrys | ||
hist | ||
hsi | ||
infor | ||
inout | ||
ist | ||
lsit | ||
nd | ||
nineth | ||
parm | ||
parms | ||
pres | ||
ptd | ||
recuse | ||
shft | ||
siz | ||
structed | ||
te | ||
thi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[codespell] | ||
skip = .git,*.ipynb,*.bib,*.ps,*.patch,*~,CHANGES,*/Extern/SWFFT,*/Extern/hpgmg,./tmp_install_dir,./installdir,*/build,*/tmp_build_dir | ||
ignore-words = .codespell-ignore-words |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
name: bittree | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.head_ref }}-bittree | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
bittree-2d: | ||
name: Bittree 2D | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Dependencies | ||
run: | | ||
.github/workflows/dependencies/dependencies.sh | ||
.github/workflows/dependencies/dependencies_clang-tidy.sh 15 | ||
.github/workflows/dependencies/dependencies_ccache.sh | ||
- name: Set Up Cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/ccache | ||
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | ||
restore-keys: | | ||
ccache-${{ github.workflow }}-${{ github.job }}-git- | ||
- name: Check out Bittree | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: Flash-X/Bittree | ||
path: bittree | ||
- name: Build Bittree | ||
run: | | ||
cd ${{ github.workspace }}/bittree | ||
python setup.py library --dim 2 --prefix ${{ github.workspace }}/libbittree | ||
cd build | ||
make -j2 | ||
make install | ||
- name: Build and Run Test | ||
run: | | ||
export CCACHE_COMPRESS=1 | ||
export CCACHE_COMPRESSLEVEL=10 | ||
export CCACHE_MAXSIZE=80M | ||
export CCACHE_EXTRAFILES=${{ github.workspace }}/.clang-tidy | ||
export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt | ||
ccache -z | ||
export AMREX_BITTREE_HOME=${{ github.workspace }}/libbittree | ||
cd ${{ github.workspace }}/Tests/Amr/Advection_AmrCore/Exec | ||
make -j2 USE_MPI=TRUE USE_BITTREE=TRUE DIM=2 TEST=TRUE \ | ||
CCACHE=ccache | ||
mpiexec -n 2 ./main2d.gnu.TEST.MPI.ex inputs_bittree amr.plot_int=1000 | ||
${{github.workspace}}/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt | ||
make -j2 -f clang-tidy-ccache-misses.mak \ | ||
CLANG_TIDY=clang-tidy-15 \ | ||
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*" | ||
ccache -s | ||
du -hs ~/.cache/ccache | ||
bittree-3d: | ||
name: Bittree 3D | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Dependencies | ||
run: | | ||
.github/workflows/dependencies/dependencies.sh | ||
.github/workflows/dependencies/dependencies_clang-tidy.sh 15 | ||
.github/workflows/dependencies/dependencies_ccache.sh | ||
- name: Set Up Cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/ccache | ||
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | ||
restore-keys: | | ||
ccache-${{ github.workflow }}-${{ github.job }}-git- | ||
- name: Check out Bittree | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: Flash-X/Bittree | ||
path: bittree | ||
- name: Build Bittree | ||
run: | | ||
cd ${{ github.workspace }}/bittree | ||
python setup.py library --dim 3 --prefix ${{ github.workspace }}/libbittree | ||
cd build | ||
make -j2 | ||
make install | ||
- name: Build and Run Test | ||
run: | | ||
export CCACHE_COMPRESS=1 | ||
export CCACHE_COMPRESSLEVEL=10 | ||
export CCACHE_MAXSIZE=80M | ||
export CCACHE_EXTRAFILES=${{ github.workspace }}/.clang-tidy | ||
export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt | ||
ccache -z | ||
export AMREX_BITTREE_HOME=${{ github.workspace }}/libbittree | ||
cd ${{ github.workspace }}/Tests/Amr/Advection_AmrCore/Exec | ||
make -j2 USE_MPI=TRUE USE_BITTREE=TRUE DIM=3 TEST=TRUE BL_NO_FORT=TRUE\ | ||
CCACHE=ccache | ||
mpiexec -n 2 ./main3d.gnu.TEST.MPI.ex inputs_bittree max_step=10 | ||
${{github.workspace}}/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt | ||
make -j2 -f clang-tidy-ccache-misses.mak \ | ||
CLANG_TIDY=clang-tidy-15 \ | ||
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*" | ||
ccache -s | ||
du -hs ~/.cache/ccache | ||
save_pr_number: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Save PR number | ||
env: | ||
PR_NUMBER: ${{ github.event.number }} | ||
run: | | ||
echo $PR_NUMBER > pr_number.txt | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: pr_number | ||
path: pr_number.txt | ||
retention-days: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: codespell | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.head_ref }}-codespell | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
codespell: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install codespell | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y --no-install-recommends python3-pip | ||
pip3 install --user codespell | ||
- name: Run codespell | ||
run: codespell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright 2023 The AMReX Community | ||
# | ||
# License: BSD-3-Clause-LBNL | ||
|
||
# Don't want to use the following line because apt-get remove may fail if | ||
# the package specfied does not exist. | ||
# set -eu -o pipefail | ||
|
||
# Large packages | ||
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100 | ||
|
||
echo 'Removing some packages we do not need' | ||
|
||
df -h | ||
|
||
apt list --installed | ||
|
||
sudo apt-get remove -y '^apache.*' | ||
sudo apt-get remove -y '^aspnetcore.*' | ||
sudo apt-get remove -y '^azure.*' | ||
sudo apt-get remove -y '^dotnet.*' | ||
sudo apt-get remove -y '^firebird.*' | ||
sudo apt-get remove -y '^firefox.*' | ||
sudo apt-get remove -y '^google.*' | ||
sudo apt-get remove -y '^hhvm.*' | ||
sudo apt-get remove -y '^microsoft.*' | ||
sudo apt-get remove -y '^mongodb.*' | ||
sudo apt-get remove -y '^mono-.*' | ||
sudo apt-get remove -y '^monodoc-.*' | ||
sudo apt-get remove -y '^mysql.*' | ||
sudo apt-get remove -y '^php.*' | ||
sudo apt-get remove -y '^powershell.*' | ||
sudo apt-get remove -y '^snapd.*' | ||
sudo apt-get remove -y '^temurin.*' | ||
|
||
sudo apt-get autoremove -y | ||
|
||
df -h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.