-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (50 loc) · 804 Bytes
/
.gitignore
File metadata and controls
60 lines (50 loc) · 804 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
# OS metadata
.DS_Store
Thumbs.db
# editor / IDE
.vscode/
.idea/
*.swp
*.swo
*~
# backup files
*.bak
# build artifacts
*.o
*.d
*.bin
*.elf
*.list
*.a
objs/
# Python
__pycache__/
*.pyc
*.pyo
# model weights
weights/
*.model
# host build artifacts
dev/host/generate
dev/host/test_forward
dev/host/test_stage_forward
dev/host/test_tokenizer
dev/host/test_generate_host
dev/host/test_sampler
dev/host/test_train
dev/host/test_train_interactive
dev/host/test_train_forward
dev/host/test_train_profiled
dev/host/test_stage_train
dev/host/test_stage_train_4pi
dev/host/expected.txt
# example logs (overwritten each run)
examples/logs/*
!examples/logs/.gitkeep
# trace runs (keep viewer.html and .gitkeep)
traces/runs/*
!traces/runs/.gitkeep
# blog (private drafts/writeups)
.blog/
# temp files
_temp/*