-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutlin.JSONL
More file actions
36 lines (36 loc) · 1017 Bytes
/
outlin.JSONL
File metadata and controls
36 lines (36 loc) · 1017 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
FuzzysTodd/
└─ Superalgos-superalgos/
├─ bootstrap/
│ ├─ bootstrap.ps1
│ ├─ repair.ps1
│ └─ env.ps1
├─ config/
│ ├─ app.config.xml
│ └─ secrets.local.xml (gitignored)
├─ provenance/
│ ├─ runs/ # JSONL logs per run
│ └─ errors/
├─ services/
│ ├─ dashboard/
│ │ ├─ app.py
│ │ ├─ requirements.txt
│ │ └─ templates/
│ │ └─ index.html
│ ├─ validator/
│ │ ├─ validate.py
│ │ ├─ cuda_kernel.cu
│ │ └─ __init__.py
│ └─ fpga/
│ ├─ handoff.py
│ └─ driver_stub.py
├─ superalgos_integration/
│ ├─ ingest.py
│ └─ emit.py
├─ scripts/
│ ├─ run_dashboard.ps1
│ ├─ run_validator.ps1
│ └─ run_all.ps1
├─ tests/
│ ├─ test_validator.py
│ └─ test_provenance.py
└─ README.md