aboutsummaryrefslogtreecommitdiff
path: root/Tasks.org
blob: bc7bd596895100e1a85b2c25d903502e193f786e (plain)
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
158
159
160
161
162
163
164
165
166
167
#+TITLE: Tasks
#+TODO: TODO(t) DOING(w) | DONE(d) BLOCKED(b) CANCELED(c)
#+FILETAGS: :@school:

* Writing

** TODO Abstract

** TODO Introduction

*** DONE Introduce problem

**** DONE Container types common in programs

**** DONE Functionally identical implementations

**** DONE Large difference in performance

*** DONE Motivate w/ effectiveness claims

*** DONE Overview of aims & approach

**** DONE Scalability to larger projects

**** DONE Ease of integration into existing projects

**** DONE Ease of adding new container types

**** DONE Flexibility of selection

*** TODO Overview of results

** DONE Background

*** DONE Introduce problem

*** DONE Functional vs non-functional requirements

*** DONE Existing approaches & their shortfalls

*** DONE Lead to next chapter

** TODO Design

*** DONE Usage Example

*** DONE Primrose Integration

**** DONE Explain role in entire process

**** DONE Short explanation of selection method

**** DONE Abstraction over backend

*** DONE Building cost models

**** DONE Benchmarks

**** DONE Linear Regression

**** DONE Limitations

*** DONE Profiling applications

**** DONE Data collected

**** DONE Segmentation

**** TODO Limitations w/ pre-benchmark steps

*** DONE Selection process & adaptive containers

**** DONE Selection process

**** TODO Adaptive container detection

**** TODO Code generation

** TODO Implementation

*** DONE Modifications to Primrose

**** DONE API

**** DONE Mapping trait

**** DONE Resiliency, etc

*** DONE Cost models

**** DONE Benchmarker crate

**** DONE Code generation

**** DONE Chosen benchmarks

**** TODO Fitting

*** DONE Profiling wrapper

**** DONE Use of Drop

**** DONE Generics and stuff

*** DONE Selection / Codegen

**** DONE Selection Algorithm incl Adaptive

**** DONE Implementation w/ const generics

**** DONE Generated code (opaque types)

*** TODO Misc Concerns

**** TODO Explain cargo's role in rust projects & how it is integrated

**** TODO Caching and stuff

**** TODO Ease of use

**** TODO Integration w/ Cargo

***** TODO Metadata fetching

***** TODO Caching of build dependencies

** TODO Results & Analysis

*** DONE Testing setup, benchmarking rationale

**** DONE Specs and VM setup

**** DONE Reproducibility

*** DONE Cost model analysis

**** DONE Insertion operations

**** DONE Contains operations

**** DONE Comment on some bad/weird ones

**** DONE Conclusion

*** DONE Predictions

**** DONE Chosen benchmarks

**** DONE Effect of selection on benchmarks (spread in execution time)

**** DONE Summarise predicted versus actual

**** TODO Evaluate performance

**** TODO Comment on distribution of best implementation

**** TODO Surprising ones / Explain failures

*** TODO Performance of adaptive containers

**** TODO Find where adaptive containers get suggested

**** TODO Comment on relative performance speedup

**** TODO Suggest future improvements?

** TODO Conclusion