-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
157 lines (145 loc) · 4.24 KB
/
Copy path.gitignore
File metadata and controls
157 lines (145 loc) · 4.24 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
.venv/
venv/
env/
__pycache__/
*.pyc
*.egg-info/
tmp/
python
setup_cython.py
spec_tracking.md
SECURITY.md
# IDE
.vscode/
.idea/
# Claude
.claude/
# Results
# Keep the final PR80 Exact benchmark source available to the PR76 dashboard
# pipeline while continuing to ignore ad-hoc result artifacts.
results/
!results/
results/*
!results/benchmark_frontend_sources/
results/benchmark_frontend_sources/*
!results/benchmark_frontend_sources/coxph_exact_pr80_20260726.json
!results/benchmark_frontend_sources/coxph_exact_strata_pr80_20260726.json
!results/benchmark_frontend_sources/coxph_exact_delayed_entry_strata_pr80_20260727.json
!results/benchmark_frontend_sources/coxph_exact_strata_count_pr80_20260727.json
!results/benchmark_frontend_sources/penalized_cox_trusted_gradient_pr80_20260727.json
# Dev tooling (benchmarks, scripts, plans, docs — not production code)
dev/benchmarks/
# Keep the PR79 evidence pipeline and its reviewed manifest versioned while
# continuing to ignore ad-hoc benchmark artifacts elsewhere.
!dev/benchmarks/
dev/benchmarks/*
!dev/benchmarks/benchmark_exact_ties_scaling.py
!dev/benchmarks/benchmark_exact_strata_count_scaling.py
!dev/benchmarks/benchmark_penalized_cox_trusted_gradient.py
!dev/benchmarks/pr79/
dev/benchmarks/pr79/*
!dev/benchmarks/pr79/aggregate_results.py
!dev/benchmarks/pr79/configs/
dev/benchmarks/pr79/configs/*
!dev/benchmarks/pr79/configs/expected_accuracy_manifest.json
dev/scripts/
dev/docs/
dev/plans/
dev/design/
# Debug / scratch files in tests (keep only the formal test suite)
dev/tests/_*/
dev/tests/_bench_*.py
dev/tests/bench_*.py
!dev/tests/_bench_report_parser.py
dev/tests/_bench_*.txt
!dev/tests/_bench_full_matrix_output_section_A.txt
!dev/tests/_bench_realdata_*.py
dev/tests/*_runner.py
dev/tests/*_remote*.py
dev/tests/upload_*.py
dev/tests/deploy_*.py
dev/tests/sync_*.py
dev/tests/check_remote*.py
dev/tests/run_remote*.py
dev/tests/run_*.py
dev/tests/run_*.sh
dev/tests/*benchmark*.py
!dev/tests/benchmark_glm_penalty_external_small.py
dev/tests/*benchmark*.txt
dev/tests/analyze_*.py
dev/tests/compare_*.py
dev/tests/profile_*.py
!dev/tests/profile_cv_hotspots.py
dev/tests/l2_diagnosis*.py
dev/tests/detailed_comparison*.py
dev/tests/comprehensive_benchmark*.py
dev/tests/display_full_benchmark.py
dev/tests/download_benchmark_results.py
dev/tests/test_backend_comparison.py
dev/tests/test_benchmark*.py
dev/tests/test_cupy_*.py
!dev/tests/test_cupy_cumop_contiguous.py
dev/tests/test_coxph_*.py
dev/tests/test_elasticnet_cv_runner.py
dev/tests/test_elasticnet_cv_remote.py
dev/tests/test_elasticnet_torch_simple.py
dev/tests/test_import_check.py
dev/tests/test_lasso_cv_torch_quick.py
dev/tests/test_lassocv_inference_simple.py
dev/tests/test_logistic_cv_remote_runner.py
dev/tests/test_optimization_phases.py
dev/tests/test_penalties_phase1.py
dev/tests/test_ridge_cv_remote_runner.py
dev/tests/test_ridge_cv_sklearn_compare.py
dev/tests/test_ridge_cv_torch_backend.py
dev/tests/test_torch_*.py
dev/tests/test_v10_import_smoke.py
dev/tests/verify_*.py
dev/tests/REMOTE_GPU_TEST_GUIDE.md
dev/tests/TORCH_BACKEND_CV_TESTING.md
# Maintained pytest modules must always be visible to git. Move manual,
# remote, benchmark, or exploratory scripts to dev/manual instead.
!dev/tests/test_*.py
# Build artifacts
build/
dist/
*.egg-info/
*.pyd
*.so
# Cython generated C files
*.c
# Credentials and secrets (prevent accidental commits)
.pypirc
.env
.env.*
*.pem
*.key
*.p12
*.pfx
**/secrets.json
**/credentials.json
# Debug scripts from development sessions
dev/tests/debug_*.py
dev/tests/remote_gpu_bench.py
dev/tests/test_irls_gpu.py
dev/tests/run_remote_gpu.py
# Frontend dependencies and test artifacts
frontend/node_modules/
frontend/test-results/
frontend/playwright-report/
# Benchmark dashboard tracked implementation and canonical sources
!dev/benchmarks/
!dev/benchmarks/frontend_data/
!dev/benchmarks/frontend_data/**
!dev/benchmarks/generate_benchmark_data.py
!dev/benchmarks/benchmark_frontend_schema.json
!dev/benchmarks/frontend_sources.json
!dev/benchmarks/benchmark_source_catalog.json
!dev/tests/test_benchmark_frontend_data.py
!dev/tests/test_frontend_parsers.py
!dev/tests/fixtures/benchmark_frontend/
!dev/tests/fixtures/benchmark_frontend/**
!results/
results/*
!results/benchmark_frontend_sources/
!results/benchmark_frontend_sources/**