-
Notifications
You must be signed in to change notification settings - Fork 2
/
nrm_warn.json
1471 lines (1471 loc) · 113 KB
/
nrm_warn.json
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
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"phase": "N/A",
"source_file": " 865 _configtest.c",
"source_line_no": "3",
"line_no": 785,
"repeat_count": 0,
"start": 779,
"end": 792,
"text": "865 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 864 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 866 3 | #pragma clang diagnostic error \"-Wattributes\"\n 867 |\n 868 _configtest.c: In function '__declspec':\n >> 869 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": " 875 _configtest.c",
"source_line_no": "5",
"line_no": 798,
"repeat_count": 0,
"start": 792,
"end": 805,
"text": "875 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 870 5 | int __declspec(thread) foo;\n 871 | ^~~\n >> 872 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 873 9 | {\n 874 | ^",
"post_context": " implicit-int]\n 876 5 | int __declspec(thread) foo;\n 877 | ^~~~~~~~~~\n >> 878 _configtest.c:11: error: expected '{' at end of input\n 879 11 | }\n 880 |",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": " 881 _configtest.c",
"source_line_no": "1",
"line_no": 805,
"repeat_count": 0,
"start": 799,
"end": 812,
"text": "881 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 876 5 | int __declspec(thread) foo;\n 877 | ^~~~~~~~~~\n >> 878 _configtest.c:11: error: expected '{' at end of input\n 879 11 | }\n 880 |",
"post_context": " n [-Wreturn-type]\n 882 11 | }\n 883 |\n 884 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 885 3 | #pragma clang diagnostic error \"-Wattributes\"",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": " 884 _configtest.c",
"source_line_no": "3",
"line_no": 809,
"repeat_count": 0,
"start": 803,
"end": 816,
"text": "884 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " 879 11 | }\n 880 |\n 881 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 882 11 | }\n 883 |",
"post_context": " nown-pragmas]\n 885 3 | #pragma clang diagnostic error \"-Wattributes\"\n 886 |\n 887 _configtest.c: In function '__declspec':\n >> 888 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": " 894 _configtest.c",
"source_line_no": "5",
"line_no": 822,
"repeat_count": 0,
"start": 816,
"end": 829,
"text": "894 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 889 5 | int __declspec(thread) foo;\n 890 | ^~~\n >> 891 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 892 9 | {\n 893 | ^",
"post_context": " implicit-int]\n 895 5 | int __declspec(thread) foo;\n 896 | ^~~~~~~~~~\n >> 897 _configtest.c:11: error: expected '{' at end of input\n 898 11 | }\n 899 |",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": " 900 _configtest.c",
"source_line_no": "1",
"line_no": 829,
"repeat_count": 0,
"start": 823,
"end": 836,
"text": "900 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 895 5 | int __declspec(thread) foo;\n 896 | ^~~~~~~~~~\n >> 897 _configtest.c:11: error: expected '{' at end of input\n 898 11 | }\n 899 |",
"post_context": " n [-Wreturn-type]\n 901 11 | }\n 902 |\n 903 failure.\n\n ...",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": " 4085 numpy/random/mtrand/mtrand.c",
"source_line_no": "4",
"line_no": 1027,
"repeat_count": 0,
"start": 1021,
"end": 1034,
"text": "4085 numpy/random/mtrand/mtrand.c:43644:3: warning: 'tp_print' is depre",
"pre_context": " z56muf3y24twbgptm5fwkbrmdx/lib/python3.8/site-packages/setuptools/\n command/install.py:34: SetuptoolsDeprecationWarning: setup.py inst\n all is deprecated. Use build and pip and other standards-based too\n ls.\n 4083 warnings.warn(\n 4084 numpy/random/mtrand/mtrand.c: In function 'PyInit_mtrand':",
"post_context": " cated [-Wdeprecated-declarations]\n 4086 43644 | __pyx_type_6mtrand_RandomState.tp_print = 0;\n 4087 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n 4088 In file included from /p/vast1/koparasy/BUILD/spack_cluster_instal\n ler/quartz/nrm/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/pytho\n n-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/include/python3.8/object",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": " 853 _configtest.c",
"source_line_no": "3",
"line_no": 785,
"repeat_count": 0,
"start": 779,
"end": 792,
"text": "853 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 852 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 854 3 | #pragma clang diagnostic error \"-Wattributes\"\n 855 |\n 856 _configtest.c: In function '__declspec':\n >> 857 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": " 863 _configtest.c",
"source_line_no": "5",
"line_no": 798,
"repeat_count": 0,
"start": 792,
"end": 805,
"text": "863 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 858 5 | int __declspec(thread) foo;\n 859 | ^~~\n >> 860 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 861 9 | {\n 862 | ^",
"post_context": " implicit-int]\n 864 5 | int __declspec(thread) foo;\n 865 | ^~~~~~~~~~\n >> 866 _configtest.c:11: error: expected '{' at end of input\n 867 11 | }\n 868 |",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": " 869 _configtest.c",
"source_line_no": "1",
"line_no": 805,
"repeat_count": 0,
"start": 799,
"end": 812,
"text": "869 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 864 5 | int __declspec(thread) foo;\n 865 | ^~~~~~~~~~\n >> 866 _configtest.c:11: error: expected '{' at end of input\n 867 11 | }\n 868 |",
"post_context": " n [-Wreturn-type]\n 870 11 | }\n 871 |\n 872 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 873 3 | #pragma clang diagnostic error \"-Wattributes\"",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": " 872 _configtest.c",
"source_line_no": "3",
"line_no": 809,
"repeat_count": 0,
"start": 803,
"end": 816,
"text": "872 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " 867 11 | }\n 868 |\n 869 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 870 11 | }\n 871 |",
"post_context": " nown-pragmas]\n 873 3 | #pragma clang diagnostic error \"-Wattributes\"\n 874 |\n 875 _configtest.c: In function '__declspec':\n >> 876 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": " 882 _configtest.c",
"source_line_no": "5",
"line_no": 822,
"repeat_count": 0,
"start": 816,
"end": 829,
"text": "882 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 877 5 | int __declspec(thread) foo;\n 878 | ^~~\n >> 879 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 880 9 | {\n 881 | ^",
"post_context": " implicit-int]\n 883 5 | int __declspec(thread) foo;\n 884 | ^~~~~~~~~~\n >> 885 _configtest.c:11: error: expected '{' at end of input\n 886 11 | }\n 887 |",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": " 888 _configtest.c",
"source_line_no": "1",
"line_no": 829,
"repeat_count": 0,
"start": 823,
"end": 836,
"text": "888 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 883 5 | int __declspec(thread) foo;\n 884 | ^~~~~~~~~~\n >> 885 _configtest.c:11: error: expected '{' at end of input\n 886 11 | }\n 887 |",
"post_context": " n [-Wreturn-type]\n 889 11 | }\n 890 |\n 891 failure.\n\n ...",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": " 4113 numpy/random/mtrand/mtrand.c",
"source_line_no": "4",
"line_no": 1035,
"repeat_count": 0,
"start": 1029,
"end": 1042,
"text": "4113 numpy/random/mtrand/mtrand.c:42765:3: warning: 'tp_print' is depre",
"pre_context": " z56muf3y24twbgptm5fwkbrmdx/lib/python3.8/site-packages/setuptools/\n command/install.py:34: SetuptoolsDeprecationWarning: setup.py inst\n all is deprecated. Use build and pip and other standards-based too\n ls.\n 4111 warnings.warn(\n 4112 numpy/random/mtrand/mtrand.c: In function 'PyInit_mtrand':",
"post_context": " cated [-Wdeprecated-declarations]\n 4114 42765 | __pyx_type_6mtrand_RandomState.tp_print = 0;\n 4115 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n 4116 In file included from /p/vast1/koparasy/BUILD/spack_cluster_instal\n ler/quartz/nrm/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/pytho\n n-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/include/python3.8/object",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": " 765 _configtest.c",
"source_line_no": "3",
"line_no": 754,
"repeat_count": 0,
"start": 748,
"end": 761,
"text": "765 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 764 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 766 3 | #pragma clang diagnostic error \"-Wattributes\"\n 767 |\n 768 _configtest.c: In function '__declspec':\n >> 769 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "aedoudviqt6mrpunhqai5ciqhx6qkkio"
},
{
"phase": "N/A",
"source_file": " 775 _configtest.c",
"source_line_no": "5",
"line_no": 767,
"repeat_count": 0,
"start": 761,
"end": 774,
"text": "775 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 770 5 | int __declspec(thread) foo;\n 771 | ^~~\n >> 772 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 773 9 | {\n 774 | ^",
"post_context": " implicit-int]\n 776 5 | int __declspec(thread) foo;\n 777 | ^~~~~~~~~~\n >> 778 _configtest.c:11: error: expected '{' at end of input\n 779 11 | }\n 780 |",
"hash": "aedoudviqt6mrpunhqai5ciqhx6qkkio"
},
{
"phase": "N/A",
"source_file": " 781 _configtest.c",
"source_line_no": "1",
"line_no": 774,
"repeat_count": 0,
"start": 768,
"end": 781,
"text": "781 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 776 5 | int __declspec(thread) foo;\n 777 | ^~~~~~~~~~\n >> 778 _configtest.c:11: error: expected '{' at end of input\n 779 11 | }\n 780 |",
"post_context": " n [-Wreturn-type]\n 782 11 | }\n 783 |\n 784 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 785 3 | #pragma clang diagnostic error \"-Wattributes\"",
"hash": "aedoudviqt6mrpunhqai5ciqhx6qkkio"
},
{
"phase": "N/A",
"source_file": " 784 _configtest.c",
"source_line_no": "3",
"line_no": 778,
"repeat_count": 0,
"start": 772,
"end": 785,
"text": "784 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " 779 11 | }\n 780 |\n 781 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 782 11 | }\n 783 |",
"post_context": " nown-pragmas]\n 785 3 | #pragma clang diagnostic error \"-Wattributes\"\n 786 |\n 787 _configtest.c: In function '__declspec':\n >> 788 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "aedoudviqt6mrpunhqai5ciqhx6qkkio"
},
{
"phase": "N/A",
"source_file": " 794 _configtest.c",
"source_line_no": "5",
"line_no": 791,
"repeat_count": 0,
"start": 785,
"end": 798,
"text": "794 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 789 5 | int __declspec(thread) foo;\n 790 | ^~~\n >> 791 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 792 9 | {\n 793 | ^",
"post_context": " implicit-int]\n 795 5 | int __declspec(thread) foo;\n 796 | ^~~~~~~~~~\n >> 797 _configtest.c:11: error: expected '{' at end of input\n 798 11 | }\n 799 |",
"hash": "aedoudviqt6mrpunhqai5ciqhx6qkkio"
},
{
"phase": "N/A",
"source_file": " 800 _configtest.c",
"source_line_no": "1",
"line_no": 798,
"repeat_count": 0,
"start": 792,
"end": 805,
"text": "800 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 795 5 | int __declspec(thread) foo;\n 796 | ^~~~~~~~~~\n >> 797 _configtest.c:11: error: expected '{' at end of input\n 798 11 | }\n 799 |",
"post_context": " n [-Wreturn-type]\n 801 11 | }\n 802 |\n 803 failure.\n\n ...",
"hash": "aedoudviqt6mrpunhqai5ciqhx6qkkio"
},
{
"phase": "N/A",
"source_file": " 4000 numpy/random/mtrand/mtrand.c",
"source_line_no": "4",
"line_no": 1004,
"repeat_count": 0,
"start": 998,
"end": 1011,
"text": "4000 numpy/random/mtrand/mtrand.c:41024:3: warning: 'tp_print' is depre",
"pre_context": " z56muf3y24twbgptm5fwkbrmdx/lib/python3.8/site-packages/setuptools/\n command/install.py:34: SetuptoolsDeprecationWarning: setup.py inst\n all is deprecated. Use build and pip and other standards-based too\n ls.\n 3998 warnings.warn(\n 3999 numpy/random/mtrand/mtrand.c: In function 'PyInit_mtrand':",
"post_context": " cated [-Wdeprecated-declarations]\n 4001 41024 | __pyx_type_6mtrand_RandomState.tp_print = 0;\n 4002 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n 4003 In file included from /p/vast1/koparasy/BUILD/spack_cluster_instal\n ler/quartz/nrm/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/pytho\n n-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/include/python3.8/object",
"hash": "aedoudviqt6mrpunhqai5ciqhx6qkkio"
},
{
"phase": "N/A",
"source_file": " 765 _configtest.c",
"source_line_no": "3",
"line_no": 754,
"repeat_count": 0,
"start": 748,
"end": 761,
"text": "765 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 764 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 766 3 | #pragma clang diagnostic error \"-Wattributes\"\n 767 |\n 768 _configtest.c: In function '__declspec':\n >> 769 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "bg4cuw7n6puozfbtjibw7lzi5eluw674"
},
{
"phase": "N/A",
"source_file": " 775 _configtest.c",
"source_line_no": "5",
"line_no": 767,
"repeat_count": 0,
"start": 761,
"end": 774,
"text": "775 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 770 5 | int __declspec(thread) foo;\n 771 | ^~~\n >> 772 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 773 9 | {\n 774 | ^",
"post_context": " implicit-int]\n 776 5 | int __declspec(thread) foo;\n 777 | ^~~~~~~~~~\n >> 778 _configtest.c:11: error: expected '{' at end of input\n 779 11 | }\n 780 |",
"hash": "bg4cuw7n6puozfbtjibw7lzi5eluw674"
},
{
"phase": "N/A",
"source_file": " 781 _configtest.c",
"source_line_no": "1",
"line_no": 774,
"repeat_count": 0,
"start": 768,
"end": 781,
"text": "781 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 776 5 | int __declspec(thread) foo;\n 777 | ^~~~~~~~~~\n >> 778 _configtest.c:11: error: expected '{' at end of input\n 779 11 | }\n 780 |",
"post_context": " n [-Wreturn-type]\n 782 11 | }\n 783 |\n 784 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 785 3 | #pragma clang diagnostic error \"-Wattributes\"",
"hash": "bg4cuw7n6puozfbtjibw7lzi5eluw674"
},
{
"phase": "N/A",
"source_file": " 784 _configtest.c",
"source_line_no": "3",
"line_no": 778,
"repeat_count": 0,
"start": 772,
"end": 785,
"text": "784 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " 779 11 | }\n 780 |\n 781 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 782 11 | }\n 783 |",
"post_context": " nown-pragmas]\n 785 3 | #pragma clang diagnostic error \"-Wattributes\"\n 786 |\n 787 _configtest.c: In function '__declspec':\n >> 788 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "bg4cuw7n6puozfbtjibw7lzi5eluw674"
},
{
"phase": "N/A",
"source_file": " 794 _configtest.c",
"source_line_no": "5",
"line_no": 791,
"repeat_count": 0,
"start": 785,
"end": 798,
"text": "794 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 789 5 | int __declspec(thread) foo;\n 790 | ^~~\n >> 791 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 792 9 | {\n 793 | ^",
"post_context": " implicit-int]\n 795 5 | int __declspec(thread) foo;\n 796 | ^~~~~~~~~~\n >> 797 _configtest.c:11: error: expected '{' at end of input\n 798 11 | }\n 799 |",
"hash": "bg4cuw7n6puozfbtjibw7lzi5eluw674"
},
{
"phase": "N/A",
"source_file": " 800 _configtest.c",
"source_line_no": "1",
"line_no": 798,
"repeat_count": 0,
"start": 792,
"end": 805,
"text": "800 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 795 5 | int __declspec(thread) foo;\n 796 | ^~~~~~~~~~\n >> 797 _configtest.c:11: error: expected '{' at end of input\n 798 11 | }\n 799 |",
"post_context": " n [-Wreturn-type]\n 801 11 | }\n 802 |\n 803 failure.\n\n ...",
"hash": "bg4cuw7n6puozfbtjibw7lzi5eluw674"
},
{
"phase": "N/A",
"source_file": " 3995 numpy/random/mtrand/mtrand.c",
"source_line_no": "3",
"line_no": 996,
"repeat_count": 0,
"start": 990,
"end": 1003,
"text": "3995 numpy/random/mtrand/mtrand.c:37726:3: warning: 'tp_print' is depre",
"pre_context": " z56muf3y24twbgptm5fwkbrmdx/lib/python3.8/site-packages/setuptools/\n command/install.py:34: SetuptoolsDeprecationWarning: setup.py inst\n all is deprecated. Use build and pip and other standards-based too\n ls.\n 3993 warnings.warn(\n 3994 numpy/random/mtrand/mtrand.c: In function 'PyInit_mtrand':",
"post_context": " cated [-Wdeprecated-declarations]\n 3996 37726 | __pyx_type_6mtrand_RandomState.tp_print = 0;\n 3997 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n 3998 In file included from /p/vast1/koparasy/BUILD/spack_cluster_instal\n ler/quartz/nrm/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/pytho\n n-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/include/python3.8/object",
"hash": "bg4cuw7n6puozfbtjibw7lzi5eluw674"
},
{
"phase": "N/A",
"source_file": " 900 _configtest.c",
"source_line_no": "3",
"line_no": 760,
"repeat_count": 0,
"start": 754,
"end": 767,
"text": "900 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " /core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy\n /core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUILD\n /spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-broa\n dwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/inc\n lude/python3.8 -c'\n 899 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 901 3 | #pragma clang diagnostic error \"-Wattributes\"\n 902 |\n 903 _configtest.c: In function '__declspec':\n >> 904 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "bjo7jt2fgfcib6wqohhjpba76ce7etdc"
},
{
"phase": "N/A",
"source_file": " 910 _configtest.c",
"source_line_no": "5",
"line_no": 773,
"repeat_count": 0,
"start": 767,
"end": 780,
"text": "910 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 905 5 | int __declspec(thread) foo;\n 906 | ^~~\n >> 907 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 908 9 | {\n 909 | ^",
"post_context": " implicit-int]\n 911 5 | int __declspec(thread) foo;\n 912 | ^~~~~~~~~~\n >> 913 _configtest.c:11: error: expected '{' at end of input\n 914 11 | }\n 915 |",
"hash": "bjo7jt2fgfcib6wqohhjpba76ce7etdc"
},
{
"phase": "N/A",
"source_file": " 916 _configtest.c",
"source_line_no": "1",
"line_no": 780,
"repeat_count": 0,
"start": 774,
"end": 787,
"text": "916 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 911 5 | int __declspec(thread) foo;\n 912 | ^~~~~~~~~~\n >> 913 _configtest.c:11: error: expected '{' at end of input\n 914 11 | }\n 915 |",
"post_context": " n [-Wreturn-type]\n 917 11 | }\n 918 |\n 919 failure.\n\n ...",
"hash": "bjo7jt2fgfcib6wqohhjpba76ce7etdc"
},
{
"phase": "N/A",
"source_file": " 900 _configtest.c",
"source_line_no": "3",
"line_no": 760,
"repeat_count": 0,
"start": 754,
"end": 767,
"text": "900 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " /core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy\n /core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUILD\n /spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-broa\n dwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/inc\n lude/python3.8 -c'\n 899 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 901 3 | #pragma clang diagnostic error \"-Wattributes\"\n 902 |\n 903 _configtest.c: In function '__declspec':\n >> 904 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "eqzku7xpeatfunqptgowlzt6rjuxvots"
},
{
"phase": "N/A",
"source_file": " 910 _configtest.c",
"source_line_no": "5",
"line_no": 773,
"repeat_count": 0,
"start": 767,
"end": 780,
"text": "910 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 905 5 | int __declspec(thread) foo;\n 906 | ^~~\n >> 907 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 908 9 | {\n 909 | ^",
"post_context": " implicit-int]\n 911 5 | int __declspec(thread) foo;\n 912 | ^~~~~~~~~~\n >> 913 _configtest.c:11: error: expected '{' at end of input\n 914 11 | }\n 915 |",
"hash": "eqzku7xpeatfunqptgowlzt6rjuxvots"
},
{
"phase": "N/A",
"source_file": " 916 _configtest.c",
"source_line_no": "1",
"line_no": 780,
"repeat_count": 0,
"start": 774,
"end": 787,
"text": "916 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 911 5 | int __declspec(thread) foo;\n 912 | ^~~~~~~~~~\n >> 913 _configtest.c:11: error: expected '{' at end of input\n 914 11 | }\n 915 |",
"post_context": " n [-Wreturn-type]\n 917 11 | }\n 918 |\n 919 failure.\n\n ...",
"hash": "eqzku7xpeatfunqptgowlzt6rjuxvots"
},
{
"phase": "N/A",
"source_file": " 853 _configtest.c",
"source_line_no": "3",
"line_no": 785,
"repeat_count": 0,
"start": 779,
"end": 792,
"text": "853 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 852 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 854 3 | #pragma clang diagnostic error \"-Wattributes\"\n 855 |\n 856 _configtest.c: In function '__declspec':\n >> 857 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "jcyh6q5ckkpzuqpakwak3ni6bqz72jix"
},
{
"phase": "N/A",
"source_file": " 863 _configtest.c",
"source_line_no": "5",
"line_no": 798,
"repeat_count": 0,
"start": 792,
"end": 805,
"text": "863 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 858 5 | int __declspec(thread) foo;\n 859 | ^~~\n >> 860 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 861 9 | {\n 862 | ^",
"post_context": " implicit-int]\n 864 5 | int __declspec(thread) foo;\n 865 | ^~~~~~~~~~\n >> 866 _configtest.c:11: error: expected '{' at end of input\n 867 11 | }\n 868 |",
"hash": "jcyh6q5ckkpzuqpakwak3ni6bqz72jix"
},
{
"phase": "N/A",
"source_file": " 869 _configtest.c",
"source_line_no": "1",
"line_no": 805,
"repeat_count": 0,
"start": 799,
"end": 812,
"text": "869 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 864 5 | int __declspec(thread) foo;\n 865 | ^~~~~~~~~~\n >> 866 _configtest.c:11: error: expected '{' at end of input\n 867 11 | }\n 868 |",
"post_context": " n [-Wreturn-type]\n 870 11 | }\n 871 |\n 872 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 873 3 | #pragma clang diagnostic error \"-Wattributes\"",
"hash": "jcyh6q5ckkpzuqpakwak3ni6bqz72jix"
},
{
"phase": "N/A",
"source_file": " 872 _configtest.c",
"source_line_no": "3",
"line_no": 809,
"repeat_count": 0,
"start": 803,
"end": 816,
"text": "872 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " 867 11 | }\n 868 |\n 869 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 870 11 | }\n 871 |",
"post_context": " nown-pragmas]\n 873 3 | #pragma clang diagnostic error \"-Wattributes\"\n 874 |\n 875 _configtest.c: In function '__declspec':\n >> 876 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "jcyh6q5ckkpzuqpakwak3ni6bqz72jix"
},
{
"phase": "N/A",
"source_file": " 882 _configtest.c",
"source_line_no": "5",
"line_no": 822,
"repeat_count": 0,
"start": 816,
"end": 829,
"text": "882 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 877 5 | int __declspec(thread) foo;\n 878 | ^~~\n >> 879 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 880 9 | {\n 881 | ^",
"post_context": " implicit-int]\n 883 5 | int __declspec(thread) foo;\n 884 | ^~~~~~~~~~\n >> 885 _configtest.c:11: error: expected '{' at end of input\n 886 11 | }\n 887 |",
"hash": "jcyh6q5ckkpzuqpakwak3ni6bqz72jix"
},
{
"phase": "N/A",
"source_file": " 888 _configtest.c",
"source_line_no": "1",
"line_no": 829,
"repeat_count": 0,
"start": 823,
"end": 836,
"text": "888 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 883 5 | int __declspec(thread) foo;\n 884 | ^~~~~~~~~~\n >> 885 _configtest.c:11: error: expected '{' at end of input\n 886 11 | }\n 887 |",
"post_context": " n [-Wreturn-type]\n 889 11 | }\n 890 |\n 891 failure.\n\n ...",
"hash": "jcyh6q5ckkpzuqpakwak3ni6bqz72jix"
},
{
"phase": "N/A",
"source_file": " 4109 numpy/random/mtrand/mtrand.c",
"source_line_no": "4",
"line_no": 1027,
"repeat_count": 0,
"start": 1021,
"end": 1034,
"text": "4109 numpy/random/mtrand/mtrand.c:43380:3: warning: 'tp_print' is depre",
"pre_context": " z56muf3y24twbgptm5fwkbrmdx/lib/python3.8/site-packages/setuptools/\n command/install.py:34: SetuptoolsDeprecationWarning: setup.py inst\n all is deprecated. Use build and pip and other standards-based too\n ls.\n 4107 warnings.warn(\n 4108 numpy/random/mtrand/mtrand.c: In function 'PyInit_mtrand':",
"post_context": " cated [-Wdeprecated-declarations]\n 4110 43380 | __pyx_type_6mtrand_RandomState.tp_print = 0;\n 4111 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n 4112 In file included from /p/vast1/koparasy/BUILD/spack_cluster_instal\n ler/quartz/nrm/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/pytho\n n-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/include/python3.8/object",
"hash": "jcyh6q5ckkpzuqpakwak3ni6bqz72jix"
},
{
"phase": "N/A",
"source_file": " clude/numpy/__multiarray_api.h",
"source_line_no": "1",
"line_no": 971,
"repeat_count": 0,
"start": 965,
"end": 978,
"text": "clude/numpy/__multiarray_api.h:1463:1: warning: '_import_array' d",
"pre_context": " packages/numpy/core/include/numpy/arrayobject.h:4,\n 13251 from scipy/cluster/_hierarchy.c:352:\n 13252 At top level:\n 13253 /p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/nrm/spack_\n env_dir/linux-rhel7-broadwell/gcc-9.3.1/py-numpy-1.19.3-bwiwyade2\n 2xn535kblhzcxrkz2pa5b43/lib/python3.8/site-packages/numpy/core/in",
"post_context": " efined but not used [-Wunused-function]\n 13254 1463 | _import_array(void)\n 13255 | ^~~~~~~~~~~~~\n >> 13256 setup.py:104: DeprecationWarning: the imp module is deprecated in\n favour of importlib; see the module's documentation for alternat\n ive uses",
"hash": "jvkisnrq5ego4cexy3pg5cli6h3zmq2x"
},
{
"phase": "N/A",
"source_file": " 830 _configtest.c",
"source_line_no": "3",
"line_no": 786,
"repeat_count": 0,
"start": 780,
"end": 793,
"text": "830 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 829 gcc: _configtest.c",
"post_context": " nown-pragmas]\n 831 3 | #pragma clang diagnostic error \"-Wattributes\"\n 832 |\n 833 _configtest.c: In function '__declspec':\n >> 834 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "nzqv72yuhiyaqusqb4nxwxkz4lkhbcxj"
},
{
"phase": "N/A",
"source_file": " 840 _configtest.c",
"source_line_no": "5",
"line_no": 799,
"repeat_count": 0,
"start": 793,
"end": 806,
"text": "840 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 835 5 | int __declspec(thread) foo;\n 836 | ^~~\n >> 837 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 838 9 | {\n 839 | ^",
"post_context": " implicit-int]\n 841 5 | int __declspec(thread) foo;\n 842 | ^~~~~~~~~~\n >> 843 _configtest.c:11: error: expected '{' at end of input\n 844 11 | }\n 845 |",
"hash": "nzqv72yuhiyaqusqb4nxwxkz4lkhbcxj"
},
{
"phase": "N/A",
"source_file": " 846 _configtest.c",
"source_line_no": "1",
"line_no": 806,
"repeat_count": 0,
"start": 800,
"end": 813,
"text": "846 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 841 5 | int __declspec(thread) foo;\n 842 | ^~~~~~~~~~\n >> 843 _configtest.c:11: error: expected '{' at end of input\n 844 11 | }\n 845 |",
"post_context": " n [-Wreturn-type]\n 847 11 | }\n 848 |\n 849 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 850 3 | #pragma clang diagnostic error \"-Wattributes\"",
"hash": "nzqv72yuhiyaqusqb4nxwxkz4lkhbcxj"
},
{
"phase": "N/A",
"source_file": " 849 _configtest.c",
"source_line_no": "3",
"line_no": 810,
"repeat_count": 0,
"start": 804,
"end": 817,
"text": "849 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk",
"pre_context": " 844 11 | }\n 845 |\n 846 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 847 11 | }\n 848 |",
"post_context": " nown-pragmas]\n 850 3 | #pragma clang diagnostic error \"-Wattributes\"\n 851 |\n 852 _configtest.c: In function '__declspec':\n >> 853 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'",
"hash": "nzqv72yuhiyaqusqb4nxwxkz4lkhbcxj"
},
{
"phase": "N/A",
"source_file": " 859 _configtest.c",
"source_line_no": "5",
"line_no": 823,
"repeat_count": 0,
"start": 817,
"end": 830,
"text": "859 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W",
"pre_context": " 854 5 | int __declspec(thread) foo;\n 855 | ^~~\n >> 856 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 857 9 | {\n 858 | ^",
"post_context": " implicit-int]\n 860 5 | int __declspec(thread) foo;\n 861 | ^~~~~~~~~~\n >> 862 _configtest.c:11: error: expected '{' at end of input\n 863 11 | }\n 864 |",
"hash": "nzqv72yuhiyaqusqb4nxwxkz4lkhbcxj"
},
{
"phase": "N/A",
"source_file": " 865 _configtest.c",
"source_line_no": "1",
"line_no": 830,
"repeat_count": 0,
"start": 824,
"end": 837,
"text": "865 _configtest.c:11: warning: control reaches end of non-void functio",
"pre_context": " implicit-int]\n 860 5 | int __declspec(thread) foo;\n 861 | ^~~~~~~~~~\n >> 862 _configtest.c:11: error: expected '{' at end of input\n 863 11 | }\n 864 |",
"post_context": " n [-Wreturn-type]\n 866 11 | }\n 867 |\n 868 failure.\n\n ...",
"hash": "nzqv72yuhiyaqusqb4nxwxkz4lkhbcxj"
},
{
"phase": "N/A",
"source_file": " 4058 numpy/random/mtrand/mtrand.c",
"source_line_no": "4",
"line_no": 1036,
"repeat_count": 0,
"start": 1030,
"end": 1043,
"text": "4058 numpy/random/mtrand/mtrand.c:42495:3: warning: 'tp_print' is depre",
"pre_context": " z56muf3y24twbgptm5fwkbrmdx/lib/python3.8/site-packages/setuptools/\n command/install.py:34: SetuptoolsDeprecationWarning: setup.py inst\n all is deprecated. Use build and pip and other standards-based too\n ls.\n 4056 warnings.warn(\n 4057 numpy/random/mtrand/mtrand.c: In function 'PyInit_mtrand':",
"post_context": " cated [-Wdeprecated-declarations]\n 4059 42495 | __pyx_type_6mtrand_RandomState.tp_print = 0;\n 4060 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n 4061 In file included from /p/vast1/koparasy/BUILD/spack_cluster_instal\n ler/quartz/nrm/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/pytho\n n-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/include/python3.8/object",
"hash": "nzqv72yuhiyaqusqb4nxwxkz4lkhbcxj"
},
{
"phase": "N/A",
"source_file": " clude/numpy/__multiarray_api.h",
"source_line_no": "1",
"line_no": 968,
"repeat_count": 0,
"start": 962,
"end": 975,
"text": "clude/numpy/__multiarray_api.h:1464:1: warning: '_import_array' d",
"pre_context": " packages/numpy/core/include/numpy/arrayobject.h:4,\n 13484 from scipy/cluster/_hierarchy.c:352:\n 13485 At top level:\n 13486 /p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/nrm/spack_\n env_dir/linux-rhel7-broadwell/gcc-9.3.1/py-numpy-1.21.5-frhumhoqr\n l6z3n6owoi5w47pht2qxoqk/lib/python3.8/site-packages/numpy/core/in",
"post_context": " efined but not used [-Wunused-function]\n 13487 1464 | _import_array(void)\n 13488 | ^~~~~~~~~~~~~\n >> 13489 setup.py:104: DeprecationWarning: the imp module is deprecated in\n favour of importlib; see the module's documentation for alternat\n ive uses",
"hash": "sxj4yl5pzs5kdc7vuhggzbfdt526gil3"
},
{
"phase": "N/A",
"source_file": " 196 _configtest.c",
"source_line_no": "5",
"line_no": 697,
"repeat_count": 0,
"start": 691,
"end": 704,
"text": "196 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 191 gcc: _configtest.c\n 192 _configtest.c: In function 'main':\n >> 193 _configtest.c:5:16: error: size of array 'test_array' is negative\n 194 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 4)];\n 195 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 197 _configtest.c: In function 'main':\n >> 198 _configtest.c:5:16: error: size of array 'test_array' is negative\n 199 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 4)];\n 200 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 201 _configtest.c",
"source_line_no": "5",
"line_no": 704,
"repeat_count": 0,
"start": 698,
"end": 711,
"text": "201 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 197 _configtest.c: In function 'main':\n >> 198 _configtest.c:5:16: error: size of array 'test_array' is negative\n 199 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 4)];\n 200 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 202 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 203\n 204 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 210 _configtest.c",
"source_line_no": "5",
"line_no": 722,
"repeat_count": 0,
"start": 716,
"end": 729,
"text": "210 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 205 gcc: _configtest.c\n 206 _configtest.c: In function 'main':\n >> 207 _configtest.c:5:16: error: size of array 'test_array' is negative\n 208 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 4)];\n 209 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 211 _configtest.c: In function 'main':\n >> 212 _configtest.c:5:16: error: size of array 'test_array' is negative\n 213 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 4)];\n 214 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 215 _configtest.c",
"source_line_no": "5",
"line_no": 729,
"repeat_count": 0,
"start": 723,
"end": 736,
"text": "215 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 211 _configtest.c: In function 'main':\n >> 212 _configtest.c:5:16: error: size of array 'test_array' is negative\n 213 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 4)];\n 214 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 216 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 217\n 218 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 224 _configtest.c",
"source_line_no": "5",
"line_no": 747,
"repeat_count": 0,
"start": 741,
"end": 754,
"text": "224 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 219 gcc: _configtest.c\n 220 _configtest.c: In function 'main':\n >> 221 _configtest.c:5:16: error: size of array 'test_array' is negative\n 222 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 0)];\n 223 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 225 _configtest.c: In function 'main':\n >> 226 _configtest.c:5:16: error: size of array 'test_array' is negative\n 227 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 0)];\n 228 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 229 _configtest.c",
"source_line_no": "5",
"line_no": 754,
"repeat_count": 0,
"start": 748,
"end": 761,
"text": "229 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 225 _configtest.c: In function 'main':\n >> 226 _configtest.c:5:16: error: size of array 'test_array' is negative\n 227 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 0)];\n 228 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 230 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 231\n 232 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 238 _configtest.c",
"source_line_no": "5",
"line_no": 772,
"repeat_count": 0,
"start": 766,
"end": 779,
"text": "238 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 233 gcc: _configtest.c\n 234 _configtest.c: In function 'main':\n >> 235 _configtest.c:5:16: error: size of array 'test_array' is negative\n 236 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 1)];\n 237 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 239 _configtest.c: In function 'main':\n >> 240 _configtest.c:5:16: error: size of array 'test_array' is negative\n 241 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 1)];\n 242 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 243 _configtest.c",
"source_line_no": "5",
"line_no": 779,
"repeat_count": 0,
"start": 773,
"end": 786,
"text": "243 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 239 _configtest.c: In function 'main':\n >> 240 _configtest.c:5:16: error: size of array 'test_array' is negative\n 241 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 1)];\n 242 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 244 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 245\n 246 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 252 _configtest.c",
"source_line_no": "5",
"line_no": 797,
"repeat_count": 0,
"start": 791,
"end": 804,
"text": "252 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 247 gcc: _configtest.c\n 248 _configtest.c: In function 'main':\n >> 249 _configtest.c:5:16: error: size of array 'test_array' is negative\n 250 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 3)];\n 251 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 253 _configtest.c: In function 'main':\n >> 254 _configtest.c:5:16: error: size of array 'test_array' is negative\n 255 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 3)];\n 256 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 257 _configtest.c",
"source_line_no": "5",
"line_no": 804,
"repeat_count": 0,
"start": 798,
"end": 811,
"text": "257 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 253 _configtest.c: In function 'main':\n >> 254 _configtest.c:5:16: error: size of array 'test_array' is negative\n 255 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 3)];\n 256 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 258 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 259\n 260 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 266 _configtest.c",
"source_line_no": "5",
"line_no": 822,
"repeat_count": 0,
"start": 816,
"end": 829,
"text": "266 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 261 gcc: _configtest.c\n 262 _configtest.c: In function 'main':\n >> 263 _configtest.c:5:16: error: size of array 'test_array' is negative\n 264 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 7)];\n 265 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 267 _configtest.c: In function 'main':\n >> 268 _configtest.c:5:16: error: size of array 'test_array' is negative\n 269 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 7)];\n 270 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 271 _configtest.c",
"source_line_no": "5",
"line_no": 829,
"repeat_count": 0,
"start": 823,
"end": 836,
"text": "271 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 267 _configtest.c: In function 'main':\n >> 268 _configtest.c:5:16: error: size of array 'test_array' is negative\n 269 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 7)];\n 270 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 272 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 273\n 274 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 349 _configtest.c",
"source_line_no": "5",
"line_no": 861,
"repeat_count": 0,
"start": 855,
"end": 868,
"text": "349 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 344 gcc: _configtest.c\n 345 _configtest.c: In function 'main':\n >> 346 _configtest.c:5:16: error: size of array 'test_array' is negative\n 347 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 348 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 350 _configtest.c: In function 'main':\n >> 351 _configtest.c:5:16: error: size of array 'test_array' is negative\n 352 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 353 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 354 _configtest.c",
"source_line_no": "5",
"line_no": 868,
"repeat_count": 0,
"start": 862,
"end": 875,
"text": "354 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 350 _configtest.c: In function 'main':\n >> 351 _configtest.c:5:16: error: size of array 'test_array' is negative\n 352 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 353 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 355 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 356\n 357 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 363 _configtest.c",
"source_line_no": "5",
"line_no": 886,
"repeat_count": 0,
"start": 880,
"end": 893,
"text": "363 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 358 gcc: _configtest.c\n 359 _configtest.c: In function 'main':\n >> 360 _configtest.c:5:16: error: size of array 'test_array' is negative\n 361 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 362 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 364 _configtest.c: In function 'main':\n >> 365 _configtest.c:5:16: error: size of array 'test_array' is negative\n 366 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 367 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 368 _configtest.c",
"source_line_no": "5",
"line_no": 893,
"repeat_count": 0,
"start": 887,
"end": 900,
"text": "368 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 364 _configtest.c: In function 'main':\n >> 365 _configtest.c:5:16: error: size of array 'test_array' is negative\n 366 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 367 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 369 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 370\n 371 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 377 _configtest.c",
"source_line_no": "5",
"line_no": 911,
"repeat_count": 0,
"start": 905,
"end": 918,
"text": "377 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 372 gcc: _configtest.c\n 373 _configtest.c: In function 'main':\n >> 374 _configtest.c:5:16: error: size of array 'test_array' is negative\n 375 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 0)];\n 376 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 378 _configtest.c: In function 'main':\n >> 379 _configtest.c:5:16: error: size of array 'test_array' is negative\n 380 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 0)];\n 381 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 382 _configtest.c",
"source_line_no": "5",
"line_no": 918,
"repeat_count": 0,
"start": 912,
"end": 925,
"text": "382 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 378 _configtest.c: In function 'main':\n >> 379 _configtest.c:5:16: error: size of array 'test_array' is negative\n 380 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 0)];\n 381 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 383 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 384\n 385 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 391 _configtest.c",
"source_line_no": "5",
"line_no": 936,
"repeat_count": 0,
"start": 930,
"end": 943,
"text": "391 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 386 gcc: _configtest.c\n 387 _configtest.c: In function 'main':\n >> 388 _configtest.c:5:16: error: size of array 'test_array' is negative\n 389 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 1)];\n 390 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 392 _configtest.c: In function 'main':\n >> 393 _configtest.c:5:16: error: size of array 'test_array' is negative\n 394 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 1)];\n 395 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 396 _configtest.c",
"source_line_no": "5",
"line_no": 943,
"repeat_count": 0,
"start": 937,
"end": 950,
"text": "396 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 392 _configtest.c: In function 'main':\n >> 393 _configtest.c:5:16: error: size of array 'test_array' is negative\n 394 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 1)];\n 395 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 397 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 398\n 399 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 405 _configtest.c",
"source_line_no": "5",
"line_no": 961,
"repeat_count": 0,
"start": 955,
"end": 968,
"text": "405 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 400 gcc: _configtest.c\n 401 _configtest.c: In function 'main':\n >> 402 _configtest.c:5:16: error: size of array 'test_array' is negative\n 403 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 3)];\n 404 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 406 _configtest.c: In function 'main':\n >> 407 _configtest.c:5:16: error: size of array 'test_array' is negative\n 408 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 3)];\n 409 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 410 _configtest.c",
"source_line_no": "5",
"line_no": 968,
"repeat_count": 0,
"start": 962,
"end": 975,
"text": "410 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 406 _configtest.c: In function 'main':\n >> 407 _configtest.c:5:16: error: size of array 'test_array' is negative\n 408 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 3)];\n 409 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 411 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 412\n 413 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 419 _configtest.c",
"source_line_no": "5",
"line_no": 986,
"repeat_count": 0,
"start": 980,
"end": 993,
"text": "419 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 414 gcc: _configtest.c\n 415 _configtest.c: In function 'main':\n >> 416 _configtest.c:5:16: error: size of array 'test_array' is negative\n 417 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 7)];\n 418 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 420 _configtest.c: In function 'main':\n >> 421 _configtest.c:5:16: error: size of array 'test_array' is negative\n 422 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 7)];\n 423 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 424 _configtest.c",
"source_line_no": "5",
"line_no": 993,
"repeat_count": 0,
"start": 987,
"end": 1000,
"text": "424 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 420 _configtest.c: In function 'main':\n >> 421 _configtest.c:5:16: error: size of array 'test_array' is negative\n 422 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 7)];\n 423 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 425 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 426\n 427 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 433 _configtest.c",
"source_line_no": "5",
"line_no": 1011,
"repeat_count": 0,
"start": 1005,
"end": 1018,
"text": "433 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 428 gcc: _configtest.c\n 429 _configtest.c: In function 'main':\n >> 430 _configtest.c:5:16: error: size of array 'test_array' is negative\n 431 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 15)];\n 432 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 434 _configtest.c: In function 'main':\n >> 435 _configtest.c:5:16: error: size of array 'test_array' is negative\n 436 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 15)];\n 437 | ^~~~~~~~~~",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 438 _configtest.c",
"source_line_no": "5",
"line_no": 1018,
"repeat_count": 0,
"start": 1012,
"end": 1025,
"text": "438 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " d [-Wunused-but-set-variable]\n 434 _configtest.c: In function 'main':\n >> 435 _configtest.c:5:16: error: size of array 'test_array' is negative\n 436 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) <= 15)];\n 437 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 439 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 440\n 441 compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inump",
"hash": "y3bfzoytvyfb3zlwnqyqcnfcrsxi2xp6"
},
{
"phase": "N/A",
"source_file": " 519 _configtest.c",
"source_line_no": "5",
"line_no": 1083,
"repeat_count": 0,
"start": 1077,
"end": 1090,
"text": "519 _configtest.c:5:16: warning: variable 'test_array' set but not use",
"pre_context": " 514 gcc: _configtest.c\n 515 _configtest.c: In function 'main':\n >> 516 _configtest.c:5:16: error: size of array 'test_array' is negative\n 517 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 518 | ^~~~~~~~~~",
"post_context": " d [-Wunused-but-set-variable]\n 520 _configtest.c: In function 'main':\n >> 521 _configtest.c:5:16: error: size of array 'test_array' is negative\n 522 5 | static int test_array [1 - 2 * !(((long) (sizeof (npy_\n check_sizeof_type))) == 8)];\n 523 | ^~~~~~~~~~",