Skip to content
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

Master dev #68

Merged
merged 2 commits into from
Jan 26, 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
2 changes: 2 additions & 0 deletions .github/workflows/ci_doxygen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
sudo apt-get install libopenmpi-dev
sudo apt-get install libscalapack-openmpi-dev
sudo apt-get install doxygen
sudo apt-get install libblas-dev
sudo apt-get install liblapack-dev
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/Stellarator-Tools/build
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
sudo apt-get install libnetcdff-dev
sudo apt-get install libopenmpi-dev
sudo apt-get install libscalapack-openmpi-dev
sudo apt-get install libblas-dev
sudo apt-get install liblapack-dev
- name: Configure CMake Mac
if: ${{matrix.os == 'macos-latest'}}
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci_test_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
sudo apt-get install libnetcdff-dev
sudo apt-get install libopenmpi-dev
sudo apt-get install libscalapack-openmpi-dev
sudo apt-get install libblas-dev
sudo apt-get install liblapack-dev
- name: Configure CMake Mac
if: ${{matrix.os == 'macos-latest'}}
shell: bash
Expand Down
7 changes: 7 additions & 0 deletions Sources/Ezcdf/netcdf_inc.f
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,13 @@ MODULE netcdf_inc
& nf_put_var_3d_cpx_double
END INTERFACE

!-------------------------------------------------------------------------------
!> Interface for netcdf syncing
!-------------------------------------------------------------------------------
INTERFACE nf_sync
MODULE PROCEDURE nf90_sync
END INTERFACE

CONTAINS

!*******************************************************************************
Expand Down
Loading