-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (50 loc) · 1.31 KB
/
Copy path.gitignore
File metadata and controls
60 lines (50 loc) · 1.31 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
# Build artifacts
/bin/
*.exe
*.test
*.out
*.o
# Coverage and profiling
coverage.out
coverage.txt
*.cov
*.prof
*.pprof
# Local design and planning notes are not part of the published repo.
/docs/
# C dump harness (arrives in Phase 0b): binary and scratch fixture output.
# Committed fixtures live under internal/*/testdata/ and are never ignored.
tools/cdump/cdump
tools/cdump/*.f32
tools/cdump/*.f64
tools/gentables/gentables
# Decoder reconstruction oracle harness (Phase D2): binary only; the cdec2.c
# source is committed and the fixtures live under internal/dec/testdata/.
tools/cdec2/cdec2
# Editor and OS noise
.DS_Store
*.swp
.idea/
.vscode/
.serena/
.claude/
# Local tool cache
cache/
# Local code-intelligence index
.codegraph/
# quant fixture harness binary (source and committed fixtures are tracked).
tools/cquant/cquant
# psy model fixture harness (arrives in Phase 2): binaries and scratch
# output; committed fixtures live under internal/psy/testdata/.
tools/cpsy/cpsy
tools/cpsy/cpsy_neuter
tools/cnmr/cnmr
tools/cnmr/cnmrtrace
tools/ctns/ctns
tools/ctwoloop/ctwoloop
tools/corder/corder
# wav2aac benchmark CLI. `go build ./tools/wav2aac` writes the binary to the
# CWD, not the package dir, so the repo root needs covering too; a stray 2.9 MB
# ELF reached main this way once already.
/wav2aac
tools/wav2aac/wav2aac