Skip to content

use integer handle and define preprocessor directive #99

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests
FC="gfortran" ./run_tests.sh
FC="gfortran -O3 -march=native" ./run_tests.sh
FC="gfortran -cpp -DOPEN_MPI=yes" ./run_tests.sh
FC="gfortran -O3 -march=native -cpp -DOPEN_MPI=yes" ./run_tests.sh

Run_standalone_tests_with_GFortran_with_MPICH:
name: "Run standalone tests with GFortran with MPICH"
Expand All @@ -95,8 +95,8 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests
FC="gfortran" ./run_tests.sh
FC="gfortran -O3 -march=native" ./run_tests.sh
FC="gfortran -cpp" ./run_tests.sh
FC="gfortran -O3 -march=native -cpp" ./run_tests.sh

Run_standalone_tests_with_LFortran_with_OpenMPI:
name: "Run standalone tests with LFortran with Open MPI"
Expand All @@ -117,8 +117,8 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests
FC="lfortran" ./run_tests.sh
FC="lfortran --fast" ./run_tests.sh
FC="lfortran --cpp -DOPEN_MPI=yes" ./run_tests.sh
FC="lfortran --fast --cpp -DOPEN_MPI=yes" ./run_tests.sh

Run_standalone_tests_with_LFortran_with_MPICH:
name: "Run standalone tests with LFortran with MPICH"
Expand All @@ -139,8 +139,8 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests
FC="lfortran" ./run_tests.sh
FC="lfortran --fast" ./run_tests.sh
FC="lfortran --cpp" ./run_tests.sh
FC="lfortran --fast --cpp" ./run_tests.sh

Compile_POT3D_with_GFortran_with_OpenMPI:
name: "Build POT3D and validate with GFortran with Open MPI"
Expand All @@ -162,14 +162,14 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="gfortran -O3 -march=native" ./build_and_run_gfortran.sh
FC="gfortran -O3 -march=native -cpp -DOPEN_MPI=yes" ./build_and_run_gfortran.sh

# build and validation without GFortran's optimization
- name: POT3D Build and validation with GFortran without optimization using Open MPI (MPI only)
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="gfortran" ./build_and_run_gfortran.sh
FC="gfortran -cpp -DOPEN_MPI=yes" ./build_and_run_gfortran.sh

Compile_POT3D_with_LFortran_with_OpenMPI:
name: "Build POT3D and validate with LFortran with Open MPI"
Expand All @@ -191,14 +191,14 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="lfortran --fast" ./build_and_run_lfortran.sh
FC="lfortran --fast --cpp -DOPEN_MPI=yes" ./build_and_run_lfortran.sh

# build and validation without LFortran's optimization
- name: POT3D Build and validation with LFortran without optimization using Open MPI (MPI only)
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="lfortran" ./build_and_run_lfortran.sh
FC="lfortran --cpp -DOPEN_MPI=yes" ./build_and_run_lfortran.sh

Compile_POT3D_with_GFortran_with_MPICH:
name: "Build POT3D and validate with GFortran with MPICH"
Expand All @@ -220,14 +220,14 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="gfortran -O3 -march=native" ./build_and_run_gfortran.sh
FC="gfortran -O3 -march=native -cpp" ./build_and_run_gfortran.sh

# build and validation without GFortran's optimization
- name: POT3D Build and validation with GFortran without optimization (MPI only)
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="gfortran" ./build_and_run_gfortran.sh
FC="gfortran -cpp" ./build_and_run_gfortran.sh

Compile_POT3D_with_LFortran_with_MPICH:
name: "Build POT3D and validate with LFortran with MPICH"
Expand All @@ -249,11 +249,11 @@ jobs:
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="lfortran --fast" ./build_and_run_lfortran.sh
FC="lfortran --fast --cpp" ./build_and_run_lfortran.sh

# build and validation without LFortran's optimization
- name: POT3D Build and validation with LFortran without optimization using MPICH (MPI only)
shell: bash -e -x -l {0}
run: |
cd tests/pot3d
FC="lfortran" ./build_and_run_lfortran.sh
FC="lfortran --cpp" ./build_and_run_lfortran.sh
Loading