-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged RC branch to master. Master is dead, long live master!
- Loading branch information
Showing
1,102 changed files
with
1,298,425 additions
and
234,228 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 |
---|---|---|
@@ -1,26 +1,76 @@ | ||
fortran/garcha-g2g | ||
fortran/garcha | ||
fortran/hibrido-g2g | ||
fortran/hibrido | ||
fortran/obj | ||
g2g/*.o | ||
g2g/*.so | ||
g2g/*/*.o | ||
g2g/*/*.cu_o | ||
test/*/*.orb | ||
test/*/*.out | ||
dtest/*/*.xyz | ||
########################################################### | ||
# Ignoring compiled objects, logs and backups | ||
########################################################### | ||
*.x | ||
*.o | ||
*.so | ||
*.swp | ||
ecuaciones.pdf | ||
*.mod | ||
fort.* | ||
*.log | ||
*.optrpt | ||
*.bak | ||
/g2g/nbproject/private/ | ||
*.so | ||
*~ | ||
mulliken | ||
qm.xyz | ||
salida | ||
lioamber/*.mod | ||
liosolo/liosolo | ||
tools/bdens | ||
tools/average_spectra | ||
tools/tdanalyze | ||
tools/inputgen | ||
# | ||
########################################################### | ||
## Ignoring outputs from test runs | ||
########################################################### | ||
test/*/*/mulliken | ||
test/*/*/forces | ||
test/*/*/fukui | ||
test/*/*/dipole_moment | ||
test/*/*/dipole_moment_td | ||
test/*/*/qm.xyz | ||
test/*/*/output | ||
# | ||
########################################################### | ||
# Isn't this redundant? | ||
# (at least after adding *.cu_o) | ||
########################################################### | ||
g2g/*.o | ||
g2g/*.so | ||
g2g/*/*.o | ||
g2g/*/*.cu_o | ||
g2g/analytic_integral/*.o | ||
g2g/analytic_integral/*/*.o | ||
lioamber/*.log | ||
lioamber/*.mod | ||
liosolo/*.x | ||
test/performance-measures/* | ||
lioamber/utests/*.x | ||
lioamber/liosubs/utests/*.x | ||
lioamber/liosubs/utests/Output-* | ||
# | ||
########################################################### | ||
# Unit test | ||
########################################################### | ||
test/unit_test/accumulate_point/main_gpu | ||
test/unit_test/accumulate_point/main_cpu | ||
test/unit_test/accumulate_point/output/* | ||
test/unit_test/libxc_proxy/main_gpu | ||
test/unit_test/libxc_proxy/output/* | ||
test/unit_test/matrix/matrix_test | ||
test/unit_test/timers/timers_test | ||
test/unit_test/iteration/main_gpu | ||
test/unit_test/iteration/output/* | ||
test/unit_test/libxc_proxy/main_cpu | ||
test/unit_test/libxc_proxy/main_gpu | ||
test/*/output/* | ||
########################################################### | ||
# Integration test | ||
########################################################### | ||
test/integration_test/accumulate_point/main_cpu | ||
test/integration_test/accumulate_point/main_gpu | ||
test/integration_test/iteration/main_gpu | ||
########################################################### | ||
# Stress test | ||
########################################################### | ||
test/tests_engine/*.pyc | ||
########################################################### | ||
# Others | ||
########################################################### | ||
.vscode |
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,6 @@ | ||
language: cpp | ||
sudo: required | ||
before_install: | ||
- sudo apt-get install gfortran liblapack-dev libblas-dev python2.7 | ||
before_script: ./configure && make -j cpu=1 cuda=0 && cd test | ||
script: travis_wait ./run_travis_test.py |
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 |
---|---|---|
@@ -1,11 +1,41 @@ | ||
.PHONY: all clean hooks | ||
################################################################################ | ||
# LIO MAKEFILE ################################################################################ | ||
|
||
all: | ||
cd g2g; make; | ||
cd lioamber; make; | ||
cd liosolo; make; | ||
all: liosolo liblio g2g tools | ||
|
||
|
||
.PHONY: liosolo | ||
liosolo: liblio | ||
$(MAKE) -C liosolo | ||
|
||
|
||
.PHONY: liblio | ||
liblio: g2g | ||
$(MAKE) -C lioamber | ||
|
||
|
||
.PHONY: g2g | ||
g2g: | ||
$(MAKE) -C g2g | ||
|
||
.PHONY: tools | ||
tools: | ||
$(MAKE) -C tools | ||
|
||
.PHONY: check | ||
check: | ||
$(MAKE) check -C test | ||
|
||
.PHONY: compile | ||
compile: | ||
$(MAKE) compile -C test | ||
|
||
.PHONY: clean | ||
clean: | ||
cd g2g; make clean; | ||
cd lioamber; make clean; | ||
cd liosolo; make clean; | ||
$(MAKE) clean -C liosolo | ||
$(MAKE) clean -C lioamber | ||
$(MAKE) clean -C g2g | ||
$(MAKE) clean -C test | ||
$(MAKE) clean -C tools | ||
|
||
################################################################################ |
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 @@ | ||
#!/bin/bash |
Oops, something went wrong.