File: control

package info (click to toggle)
pytorch 2.9.1%2Bdfsg-1~exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 180,096 kB
  • sloc: python: 1,473,255; cpp: 942,030; ansic: 79,796; asm: 7,754; javascript: 2,502; java: 1,962; sh: 1,809; makefile: 628; xml: 8
file content (704 lines) | stat: -rw-r--r-- 26,723 bytes parent folder | download
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
# Sanity test of python package
Test-Command: cd test/ ; python3 -c "import sys, torch as th; print(sys.version, th.__path__, th.__version__)"
Depends: python3-torch,
Restrictions: allow-stderr
Features: test-name=py_import_and_version

Test-Command: cd debian/tests ; python3 blas.py
Depends: python3-torch, libopenblas0
Restrictions: allow-stderr
Features: test-name=py_blas_openblas

Test-Command: cd debian/tests ; python3 blas.py
Depends: dpkg-dev, python3-torch, libblis4
Restrictions: allow-stderr
Features: test-name=py_blas_blis

Test-Command: cd debian/tests ; python3 sequential.py
Depends: python3-torch,
Restrictions: allow-stderr
Features: test-name=py_sequential

# Check dangling symbol links
#Test-Command: cd debian/tests ; export TH_PATH="$(python3 -c 'import torch; print(torch.__path__[0])')"; test -z "$(find ${TH_PATH}/lib -xtype l)"
#Depends: python3-torch,
#Restrictions: allow-stderr
#Features: test-name=py_torch_no_dangling_symlink

# We are only printing those for package maintainers. The find command may fail due to a dangling symlink from other packages.
Test-Command: cd debian/tests ; find /usr -xtype l -print || true
Depends: @
Restrictions: allow-stderr
Features: test-name=show_dangling_symlink_if_any

# Real functionality test
# We exclude s390x because the training data bytes are little-endian.
Test-Command: sh debian/tests/train-mnist.sh
Depends: @, python3-torchvision, dataset-fashion-mnist, libopenblas0
Restrictions: allow-stderr
Features: test-name=real_train_mnist
Architecture: !s390x

# Generating Autopkgtest Test Cases for the C++ Testing Programs
# Found 110 tests
#
# C++ test 1/110
Test-Command: /usr/lib/libtorch-test/CppSignature_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=1_of_110__cpptest__CppSignature_test
Restrictions: allow-stderr

# C++ test 2/110
Test-Command: /usr/lib/libtorch-test/Dict_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=2_of_110__cpptest__Dict_test
Restrictions: allow-stderr

# C++ test 3/110
Test-Command: /usr/lib/libtorch-test/Dimname_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=3_of_110__cpptest__Dimname_test
Restrictions: allow-stderr

# C++ test 4/110
Test-Command: /usr/lib/libtorch-test/IListRef_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=4_of_110__cpptest__IListRef_test
Restrictions: allow-stderr

# C++ test 5/110
Test-Command: /usr/lib/libtorch-test/KernelFunction_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=5_of_110__cpptest__KernelFunction_test
Restrictions: allow-stderr

# C++ test 6/110
Test-Command: /usr/lib/libtorch-test/List_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=6_of_110__cpptest__List_test
Restrictions: allow-stderr

# C++ test 7/110
Test-Command: /usr/lib/libtorch-test/MaybeOwned_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=7_of_110__cpptest__MaybeOwned_test
Restrictions: allow-stderr

# C++ test 8/110
Test-Command: /usr/lib/libtorch-test/NamedTensor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=8_of_110__cpptest__NamedTensor_test
Restrictions: allow-stderr

# C++ test 9/110
Test-Command: /usr/lib/libtorch-test/StorageUtils_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=9_of_110__cpptest__StorageUtils_test
Restrictions: allow-stderr

# C++ test 10/110
Test-Command: /usr/lib/libtorch-test/apply_utils_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=10_of_110__cpptest__apply_utils_test
Restrictions: allow-stderr

# C++ test 11/110
Test-Command: /usr/lib/libtorch-test/atest
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=11_of_110__cpptest__atest
Restrictions: allow-stderr

# C++ test 12/110
Test-Command: /usr/lib/libtorch-test/backend_fallback_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=12_of_110__cpptest__backend_fallback_test
Restrictions: allow-stderr

# C++ test 13/110
Test-Command: /usr/lib/libtorch-test/basic
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=13_of_110__cpptest__basic
Restrictions: allow-stderr

# C++ test 14/110
Test-Command: /usr/lib/libtorch-test/broadcast_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=14_of_110__cpptest__broadcast_test
Restrictions: allow-stderr

