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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
{
"cells": [
{
"cell_type": "markdown",
"id": "c45bc113",
"metadata": {},
"source": [
"# LLVM TableGen Kernel"
]
},
{
"cell_type": "markdown",
"id": "483313fc",
"metadata": {},
"source": [
"This notebook is running `llvm-tblgen`."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "e238dd42",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Foo {\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"%reset\n",
"// This is some tablegen\n",
"class Foo {}"
]
},
{
"cell_type": "markdown",
"id": "27f5aa83",
"metadata": {},
"source": [
"Errors printed to stderr are shown."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "e8b10293",
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:1: error: Unexpected token at top level\n",
"This is not tablegen.\n",
"^\n"
]
}
],
"source": [
"%reset\n",
"This is not tablegen."
]
},
{
"cell_type": "markdown",
"id": "83907141",
"metadata": {},
"source": [
"Add some classes to get some output."
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "4ca8a9cb",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Stuff {\n",
"}\n",
"------------- Defs -----------------\n",
"def thing {\t// Stuff\n",
"}\n"
]
}
],
"source": [
"%reset\n",
"class Stuff {}\n",
"def thing : Stuff {}"
]
},
{
"cell_type": "markdown",
"id": "3f29d1a0",
"metadata": {},
"source": [
"By default cells are connected. Meaning that we cache the code and magic directives from the previously run cells.\n",
"\n",
"This means that the next cell still sees the `Stuff` class."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "3a204c70",
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Stuff {\n",
"}\n",
"------------- Defs -----------------\n",
"def other_thing {\t// Stuff\n",
"}\n",
"def thing {\t// Stuff\n",
"}\n"
]
}
],
"source": [
"def other_thing : Stuff {}"
]
},
{
"cell_type": "markdown",
"id": "473b0a1c",
"metadata": {},
"source": [
"You can use the magic `%reset` to clear this cache and start fresh."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "1f674a03",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:19: error: Couldn't find class 'Stuff'\n",
"def other_thing : Stuff {}\n",
" ^\n"
]
}
],
"source": [
"%reset\n",
"def other_thing : Stuff {}"
]
},
{
"cell_type": "markdown",
"id": "8f120cee",
"metadata": {},
"source": [
"You can also configure the default reset behaviour using the `%config` magic."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "7c356853",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Thing {\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"%config cellreset on\n",
"class Thing {}"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "c5399401",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:2:13: error: Couldn't find class 'Thing'\n",
"def AThing: Thing {}\n",
" ^\n"
]
}
],
"source": [
"// The cache is reset here so this is an error.\n",
"def AThing: Thing {}"
]
},
{
"cell_type": "markdown",
"id": "53220700",
"metadata": {},
"source": [
"The default value is `off`, meaning cells are connected. If you want to override the default for one cell only, use the `%reset` or `%noreset` magic. These always override the default."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "50a865ea",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Thing {\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"class Thing {}"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "3c079649",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Thing {\n",
"}\n",
"------------- Defs -----------------\n",
"def AThing {\t// Thing\n",
"}\n"
]
}
],
"source": [
"%noreset\n",
"// This works because of the noreset above.\n",
"def AThing: Thing {}"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "75f3c51c",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:2:19: error: Couldn't find class 'Thing'\n",
"def AnotherThing: Thing {}\n",
" ^\n"
]
}
],
"source": [
"// This does not because we're not changing the default.\n",
"def AnotherThing: Thing {}"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "9abe502e",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"%config cellreset off\n",
"%reset\n",
"// Here we have an empty cache and default reset behaviour."
]
},
{
"cell_type": "markdown",
"id": "0de42c3c",
"metadata": {},
"source": [
"It is not valid to have `%reset` and `%noreset` in the same cell."
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "a763daa4",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"%reset and %noreset in the same cell is not allowed. Use only one, or neither."
]
}
],
"source": [
"%reset\n",
"%noreset"
]
},
{
"cell_type": "markdown",
"id": "f6d4613b",
"metadata": {},
"source": [
"Consider setting `cellreset` to the majority usecase for your notebook. For example a tutorial building a large example across many cells will likely want it `off`. One with many standalone examples, `on`.\n",
"\n",
"There is a \"magic\" directive `%args` that you can use to send command line arguments to `llvm-tblgen`.\n",
"\n",
"For example, here we have some code that shows a warning."
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "2586893b",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:25: warning: unused template argument: Thing:B\n",
"class Thing <int A, int B> {\n",
" ^\n"
]
}
],
"source": [
"%reset\n",
"class Thing <int A, int B> {\n",
" int num = A;\n",
"}"
]
},
{
"cell_type": "markdown",
"id": "41be44e7",
"metadata": {},
"source": [
"We can pass an argument to ignore that warning."
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "ae078bc4",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Thing<int Thing:A = ?, int Thing:B = ?> {\n",
" int num = Thing:A;\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"%args --no-warn-on-unused-template-args"
]
},
{
"cell_type": "markdown",
"id": "316b9543",
"metadata": {},
"source": [
"If you have a run of cells without a `%reset`, the most recent `%args` is used."
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "9634170c",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Thing<int Thing:A = ?, int Thing:B = ?> {\n",
" int num = Thing:A;\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"// This passes --no-warn-on-unused-template-args"
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "fa15b542",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:25: warning: unused template argument: Thing:B\n",
"class Thing <int A, int B> {\n",
" ^\n"
]
}
],
"source": [
"%args\n",
"// Now we're not passing the argument so the warning comes back."
]
},
{
"cell_type": "markdown",
"id": "e112f1d4",
"metadata": {},
"source": [
"If there are many `%args` in a cell, the last one is used."
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "2ac46c7a",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:18: warning: unused template argument: Thing:A\n",
"class Thing <int A, int B> {}\n",
" ^\n",
"<stdin>:1:25: warning: unused template argument: Thing:B\n",
"class Thing <int A, int B> {}\n",
" ^\n"
]
}
],
"source": [
"%reset\n",
"%args --no-warn-on-unused-template-args\n",
"%args\n",
"class Thing <int A, int B> {}"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "LLVM TableGen",
"language": "tablegen",
"name": "tablegen"
},
"language_info": {
"file_extension": ".td",
"mimetype": "text/x-tablegen",
"name": "tablegen",
"pygments_lexer": "text"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
|