-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
74 lines (63 loc) · 1.27 KB
/
Copy path.gitignore
File metadata and controls
74 lines (63 loc) · 1.27 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
74
# Python
__pycache__/
*.py[cod]
*.so
*.egg-info/
dist/
build/
.eggs/
*.pyd
# Environment
.env
.venv/
venv/
env/
# Secrets
*.key
anthropic_key.txt
# Results (keep structure, ignore large files)
experiments/*/evolution_runs/*/
experiments/*/runs/
!experiments/*/evolution_runs/.gitkeep
autoresearch/runs/
# Large benchmark files (download separately)
benchmarks/ispd2015/
benchmarks/ispd2019/
benchmarks/iccad2015/
benchmarks/nangate45/
# Per-circuit benchmark data (LEF/DEF/netlist) is too large to commit;
# the per-circuit DREAMPlace .json configs ARE committed.
benchmarks/**/*.lef
benchmarks/**/*.def
benchmarks/**/*.v
benchmarks/**/*.constraints
benchmarks/**/*.lib
benchmarks/**/*.sdc
!benchmarks/README.md
# DreamPlace build artifacts (submodule, but not build outputs)
vendor/dreamplace/*.egg-info/
vendor/dreamplace/build/
vendor/dreamplace/**/*.so
vendor/dreamplace/**/*.o
# Model checkpoints (too large for git)
models/checkpoints/
*.pt
*.pth
!models/README.md
# Jupyter
.ipynb_checkpoints/
*.ipynb
# IDE
.vscode/
.idea/
*.swp
# OS
.DS_Store
Thumbs.db
# Graphs (generated, not source)
graphs/**/*.png
graphs/**/*.pdf
!graphs/README.md
# Full raw evolution/placement logs are too large to commit; keep filtered *.summary.log instead
experiments/**/run.log
experiments/*/spark_run.log