# C++ test 15/110
Test-Command: /usr/lib/libtorch-test/c10_AllocatorConfig_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=15_of_110__cpptest__c10_AllocatorConfig_test
Restrictions: allow-stderr

# C++ test 16/110
Test-Command: /usr/lib/libtorch-test/c10_ArrayRef_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=16_of_110__cpptest__c10_ArrayRef_test
Restrictions: allow-stderr

# C++ test 17/110
Test-Command: /usr/lib/libtorch-test/c10_Bitset_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=17_of_110__cpptest__c10_Bitset_test
Restrictions: allow-stderr

# C++ test 18/110
Test-Command: /usr/lib/libtorch-test/c10_CompileTimeFunctionPointer_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=18_of_110__cpptest__c10_CompileTimeFunctionPointer_test
Restrictions: allow-stderr

# C++ test 19/110
Test-Command: /usr/lib/libtorch-test/c10_ConstexprCrc_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=19_of_110__cpptest__c10_ConstexprCrc_test
Restrictions: allow-stderr

# C++ test 20/110
Test-Command: /usr/lib/libtorch-test/c10_DeadlockDetection_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=20_of_110__cpptest__c10_DeadlockDetection_test
Restrictions: allow-stderr

# C++ test 21/110
Test-Command: /usr/lib/libtorch-test/c10_DeviceGuard_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=21_of_110__cpptest__c10_DeviceGuard_test
Restrictions: allow-stderr

# C++ test 22/110
Test-Command: /usr/lib/libtorch-test/c10_Device_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=22_of_110__cpptest__c10_Device_test
Restrictions: allow-stderr

# C++ test 23/110
Test-Command: /usr/lib/libtorch-test/c10_DispatchKeySet_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=23_of_110__cpptest__c10_DispatchKeySet_test
Restrictions: allow-stderr

# C++ test 24/110
Test-Command: /usr/lib/libtorch-test/c10_Enumerate_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=24_of_110__cpptest__c10_Enumerate_test
Restrictions: allow-stderr

# C++ test 25/110
Test-Command: /usr/lib/libtorch-test/c10_Half_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=25_of_110__cpptest__c10_Half_test
Restrictions: allow-stderr

# C++ test 26/110
Test-Command: /usr/lib/libtorch-test/c10_InlineDeviceGuard_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=26_of_110__cpptest__c10_InlineDeviceGuard_test
Restrictions: allow-stderr

# C++ test 27/110
Test-Command: /usr/lib/libtorch-test/c10_InlineStreamGuard_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=27_of_110__cpptest__c10_InlineStreamGuard_test
Restrictions: allow-stderr

# C++ test 28/110
Test-Command: /usr/lib/libtorch-test/c10_IntrusiveList_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=28_of_110__cpptest__c10_IntrusiveList_test
Restrictions: allow-stderr

# C++ test 29/110
Test-Command: /usr/lib/libtorch-test/c10_LeftRight_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=29_of_110__cpptest__c10_LeftRight_test
Restrictions: allow-stderr

# C++ test 30/110
Test-Command: /usr/lib/libtorch-test/c10_Metaprogramming_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=30_of_110__cpptest__c10_Metaprogramming_test
Restrictions: allow-stderr

# C++ test 31/110
Test-Command: /usr/lib/libtorch-test/c10_NetworkFlow_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=31_of_110__cpptest__c10_NetworkFlow_test
Restrictions: allow-stderr

# C++ test 32/110
Test-Command: /usr/lib/libtorch-test/c10_Scalar_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=32_of_110__cpptest__c10_Scalar_test
Restrictions: allow-stderr

# C++ test 33/110
Test-Command: /usr/lib/libtorch-test/c10_Semaphore_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=33_of_110__cpptest__c10_Semaphore_test
Restrictions: allow-stderr

# C++ test 34/110
Test-Command: /usr/lib/libtorch-test/c10_SizesAndStrides_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=34_of_110__cpptest__c10_SizesAndStrides_test
Restrictions: allow-stderr

# C++ test 35/110
Test-Command: /usr/lib/libtorch-test/c10_StreamGuard_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=35_of_110__cpptest__c10_StreamGuard_test
Restrictions: allow-stderr

# C++ test 36/110
Test-Command: /usr/lib/libtorch-test/c10_SymInt_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=36_of_110__cpptest__c10_SymInt_test
Restrictions: allow-stderr

