forked from cusplibrary/cusplibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
118 lines (107 loc) · 2.22 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
syntax: glob
# Ignore files left by editors
*~
*.bak
*.swp
# Ignore compiled files
*.o
*.obj
*.exe
*.dll
*.pyc
*.so
*.pdb
# Ignore CUDA auxiliary files
*.linkinfo
*.cubin
# Other things to ignore
*.vtu
*.dblite
*.log
nvcc_options_file.txt
print_sm_version
tester
# Ignore LCOV files
*.gcda
*.gcno
*.gcov
*.info
# Ignore html
*.html
*.css
# Ignore Windows VS files
*.filters
*.suo
*.sdf
*.deps
*.cache
*.lastbuildstate
*.tlog
*.cd
*.ilk
*.opensdf
*.sconsign*
*.sconf_temp
*.dblite
# Ignore all build release files
testing/*release
# Ignore build files
#<AutoIgnore>
examples/Algorithms/maximal_independent_set
examples/Algorithms/transpose
examples/Algorithms/multiply
examples/Algorithms/blas
examples/Gallery/diffusion
examples/Gallery/poisson
examples/Graph/breadth_first_search
examples/Graph/connected_components
examples/Graph/hilbert_curve
examples/Graph/maximal_independent_set
examples/Graph/pseudo_peripheral
examples/Graph/symmetric_rcm
examples/Graph/vertex_coloring
examples/InputOutput/matrix_market
examples/LinearOperator/stencil
examples/LinearOperator/block_matrix
examples/MatrixFormats/csr
examples/MatrixFormats/ell
examples/MatrixFormats/hyb
examples/MatrixFormats/dia
examples/MatrixFormats/coo
examples/MatrixAssembly/unordered_triplets
examples/Monitors/convergence_monitor
examples/Monitors/default_monitor
examples/Monitors/monitor
examples/Monitors/verbose_monitor
examples/OpenGL/spy
examples/Preconditioners/ainv
examples/Preconditioners/custom_amg
examples/Preconditioners/diagonal
examples/Preconditioners/smoothed_aggregation
examples/Solvers/gmres
examples/Solvers/bicgstab
examples/Solvers/bicgstab_m
examples/Solvers/cg_m
examples/Solvers/cg
examples/Solvers/cr
examples/Views/csr
examples/Views/cg_raw
examples/Views/array1d
examples/Views/csr_raw
examples/Views/csr_view
examples/Views/array2d_raw
examples/Version/version
performance/amg/smoothed_aggregation
performance/blas/blas
performance/blas/cublas
performance/csr_vector/csr_vector
performance/graph/breadth_first_search
performance/graph/connected_components
performance/graph/hilbert_curve
performance/graph/maximum_flow
performance/graph/pseudo_peripheral
performance/graph/symmetric_rcm
performance/overhead/memory
performance/spmv/spmv
#<AutoIgnore/>
*.user