forked from wannier-developers/wannier90
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jerome Jackson
committed
Jan 15, 2025
1 parent
828049b
commit 6027da1
Showing
2 changed files
with
30 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
#===================================================== | ||
# For Linux x86_64 with intel ifx | ||
#===================================================== | ||
F90=ifx | ||
|
||
COMMS=mpi08 | ||
MPIF90=mpiifx | ||
|
||
# use of runtime checks deactivates optimisation for speed in ifx | ||
# disable "warning #8889: Explicit interface or EXTERNAL declaration is required." | ||
# disable "warning #10182: disabling optimization; runtime debug checks enabled" | ||
# disable "remark #10440: Note that use of a debug option without any optimization-level option will turnoff most compiler optimizations similar to use of '-O0'" | ||
FCOPTS=-fPIC -check all -warn all -g -diag-disable 8889,10182,10440 | ||
FCOPTS=-O3 -fPIC -warn all -diag-disable 8889 | ||
LDOPTS=$(FCOPTS) | ||
|
||
#======================================================== | ||
# Intel mkl libraries. Set MKLROOT per hand if necessary | ||
#======================================================== | ||
LIBS = -L$(MKLROOT) -lmkl_core -lmkl_intel_lp64 -lmkl_sequential | ||
|
||
# f90wrap location | ||
F90WRAP = f90wrap |