# C++ test 37/110
Test-Command: /usr/lib/libtorch-test/c10_Synchronized_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=37_of_110__cpptest__c10_Synchronized_test
Restrictions: allow-stderr

# C++ test 38/110
Test-Command: /usr/lib/libtorch-test/c10_ThreadLocal_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=38_of_110__cpptest__c10_ThreadLocal_test
Restrictions: allow-stderr

# C++ test 39/110
Test-Command: /usr/lib/libtorch-test/c10_TypeIndex_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=39_of_110__cpptest__c10_TypeIndex_test
Restrictions: allow-stderr

# C++ test 40/110
Test-Command: /usr/lib/libtorch-test/c10_TypeList_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=40_of_110__cpptest__c10_TypeList_test
Restrictions: allow-stderr

# C++ test 41/110
Test-Command: /usr/lib/libtorch-test/c10_TypeTraits_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=41_of_110__cpptest__c10_TypeTraits_test
Restrictions: allow-stderr

# C++ test 42/110
Test-Command: /usr/lib/libtorch-test/c10_accumulate_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=42_of_110__cpptest__c10_accumulate_test
Restrictions: allow-stderr

# C++ test 43/110
Test-Command: /usr/lib/libtorch-test/c10_bfloat16_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=43_of_110__cpptest__c10_bfloat16_test
Restrictions: allow-stderr

# C++ test 44/110
Test-Command: /usr/lib/libtorch-test/c10_bit_cast_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=44_of_110__cpptest__c10_bit_cast_test
Restrictions: allow-stderr

# C++ test 45/110
Test-Command: /usr/lib/libtorch-test/c10_complex_math_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=45_of_110__cpptest__c10_complex_math_test
Restrictions: allow-stderr

# C++ test 46/110
Test-Command: /usr/lib/libtorch-test/c10_complex_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=46_of_110__cpptest__c10_complex_test
Restrictions: allow-stderr

# C++ test 47/110
Test-Command: /usr/lib/libtorch-test/c10_cow_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=47_of_110__cpptest__c10_cow_test
Restrictions: allow-stderr

# C++ test 48/110
Test-Command: /usr/lib/libtorch-test/c10_error_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=48_of_110__cpptest__c10_error_test
Restrictions: allow-stderr

# C++ test 49/110
Test-Command: /usr/lib/libtorch-test/c10_exception_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=49_of_110__cpptest__c10_exception_test
Restrictions: allow-stderr

# C++ test 50/110
Test-Command: /usr/lib/libtorch-test/c10_flags_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=50_of_110__cpptest__c10_flags_test
Restrictions: allow-stderr

# C++ test 51/110
Test-Command: /usr/lib/libtorch-test/c10_generic_math_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=51_of_110__cpptest__c10_generic_math_test
Restrictions: allow-stderr

# C++ test 52/110
Test-Command: /usr/lib/libtorch-test/c10_intrusive_ptr_benchmark
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=52_of_110__cpptest__c10_intrusive_ptr_benchmark
Restrictions: allow-stderr

# C++ test 53/110
Test-Command: /usr/lib/libtorch-test/c10_intrusive_ptr_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=53_of_110__cpptest__c10_intrusive_ptr_test
Restrictions: allow-stderr

# C++ test 54/110
Test-Command: /usr/lib/libtorch-test/c10_irange_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=54_of_110__cpptest__c10_irange_test
Restrictions: allow-stderr

# C++ test 55/110
Test-Command: /usr/lib/libtorch-test/c10_lazy_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=55_of_110__cpptest__c10_lazy_test
Restrictions: allow-stderr

# C++ test 56/110
Test-Command: /usr/lib/libtorch-test/c10_logging_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=56_of_110__cpptest__c10_logging_test
Restrictions: allow-stderr

# C++ test 57/110
Test-Command: /usr/lib/libtorch-test/c10_optional_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=57_of_110__cpptest__c10_optional_test
Restrictions: allow-stderr

# C++ test 58/110
Test-Command: /usr/lib/libtorch-test/c10_ordered_preserving_dict_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=58_of_110__cpptest__c10_ordered_preserving_dict_test
Restrictions: allow-stderr

# C++ test 59/110
Test-Command: /usr/lib/libtorch-test/c10_registry_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=59_of_110__cpptest__c10_registry_test
Restrictions: allow-stderr

# C++ test 60/110
Test-Command: /usr/lib/libtorch-test/c10_small_vector_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=60_of_110__cpptest__c10_small_vector_test
Restrictions: allow-stderr

# C++ test 61/110
Test-Command: /usr/lib/libtorch-test/c10_ssize_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=61_of_110__cpptest__c10_ssize_test
Restrictions: allow-stderr

