-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
52 lines (34 loc) · 886 Bytes
/
Makefile
File metadata and controls
52 lines (34 loc) · 886 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
RUNNER ?= uv run
.PHONY: all incremental text 01 02 03 04 05 06 07 08 09 10 11 12 13 14
all: text 01 02 03 04 05 06 07 08 09 10 11 12 13 14
incremental: text 05 06 07 08 09 10 11 12 13 14
text:
$(RUNNER) get_text.py
01:
$(RUNNER) 01-naive-bpe/main.py
02:
$(RUNNER) 02-type-frequency/main.py
03:
$(RUNNER) 03-stream-type-counting/main.py
04:
$(RUNNER) 04-regex-streaming/main.py
05:
$(RUNNER) 05-incremental-updates/main.py
06:
$(RUNNER) 06-index-pairs/main.py
07:
$(RUNNER) 07-memory-lean-representations/main.py
08:
$(RUNNER) 08-windowed-pair-updates/main.py
09:
$(RUNNER) 09-lazy-index-compaction/main.py
10:
$(RUNNER) 10-heap-pair-selection/main.py
11:
$(RUNNER) 11-sequence-storage-optimization/main.py
12:
$(RUNNER) 12-batch-delta-application/main.py
13:
$(RUNNER) 13-adaptive-compaction-policy/main.py
14:
$(RUNNER) 14-structure-of-arrays/main.py