aboutsummaryrefslogtreecommitdiff
path: root/Tasks.org
blob: b46518fde1bdcb81453b2afc2b71be21cd84036f (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
#+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

** DONE 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

*** DONE Selection process & adaptive containers

**** DONE Selection process

**** DONE Adaptive container detection

** DONE 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

**** DONE 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)

** DONE 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

**** DONE Evaluate performance

**** DONE Comment on distribution of best implementation

**** DONE Surprising ones / Explain failures

*** DONE Performance of adaptive containers

**** DONE Find where adaptive containers get suggested

**** DONE Comment on relative performance speedup

**** DONE Suggest future improvements?

** TODO Conclusion