-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy path.gitignore
More file actions
73 lines (61 loc) · 1.22 KB
/
.gitignore
File metadata and controls
73 lines (61 loc) · 1.22 KB
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
## A common gitignore file
## The private files that shouldn't be tracked can be put in:
## .git/info/exclude
## Common
__pycache__
*.py[cod]
*$py.class
*.a
*.o
*.so
*.dylib
.cache
.vscode
*.swp
*.pytest_cache
*.manifest
*.spec
.nfs*
.clangd
build
dist
html
*.egg-info
# Ignore _skbuild directory
_skbuild/
## Python build directories & artifacts
python/**/*.cpp
# profiler reports
*.qdrep
*.ncu-rep
*.nsys-rep
# datasets
datasets/**
!datasets/ref
!datasets/get_test_data.sh
!datasets/distance_engine
!datasets/sat/get_test_data.sh
## Doxygen
cpp/doxygen/html
cpp/doxygen/xml
# Jupyter Notebooks
.ipynb_checkpoints
# Managed Service Cache
token_cache.json
version_cache.json
# Clang compilation database
compile_commands.json
# Local Server Error Log
error_log.txt
# docs
docs/cuopt/source/cuopt-c/lp-milp/cuopt-cli-help.txt
docs/cuopt/source/cuopt-server/client-api/sh-cli-help.txt
docs/cuopt/source/cuopt-server/server-api/server-cli-help.txt
docs/cuopt/source/cuopt-cli/cuopt-cli-help.txt
docs/cuopt/source/cuopt_spec.yaml
python/cuopt_self_hosted/cuopt_sh_client/tests/utils/certs/*.key
docs/cuopt/build
# generated version file
cpp/include/cuopt/semantic_version.hpp
!datasets/quadratic_programming
!datasets/quadratic_programming/**