-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.gitignore
More file actions
133 lines (121 loc) · 2.96 KB
/
Copy path.gitignore
File metadata and controls
133 lines (121 loc) · 2.96 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Swift / SPM
.build/
.swiftpm/
Package.resolved
*.xcodeproj
*.xcworkspace
DerivedData/
xcuserdata/
# macOS
.DS_Store
._*
# IDE
*.swp
*.swo
*~
.vscode/
.idea/
# Claude Code local settings
.claude/
# Git worktrees
.worktrees/
autoresearch-master/
autoresearch-results.tsv
# Large model weights (>10MB binaries)
# Golden test fixtures are tracked; add entries here for actual model weights
*.gguf
*.safetensors
# Benchmark outputs (latest.json is tracked; per-run dumps are not)
benchmarks/results/*
!benchmarks/results/latest.json
benchmarks/models/*.mlpackage
# Generated artifacts (bench logs, history) and Python caches
artifacts/*
!artifacts/benchmarks/
artifacts/benchmarks/*
**/__pycache__/
*.pyc
.codex/skills/**/__pycache__/
# Local macOS benchmark app source (kept local for now)
Sources/EspressoBenchApp/
Tests/EspressoBenchAppTests/
scripts/package_espresso_bench_app.sh
# Internal planning / go-to-market artifacts stay local
agents/
marketing/
tasks/
phase3*-corrected
CLAUDE_QWEN_ANE_RUNTIME_EXECUTION_PROMPT.md
QWEN_ANE_SERVING_AGENT_EXECUTION_SPEC.md
# Development / internal documentation
docs/
!docs/
docs/*
!docs/benchmarks.md
!docs/index.html
!docs/blog.html
!docs/coreml-vs-espresso-benchmarks.html
!docs/gpt2-926-tokens-per-second.html
!docs/reverse-engineering-apple-neural-engine.html
!docs/qwen-parity.md
!docs/qwen-parity-layers.md
!docs/qwen-logit-parity.json
!docs/qwen15b-parity.md
!docs/qwen15b-parity-layers.md
!docs/qwen15b-logit-parity.json
!docs/qwen15b-layer-parity.json
!docs/qwen15b-chat-name-recall.txt
prompts/
scripts/
!scripts/
scripts/*
scripts/internal/
scripts/internal/**
!scripts/ensure_coreml_model.sh
!scripts/generate_coreml_model.py
!scripts/reproduce_local_real_artifact_claim.sh
!scripts/run_power_benchmark.sh
!scripts/assert_readme_claims.py
!scripts/benchmark-prompts.txt
!scripts/generate-benchmark-dashboard.sh
!scripts/stories_model_identity.py
!scripts/espresso_llama_weights.py
!scripts/export_llama_coreml.py
!scripts/convert_weights_gpt2.py
!scripts/convert_weights_llama.py
!scripts/convert_qwen25_05b_to_esp.py
!scripts/qwen25_pytorch_reference.py
!scripts/chat_plain_name_recall.py
!scripts/mlx_qwen_stream.py
!scripts/chat_vs_mlx_four_turn.py
!scripts/qwen25_prompts.txt
!scripts/bootstrap_gpt2_demo.py
!scripts/export_gpt2_coreml.py
!scripts/run_gpt2_coreml_reference.py
!scripts/assert_demo_helpers.py
!scripts/stories_prompt_suite.txt
!scripts/tests/
!scripts/tests/test_stories_model_identity.py
!scripts/tests/test_espresso_llama_weights.py
!scripts/tests/test_gpt2_demo_helpers.py
!scripts/tests/test_qwen25_convert.py
!scripts/tests/test_qwen25_reference.py
!scripts/tests/test_chat_plain_smoke.py
!scripts/tests/test_chat_vs_mlx_four_turn.py
!scripts/README.md
tasks/
AGENTS.md
CLAUDE.md
# Internal development directories
archive/
autoresearch-master/
agents/
marketing/
phase3b-corrected
CLAUDE_QWEN_ANE_RUNTIME_EXECUTION_PROMPT.md
QWEN_ANE_SERVING_AGENT_EXECUTION_SPEC.md
results/
training/
# Tooling version pins
.swift-version
_reference/