# C++ test 62/110
Test-Command: /usr/lib/libtorch-test/c10_string_util_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=62_of_110__cpptest__c10_string_util_test
Restrictions: allow-stderr

# C++ test 63/110
Test-Command: /usr/lib/libtorch-test/c10_string_view_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=63_of_110__cpptest__c10_string_view_test
Restrictions: allow-stderr

# C++ test 64/110
Test-Command: /usr/lib/libtorch-test/c10_tempfile_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=64_of_110__cpptest__c10_tempfile_test
Restrictions: allow-stderr

# C++ test 65/110
Test-Command: /usr/lib/libtorch-test/c10_typeid_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=65_of_110__cpptest__c10_typeid_test
Restrictions: allow-stderr

# C++ test 66/110
Test-Command: /usr/lib/libtorch-test/cpu_allocator_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=66_of_110__cpptest__cpu_allocator_test
Restrictions: allow-stderr

# C++ test 67/110
Test-Command: /usr/lib/libtorch-test/cpu_generator_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=67_of_110__cpptest__cpu_generator_test
Restrictions: allow-stderr

# C++ test 68/110
Test-Command: /usr/lib/libtorch-test/cpu_profiling_allocator_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=68_of_110__cpptest__cpu_profiling_allocator_test
Restrictions: allow-stderr

# C++ test 69/110
Test-Command: /usr/lib/libtorch-test/cpu_rng_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=69_of_110__cpptest__cpu_rng_test
Restrictions: allow-stderr

# C++ test 70/110
Test-Command: /usr/lib/libtorch-test/dlconvertor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=70_of_110__cpptest__dlconvertor_test
Restrictions: allow-stderr

# C++ test 71/110
Test-Command: /usr/lib/libtorch-test/extension_backend_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=71_of_110__cpptest__extension_backend_test
Restrictions: allow-stderr

# C++ test 72/110
Test-Command: /usr/lib/libtorch-test/half_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=72_of_110__cpptest__half_test
Restrictions: allow-stderr

# C++ test 73/110
Test-Command: /usr/lib/libtorch-test/inline_container_test || true
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=73_of_110__cpptest__inline_container_test
Restrictions: allow-stderr

# C++ test 74/110
Test-Command: /usr/lib/libtorch-test/ivalue_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=74_of_110__cpptest__ivalue_test
Restrictions: allow-stderr

# C++ test 75/110
Test-Command: /usr/lib/libtorch-test/kernel_function_legacy_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=75_of_110__cpptest__kernel_function_legacy_test
Restrictions: allow-stderr

# C++ test 76/110
Test-Command: /usr/lib/libtorch-test/kernel_function_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=76_of_110__cpptest__kernel_function_test
Restrictions: allow-stderr

# C++ test 77/110
Test-Command: /usr/lib/libtorch-test/kernel_lambda_legacy_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=77_of_110__cpptest__kernel_lambda_legacy_test
Restrictions: allow-stderr

# C++ test 78/110
Test-Command: /usr/lib/libtorch-test/kernel_lambda_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=78_of_110__cpptest__kernel_lambda_test
Restrictions: allow-stderr

# C++ test 79/110
Test-Command: /usr/lib/libtorch-test/kernel_stackbased_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=79_of_110__cpptest__kernel_stackbased_test
Restrictions: allow-stderr

# C++ test 80/110
Test-Command: /usr/lib/libtorch-test/lazy_tensor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=80_of_110__cpptest__lazy_tensor_test
Restrictions: allow-stderr

# C++ test 81/110
Test-Command: /usr/lib/libtorch-test/legacy_vmap_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=81_of_110__cpptest__legacy_vmap_test
Restrictions: allow-stderr

# C++ test 82/110
Test-Command: /usr/lib/libtorch-test/make_boxed_from_unboxed_functor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=82_of_110__cpptest__make_boxed_from_unboxed_functor_test
Restrictions: allow-stderr

# C++ test 83/110
Test-Command: /usr/lib/libtorch-test/math_kernel_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=83_of_110__cpptest__math_kernel_test
Restrictions: allow-stderr

# C++ test 84/110
Test-Command: /usr/lib/libtorch-test/memory_format_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=84_of_110__cpptest__memory_format_test
Restrictions: allow-stderr

# C++ test 85/110
Test-Command: /usr/lib/libtorch-test/memory_overlapping_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=85_of_110__cpptest__memory_overlapping_test
Restrictions: allow-stderr

