-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev-stable' of github.com:QuantumPackage/qp2 into dev-s…
…table
- Loading branch information
Showing
21 changed files
with
214 additions
and
28 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,4 @@ | ||
#!/bin/bash | ||
|
||
exec python3 $@ | ||
|
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,22 @@ | ||
#!/bin/bash | ||
|
||
# On Darwin: try gzcat if available, otherwise use Python | ||
|
||
if [[ $(uname -s) = Darwin ]] ; then | ||
which gzcat &> /dev/null | ||
if [[ $? -eq 0 ]] ; then | ||
exec gzcat $@ | ||
else | ||
|
||
exec python3 << EOF | ||
import sys | ||
import gzip | ||
with gzip.open("$1", "rt") as f: | ||
print(f.read()) | ||
EOF | ||
fi | ||
else | ||
command=$(which -a zcat | grep -v 'qp2/bin/' | head -1) | ||
exec $command $@ | ||
fi | ||
|
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,62 @@ | ||
# 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 -ffree-line-length-none -I . -g -fPIC -std=legacy | ||
LAPACK_LIB : -llapack -lblas | ||
IRPF90 : irpf90 | ||
IRPF90_FLAGS : --ninja --align=32 -DSET_NESTED -DMACOS | ||
|
||
# Global options | ||
################ | ||
# | ||
# 1 : Activate | ||
# 0 : Deactivate | ||
# | ||
[OPTION] | ||
MODE : OPT ; [ 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 -march=native | ||
|
||
# Profiling flags | ||
################# | ||
# | ||
[PROFILE] | ||
FC : -p -g | ||
FCFLAGS : -Ofast | ||
|
||
# Debugging flags | ||
################# | ||
# | ||
# -fcheck=all : Checks uninitialized variables, array subscripts, etc... | ||
# -g : Extra debugging information | ||
# | ||
[DEBUG] | ||
FCFLAGS : -fcheck=all -g | ||
|
||
# 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
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 |
---|---|---|
|
@@ -53,7 +53,6 @@ function run { | |
|
||
|
||
@test "B-B" { | ||
qp set_file b2_stretched.ezfio | ||
run b2_stretched.zmt 1 0 6-31g | ||
} | ||
|
||
|
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
Oops, something went wrong.