-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
88 lines (77 loc) · 930 Bytes
/
.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
# temp files
__*
!__init__.py
!__main__.py
*.list
macveth_output.c*
codelet*.c
codelet*.h
# bytecode
__pycache__/
*cpython*
*.pyc
*.o
*.a
*.optrpt
tmp/
log/
# _version.py
src/marta/_version.py
# benchmarks
examples/*/src/utilities
examples/*/utilities
examples/*/data/*.pdf
examples/*/*/data/*.pdf
examples/*/*/*/data/*.pdf
examples/*/src/marta_profiler_data
src/marta/profiler/kernels/*
examples/*/src/*
!examples/*/src/main.c
!examples/sat_packing/src/codes
# results
old_files/
results/
output/
results_*/
bin/
*.arff
*.csv
# asm
*.s
*.vec
# vscode
.vscode
# docs
_build/
_static/
_templates/
# temp files
*.swp
polybench*/
*.swo
*.tar.gz
*.log
*.txt
time_*
cyc_*
tests/Makefile
tests/MARTA.mk
tests/utilities
examples/kernels/*
# LaTeX
*.bbl
*.aux
*.blg
*.fls
*.fdb*
*.synctex*
*.out
*.pdf
*.png
# Just commit those kernels which are significant
marta/profiler/kernels/*
# Build
build/
dist/
test-codes/
*egg-info*