-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace Numerial Recipes LU-decomp routines with LAPACK ones * no verbose Spack install * add lapack dep to cmake/PackageConfig.cmake.in * Update LAPACK logic * update spack package for lapack * Add test of output cmake config * Update Linux.yml * debug Linux.yml * Update Linux.yml * Add sp_mod.F and use in src/CMakeLists.txt * Update fftpack.F for use in sp_mod (dummy arrays) * use sp_mod (incl. resolve arg mismatches) * Remove arg mismatch and allow invalid boz flags
- Loading branch information
1 parent
ce1d621
commit e10f624
Showing
22 changed files
with
179 additions
and
90 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
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
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,63 @@ | ||
module sp_mod | ||
|
||
contains | ||
|
||
#include "fftpack.F" | ||
#include "ncpus.F" | ||
#include "spanaly.f" | ||
#include "spdz2uv.f" | ||
#include "speps.f" | ||
#include "spfft1.f" | ||
#include "spffte.f" | ||
#include "spfftpt.f" | ||
#include "splaplac.f" | ||
#include "splat.F" | ||
#include "splegend.f" | ||
#include "sppad.f" | ||
#include "spsynth.f" | ||
#include "sptezd.f" | ||
#include "sptez.f" | ||
#include "sptezmd.f" | ||
#include "sptezm.f" | ||
#include "sptezmv.f" | ||
#include "sptezv.f" | ||
#include "sptgpm.f" | ||
#include "sptgpmv.f" | ||
#include "sptgps.f" | ||
#include "sptgpsv.f" | ||
#include "sptgpt.f" | ||
#include "sptgptv.f" | ||
#include "sptrand.f" | ||
#include "sptran.f" | ||
#include "sptranf0.f" | ||
#include "sptranf1.f" | ||
#include "sptranf.f" | ||
#include "sptranfv.f" | ||
#include "sptranv.f" | ||
#include "sptrun.f" | ||
#include "sptrung.f" | ||
#include "sptrungv.f" | ||
#include "sptrunm.f" | ||
#include "sptrunmv.f" | ||
#include "sptruns.f" | ||
#include "sptrunsv.f" | ||
#include "sptrunv.f" | ||
#include "spuv2dz.f" | ||
#include "spwget.f" | ||
|
||
#ifdef BUILD_DEPRECATED | ||
#include "spfft.f" | ||
#include "spgradq.f" | ||
#include "spgradx.f" | ||
#include "spgrady.f" | ||
#include "sptgpmd.f" | ||
#include "sptgpsd.f" | ||
#include "sptgptd.f" | ||
#include "sptgptsd.f" | ||
#include "sptgptvd.f" | ||
#include "sptrund.f" | ||
#include "sptrunl.f" | ||
#include "spvar.f" | ||
#endif | ||
|
||
end module |
Oops, something went wrong.