-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #346 from QuantumPackage/dev-stable
Dev stable
- Loading branch information
Showing
323 changed files
with
17,815 additions
and
13,583 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,63 @@ | ||
# Common flags | ||
############## | ||
# | ||
# -ffree-line-length-none : Needed for IRPF90 which produces long lines | ||
# -lblas -llapack : Link with libblas and liblapack libraries provided by the system | ||
# -I . : Include the curent directory (Mandatory) | ||
# | ||
# --ninja : Allow the utilisation of ninja. (Mandatory) | ||
# --align=32 : Align all provided arrays on a 32-byte boundary | ||
# | ||
# | ||
[COMMON] | ||
FC : gfortran -g -ffree-line-length-none -I . -fPIC -std=legacy | ||
LAPACK_LIB : -I${MKLROOT}/include -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_core -lpthread -lm -ldl -lmkl_gnu_thread -lgomp -fopenmp | ||
IRPF90 : irpf90 | ||
IRPF90_FLAGS : --ninja --align=32 --assert -DSET_NESTED | ||
|
||
# Global options | ||
################ | ||
# | ||
# 1 : Activate | ||
# 0 : Deactivate | ||
# | ||
[OPTION] | ||
MODE : DEBUG ; [ OPT | PROFILE | DEBUG ] : Chooses the section below | ||
CACHE : 0 ; Enable cache_compile.py | ||
OPENMP : 1 ; Append OpenMP flags | ||
|
||
# Optimization flags | ||
#################### | ||
# | ||
# -Ofast : Disregard strict standards compliance. Enables all -O3 optimizations. | ||
# It also enables optimizations that are not valid | ||
# for all standard-compliant programs. It turns on | ||
# -ffast-math and the Fortran-specific | ||
# -fno-protect-parens and -fstack-arrays. | ||
[OPT] | ||
FCFLAGS : -Ofast | ||
|
||
# Profiling flags | ||
################# | ||
# | ||
[PROFILE] | ||
FC : -p -g | ||
FCFLAGS : -Ofast | ||
|
||
# Debugging flags | ||
################# | ||
# | ||
# -fcheck=all : Checks uninitialized variables, array subscripts, etc... | ||
# -g : Extra debugging information | ||
# | ||
[DEBUG] | ||
#FCFLAGS : -g -msse4.2 -fcheck=all -Waliasing -Wampersand -Wconversion -Wsurprising -Wintrinsics-std -Wno-tabs -Wintrinsic-shadow -Wline-truncation -Wreal-q-constant -Wuninitialized -fbacktrace -ffpe-trap=zero,overflow,underflow -finit-real=nan | ||
FCFLAGS : -g -mavx -fcheck=all -Waliasing -Wampersand -Wconversion -Wsurprising -Wintrinsics-std -Wno-tabs -Wintrinsic-shadow -Wline-truncation -Wreal-q-constant -Wuninitialized -fbacktrace -ffpe-trap=zero,overflow -finit-real=nan | ||
|
||
# OpenMP flags | ||
################# | ||
# | ||
[OPENMP] | ||
FC : -fopenmp | ||
IRPF90_FLAGS : --openmp | ||
|
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
Submodule irpf90
updated
from beac61 to 4ab1b1
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,18 @@ | ||
program pouet | ||
implicit none | ||
call test | ||
end | ||
subroutine test | ||
implicit none | ||
! provide mos_times_cholesky_r1 | ||
! provide mos_times_cholesky_r2 | ||
integer :: ipoint | ||
double precision :: accu,weight | ||
accu = 0.d0 | ||
do ipoint = 1, n_points_final_grid | ||
weight = final_weight_at_r_vector(ipoint) | ||
! accu += dabs(mu_of_r_hf(ipoint) - mu_of_r_hf_old(ipoint)) * weight | ||
accu += dabs(f_hf_cholesky_sparse(ipoint) - f_hf_cholesky(ipoint)) * weight | ||
enddo | ||
print*,'accu = ',accu | ||
end |
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
Oops, something went wrong.