-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
executable file
·115 lines (103 loc) · 2.47 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
# Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov
# Files generated by invoking Julia with --track-allocation
*.jl.mem
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/
notebooks/data
# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml
# Python
py_src/__pycache__/
py_src/modules/__pycache__/
my_src/utils/__pycache__/
py_src/.pytest_cache/
py_src/.venv
py_src/poetry.lock
.CondaPkg
# notebooks
notebooks/.ipynb_checkpoints/
notebooks/*.html
notebooks/*.pdf
notebooks/*.tex
# cpp + Cmake
cpp_src/build/
cpp_src/CMakeFiles/
cpp_src/CMakeCache.txt
cpp_src/cmake_install.cmake
cpp_src/Makefile
cpp_src/cmake-build-debug/
cpp_src/cmake-build-release/
cpp_src/cmake-build-relwithdebinfo/
cpp_src/cmake-build-minsize/
cpp_src/jluna/
cpp_src/PBRT
cpp_src/core
cpp_src/gmon.out
cpp_src/analysis.txt
cpp_src/llvm-project/
cpp_src/lens/build/
cpp_src/lens/CMakeFiles/
cpp_src/lens/CMakeCache.txt
cpp_src/lens/cmake_install.cmake
cpp_src/lens/Makefile
cpp_src/lens/cmake-build-debug/
cpp_src/lens/cmake-build-release/
cpp_src/lens/cmake-build-relwithdebinfo/
cpp_src/lens/cmake-build-minsize/
cpp_src/lens/jluna/
cpp_src/lens/PBRT
cpp_src/lens/core
cpp_src/lens/gmon.out
cpp_src/lens/analysis.txt
cpp_src/lens/llvm-project/
build/
# paper
paper/*.aux
paper/*.log
paper/*.out
paper/*.fdb_latexmk
paper/*.fls
paper/*.synctex.gz
paper/*.blg
paper/*.bcf
paper/*.bbl
paper/*.run.xml
paper/*.xdv
paper/proposal/*.aux
paper/proposal/*.log
paper/proposal/*.out
paper/proposal/*.fdb_latexmk
paper/proposal/*.fls
paper/proposal/*.synctex.gz
paper/proposal/*.blg
paper/proposal/*.bcf
paper/proposal/*.bbl
paper/proposal/*.run.xml
paper/proposal/*.xdv
paper/presentation/*.aux
paper/presentation/*.log
paper/presentation/*.out
paper/presentation/*.fdb_latexmk
paper/presentation/*.fls
paper/presentation/*.synctex.gz
paper/presentation/*.blg
paper/presentation/*.bcf
paper/presentation/*.bbl
paper/presentation/*.run.xml
paper/presentation/*.xdv
# misc
**/*.ppm
*.ppm