-
Notifications
You must be signed in to change notification settings - Fork 18
/
.gitignore
76 lines (76 loc) · 2.08 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
###########################################################
# Ignoring compiled objects, logs and backups
###########################################################
*.x
*.o
*.so
*.swp
*.mod
*.log
*.optrpt
*.bak
*~
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