about summary refs log tree commit diff stats
path: root/enumerate/enumerate.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-22 19:27:14 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-22 19:32:44 -0700
commit8c19b906e316ef84149d6cec234d3a467d3a68fe (patch)
tree474aa193cea4f724842e07c46f332d4845b99957 /enumerate/enumerate.cc
parent7397dc2ad38db16c88344adc18a8b5381b9cd933 (diff)
downloadmu-8c19b906e316ef84149d6cec234d3a467d3a68fe.tar.gz
5452
Snapshot while debugging survey.subx by print.

I can see the error in 1 minute with this command:
  subx run apps/survey < a.pack
(where a.pack is obtained from `ntranslate 049*.subx 05[0-8]*.subx`)

By contrast, using the trace requires 4.5 minutes:
  subx --trace run apps/survey < a.pack
It generates a trace of 4.4GB with almost 83M lines.
The trace takes 2 minutes to load.. oops, I forgot to load labels with
`--debug`.
Diffstat (limited to 'enumerate/enumerate.cc')
0 files changed, 0 insertions, 0 deletions
itter Ben Morrison <ben@gbmor.dev> 2019-09-05 03:25:45 -0400 letting errors flow up' href='/gbmor/clinte/commit/src/posts.rs?h=v2.0.0&id=fd2f77093812a19536487bbf6928d02fb9b1f372'>fd2f770 ^
e2c857a ^




d098a93 ^


8b3c06f ^












fd2f770 ^
8b3c06f ^

fd2f770 ^
8b3c06f ^



fd2f770 ^
8b3c06f ^







c0ce5ef ^
8b3c06f ^





fd2f770 ^
8b3c06f ^

fd2f770 ^
8b3c06f ^


fd2f770 ^











39894be ^
fd2f770 ^
39894be ^















fd2f770 ^

39894be ^

8b3c06f ^
fd2f770 ^
8b3c06f ^



fd2f770 ^

8b3c06f ^



fd2f770 ^







8b3c06f ^
e2c857a ^
8b3c06f ^

fd2f770 ^
8b3c06f ^









fd2f770 ^
8b3c06f ^

fd2f770 ^
8b3c06f ^

fd2f770 ^

8b3c06f ^


fd2f770 ^
d098a93 ^













8b3c06f ^
fd2f770 ^
d098a93 ^




8b3c06f ^
fd2f770 ^
8b3c06f ^



fd2f770 ^

8b3c06f ^






fd2f770 ^

8b3c06f ^
fd2f770 ^
8b3c06f ^
e2c857a ^
8b3c06f ^


fd2f770 ^
8b3c06f ^

fd2f770 ^

8b3c06f ^

d098a93 ^



cf6e351 ^
d098a93 ^
cf0ad9b ^

d098a93 ^






8b3c06f ^
cf0ad9b ^
d098a93 ^





cf0ad9b ^
d098a93 ^



cf0ad9b ^
d098a93 ^
d098a93 ^
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