-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
59 lines (50 loc) · 1.2 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
# use a white list
*
!*/
# whitelist CMakeFiles
!/apps/*/CMakeLists.txt
!/libs/**/CMakeLists.txt
!/dependencies/CMakeLists.txt
!/dependencies/cub/CMakeLists.txt
!/dependencies/metis/CMakeLists.txt
!/dependencies/mmio/CMakeLists.txt
!/dependencies/openblas/CMakeLists.txt
!/dependencies/optionparser/CMakeLists.txt
!/dependencies/patoh/CMakeLists.txt
!/dependencies/spral/CMakeLists.txt
!/tests/**/CMakeLists.txt
# libs code
!/libs/**/*.h
!/libs/**/*.cuh
!/libs/**/*.cc
!/libs/**/*.cu
# application code
!/apps/*/*.h
!/apps/*/*.cc
# test code and data
!/tests/**/*.cc
!/tests/**/*.h
!/tests/**/*.mtx
# Staging stuff
!/tests/staging/Eigen/**/*
!/tests/staging/Unsupported/**/*
# matlab and scripts
!/matlab/*
!/scripts/*
# top level
!build_parameters_host.cmake
!build_parameters_device.cmake
!LICENSE
!README.md
!CMakeLists.txt
!/doc/*
# misc
!.gitignore
# fixes
dependencies/metis/include/CMakeLists.txt
dependencies/metis/metis-5.1.0/CMakeLists.txt
dependencies/metis/metis-5.1.0/GKlib/CMakeLists.txt
dependencies/metis/metis-5.1.0/GKlib/test/CMakeLists.txt
dependencies/metis/metis-5.1.0/include/CMakeLists.txt
dependencies/metis/metis-5.1.0/libmetis/CMakeLists.txt
dependencies/metis/metis-5.1.0/programs/CMakeLists.txt