# C++ test 86/110
Test-Command: /usr/lib/libtorch-test/mobile_memory_cleanup
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=86_of_110__cpptest__mobile_memory_cleanup
Restrictions: allow-stderr

# C++ test 87/110
Test-Command: /usr/lib/libtorch-test/native_test || true
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=87_of_110__cpptest__native_test
Restrictions: allow-stderr

# C++ test 88/110
Test-Command: /usr/lib/libtorch-test/op_allowlist_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=88_of_110__cpptest__op_allowlist_test
Restrictions: allow-stderr

# C++ test 89/110
Test-Command: /usr/lib/libtorch-test/op_registration_test || true
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=89_of_110__cpptest__op_registration_test
Restrictions: allow-stderr

# C++ test 90/110
Test-Command: /usr/lib/libtorch-test/operator_name_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=90_of_110__cpptest__operator_name_test
Restrictions: allow-stderr

# C++ test 91/110
Test-Command: /usr/lib/libtorch-test/operators_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=91_of_110__cpptest__operators_test
Restrictions: allow-stderr

# C++ test 92/110
Test-Command: /usr/lib/libtorch-test/packedtensoraccessor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=92_of_110__cpptest__packedtensoraccessor_test
Restrictions: allow-stderr

# C++ test 93/110
Test-Command: /usr/lib/libtorch-test/pow_test || true
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=93_of_110__cpptest__pow_test
Restrictions: allow-stderr

# C++ test 94/110
Test-Command: /usr/lib/libtorch-test/quantized_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=94_of_110__cpptest__quantized_test
Restrictions: allow-stderr

# C++ test 95/110
Test-Command: /usr/lib/libtorch-test/reduce_ops_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=95_of_110__cpptest__reduce_ops_test
Restrictions: allow-stderr

# C++ test 96/110
Test-Command: /usr/lib/libtorch-test/reportMemoryUsage_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=96_of_110__cpptest__reportMemoryUsage_test
Restrictions: allow-stderr

# C++ test 97/110
Test-Command: /usr/lib/libtorch-test/scalar_tensor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=97_of_110__cpptest__scalar_tensor_test
Restrictions: allow-stderr

# C++ test 98/110
Test-Command: /usr/lib/libtorch-test/scalar_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=98_of_110__cpptest__scalar_test
Restrictions: allow-stderr

# C++ test 99/110
Test-Command: /usr/lib/libtorch-test/stride_properties_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=99_of_110__cpptest__stride_properties_test
Restrictions: allow-stderr

# C++ test 100/110
Test-Command: /usr/lib/libtorch-test/tensor_iterator_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=100_of_110__cpptest__tensor_iterator_test
Restrictions: allow-stderr

# C++ test 101/110
Test-Command: /usr/lib/libtorch-test/test_parallel
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=101_of_110__cpptest__test_parallel
Restrictions: allow-stderr

# C++ test 102/110
Test-Command: /usr/lib/libtorch-test/thread_init_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=102_of_110__cpptest__thread_init_test
Restrictions: allow-stderr

# C++ test 103/110
Test-Command: /usr/lib/libtorch-test/type_ptr_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=103_of_110__cpptest__type_ptr_test
Restrictions: allow-stderr

# C++ test 104/110
Test-Command: /usr/lib/libtorch-test/type_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=104_of_110__cpptest__type_test
Restrictions: allow-stderr

# C++ test 105/110
Test-Command: /usr/lib/libtorch-test/undefined_tensor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=105_of_110__cpptest__undefined_tensor_test
Restrictions: allow-stderr

# C++ test 106/110
Test-Command: /usr/lib/libtorch-test/verify_api_visibility
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=106_of_110__cpptest__verify_api_visibility
Restrictions: allow-stderr

# C++ test 107/110
Test-Command: /usr/lib/libtorch-test/vulkan_api_test || true
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=107_of_110__cpptest__vulkan_api_test
Restrictions: allow-stderr

# C++ test 108/110
Test-Command: /usr/lib/libtorch-test/weakref_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=108_of_110__cpptest__weakref_test
Restrictions: allow-stderr

# C++ test 109/110
Test-Command: /usr/lib/libtorch-test/wrapdim_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=109_of_110__cpptest__wrapdim_test
Restrictions: allow-stderr

# C++ test 110/110
Test-Command: /usr/lib/libtorch-test/xla_tensor_test
Depends: build-essential, ninja-build, libtorch-dev, libtorch-test
Features: test-name=110_of_110__cpptest__xla_tensor_test
Restrictions: allow-stderr