-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
92 lines (81 loc) · 1011 Bytes
/
.gitignore
File metadata and controls
92 lines (81 loc) · 1011 Bytes
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
# OS / editor
.DS_Store
Thumbs.db
*~
*.swp
*.swo
.vscode/
.idea/
# Logs / temp
*.log
*.tmp
*.temp
*.jou
*.backup
*.backup.jou
*.backup.log
.run_counter
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.venv/
venv/
env/
*.egg-info/
build/
dist/
# Build artifacts
*.o
*.a
*.so
*.elf
*.bin
*.exe
*.hex
*.data
# Memory initialization files
barebones_tb/*.mem
fpga_top/*.mem
riscv-dv/**/*.mem
# Executables
inference_light_test
inference_ligth_test
# Verilator / simulation
obj_dir/
**/obj_dir/
*.vcd
*.fst
*.wlf
transcript
# Run outputs
out_*/
**/out_*/
*.csv
trace.log
simulation.log
instruction.data
final.bin
final.data
# riscv-dv generated outputs
riscv-dv/docs/build/
riscv-dv/euvm/build/
riscv-dv/**/dsim/
riscv-dv/**/debug/
riscv-dv/**/obj/
riscv-dv/**/sfe/
riscv-dv/**/sir/
# Optional: generated local program artifacts
barebones_tb/*.elf
barebones_tb/*.bin
barebones_tb/*.data
fpga_top/*.elf
fpga_top/*.bin
fpga_top/*.data
# Vivado local/generated state
.Xil/
**/.Xil/
.cache/