about summary refs log tree commit diff stats
path: root/mu.arc
Commit message (Collapse)AuthorAgeFilesLines
* 906 - arc averages 800-900 cycles per secondKartik K. Agaram2015-03-141-0/+6
| | | | No context-switching between routines, either.
* 905 - even factorial trace takes too long to parseKartik K. Agaram2015-03-141-1/+11
| | | | Parsing proceeds at 1-3 lines per *second*.
* 899 - undo 898Kartik K. Agaram2015-03-131-11/+4
|
* 898 - experiment: make memory a vectorKartik K. Agaram2015-03-131-3/+11
| | | | | | | But racket takes too long to allocate a million locations, and anything smaller is currently infeasible. Ok, forget how slow writing to memory is, and focus on the C++ version.
* 897 - trying to save a short chessboard logKartik K. Agaram2015-03-131-6/+21
| | | | But it looks like it will take 1500 minutes at 100% CPU!
* 895Kartik K. Agaram2015-03-121-0/+18
|
* 894Kartik K. Agaram2015-03-121-0/+2
|
* 893 - trying to take traces of chessboard appKartik K. Agaram2015-03-121-0/+1
|
* 892 - warning for bugs like 887Kartik K. Agaram2015-03-121-0/+25
|
* 890Kartik K. Agaram2015-03-121-1/+1
|
* 886Kartik K. Agaram2015-03-111-0/+3
| | | | Another test, but now the tests run 50% slower (8 vs 12 minutes)
* 882Kartik K. Agaram2015-03-101-0/+6
|
* 881Kartik K. Agaram2015-03-101-0/+1
|
* 879 - debug prints shouldn't mess up interactive runsKartik K. Agaram2015-03-091-13/+18
|
* 869Kartik K. Agaram2015-03-071-1/+4
| | | | | | | The repeated need for bugfixes after every new test isn't very confidence-inducing. On the other hand, I'm starting to get into a cadence where fixes have been easy to make. We'll see. Monotonic progress continues.
* 858Kartik K. Agaram2015-03-011-2/+1
| | | | | Don't warn when reusing function names in tests, instead just dump section titles in the trace to aid navigation.
* 857Kartik K. Agaram2015-03-011-23/+23
|
* 856 - stop perturbing traces on new functionsKartik K. Agaram2015-03-011-0/+24
| | | | | Still hacky, but now we can standardize the couple of different workflows we need.
* 852 - page-down stitches expanded lines properlyKartik K. Agaram2015-02-281-0/+1
|
* 850Kartik K. Agaram2015-02-271-1/+1
|
* 842Kartik K. Agaram2015-02-261-94/+91
|
* 841 - no obvious optimization targetsKartik K. Agaram2015-02-261-91/+94
| | | | | | | | | | | | | | | | | Top functions (ms and #calls): run-for-time-slice 209953 184 m 63880 99478 canonize 63568 307282 setm 44378 67281 sizeof 37786 130452 absolutize 36587 370943 addr 34567 146896 typeof 17395 63661 parse-instr 11670 99243 space 10988 561036 typeinfo 10691 563272 absolutize seems like a target.
* 831 - wire up trace browser to interactive replKartik K. Agaram2015-02-241-3/+34
|
* 830Kartik K. Agaram2015-02-241-9/+9
|
* 829 - warn if I forgot to freeze a functionKartik K. Agaram2015-02-241-4/+5
|
* 828 - interactive replKartik K. Agaram2015-02-231-8/+20
| | | | | Still klunky since mu has no notion of a return value. I find myself using $print all the time.
* 826 - augment name bindings when extending a functionKartik K. Agaram2015-02-231-3/+4
| | | | This becomes important as we get closer to a repl for mu.
* 825Kartik K. Agaram2015-02-221-0/+3
|
* 761 - now 30% faster than 758Kartik K. Agaram2015-02-161-72/+72
| | | | 4:26 compared to 6:20 on my laptop.
* 760Kartik K. Agaram2015-02-161-72/+76
| | | | This speeds up the final test but not all together.
* 759 - trace.arc.t 13% fasterKartik K. Agaram2015-02-161-7/+3
| | | | Something wrong with my profiling, though. Numbers aren't adding up.
* 758Kartik K. Agaram2015-02-161-5/+5
|
* 757 - collapse now kinda workingKartik K. Agaram2015-02-161-0/+1
| | | | | Tests are getting slow so quickly that I'm tempted to push forward the rewrite to C.
* 753Kartik K. Agaram2015-02-151-0/+2
|
* 751 - newest trace test now passingKartik K. Agaram2015-02-151-4/+3
|
* 750Kartik K. Agaram2015-02-151-11/+9
|
* 748Kartik K. Agaram2015-02-151-2/+47
|
* 744 - test cursor movement in trace browserKartik K. Agaram2015-02-111-4/+61
| | | | | | Don't prevent run-code from clobbering existing functions, but warn because it makes traces easier to read if the different sections of a test can be distinguished.
* 742 - turns out chessboard test logs were incompleteKartik K. Agaram2015-02-111-10/+19
| | | | | Now that we aren't loading system software for every test we can afford to log the loading of test functions.
* 740Kartik K. Agaram2015-02-101-3/+9
|
* 731Kartik K. Agaram2015-02-101-0/+33
|
* 730 - first test for trace browserKartik K. Agaram2015-02-101-2/+2
| | | | | This was painless compared to the chessboard app. Still need to handle input, though. Fingers crossed..
* 726Kartik K. Agaram2015-02-091-2/+2
|
* 725 - now support cursor movementKartik K. Agaram2015-02-091-0/+8
| | | | This had been on hold for some time; dependencies are crutches.
* 724 - stop using charterm for printing textKartik K. Agaram2015-02-091-19/+12
| | | | | | | We'll keep it around for keyboard input now, for the nice scancode names. Ansi escape codes from http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x361.html
* 722 - split at substring, and assorted helpersKartik K. Agaram2015-02-081-1/+50
|
* 721Kartik K. Agaram2015-02-081-6/+6
|
* 720 - substring matching and searchingKartik K. Agaram2015-02-081-5/+62
|
* 718 - disable raw memory warnings in testsKartik K. Agaram2015-02-081-8/+10
|
* 716 - warn when writing to raw memoryKartik K. Agaram2015-02-081-0/+17
|
a805949a13c28452aca90af49d'>703430787 ^
1d1752cac ^
703430787 ^
1d1752cac ^
703430787 ^

1d1752cac ^
703430787 ^

1d1752cac ^
703430787 ^

1d1752cac ^
703430787 ^
1d1752cac ^
703430787 ^

af792da0b ^
703430787 ^
703430787 ^
af792da0b ^
27dc9fcb8 ^
04300542d ^

703430787 ^
3c9e3a6a7 ^
af792da0b ^
703430787 ^
22dc76a36 ^
e817d5436 ^
703430787 ^

27dc9fcb8 ^
703430787 ^
27dc9fcb8 ^
3c9e3a6a7 ^
703430787 ^
632aece19 ^

161f6f722 ^

632aece19 ^

e817d5436 ^
632aece19 ^
9d4c4592f ^

632aece19 ^


04300542d ^

632aece19 ^








e817d5436 ^
632aece19 ^
ce5a1365c ^
9d4c4592f ^
632aece19 ^

9d4c4592f ^
632aece19 ^

e817d5436 ^
632aece19 ^


f3d530e48 ^

632aece19 ^




632aece19 ^

f3d530e48 ^
df1ec0939 ^
632aece19 ^
632aece19 ^





9d4c4592f ^
632aece19 ^


632aece19 ^
af792da0b ^
703430787 ^
af792da0b ^
703430787 ^
04300542d ^

703430787 ^
af792da0b ^
703430787 ^


1d1752cac ^
703430787 ^
e817d5436 ^

703430787 ^
3c9e3a6a7 ^
703430787 ^
e817d5436 ^
703430787 ^


3c9e3a6a7 ^
703430787 ^
3c9e3a6a7 ^

703430787 ^
af792da0b ^
703430787 ^

af792da0b ^
e817d5436 ^
04300542d ^

703430787 ^
af792da0b ^
703430787 ^


1d1752cac ^
e817d5436 ^
703430787 ^

e817d5436 ^
1d1752cac ^
703430787 ^


92b8fac94 ^
703430787 ^

e817d5436 ^
703430787 ^
e817d5436 ^
1d1752cac ^
703430787 ^

e817d5436 ^
703430787 ^


f3d530e48 ^
e817d5436 ^
703430787 ^
e817d5436 ^
df1ec0939 ^
703430787 ^

f3d530e48 ^
703430787 ^
e817d5436 ^
df1ec0939 ^
703430787 ^

e817d5436 ^
703430787 ^






e817d5436 ^
df1ec0939 ^
703430787 ^
af792da0b ^
632aece19 ^


af792da0b ^





132b6b3ef ^
cd83cc81a ^

af792da0b ^

632aece19 ^


af792da0b ^





132b6b3ef ^
cd83cc81a ^

af792da0b ^
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333