-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpetsc_error.json
3408 lines (3408 loc) · 282 KB
/
petsc_error.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": [
null
],
"source_line_no": 0,
"line_no": 1162,
"repeat_count": 0,
"start": 1156,
"end": 1169,
"text": "==> [2022-01-13-14:03:15.146860] Error: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'",
"pre_context": "==> [2022-01-13-13:54:47.698723] found raw link dirs: /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc/x86_64-redhat-linux/9, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc/x86_64-redhat-linux/9/../../../../lib64, /lib/../lib64, /usr/lib/../lib64, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc/x86_64-redhat-linux/9/../../..\n==> [2022-01-13-13:54:47.698828] found link dirs: /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib/gcc/x86_64-redhat-linux/9, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib/gcc, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib64, /lib64, /usr/lib64, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib\n==> [2022-01-13-13:54:48.005918] Staging archive: /var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/petsc-3.11.2.tar.gz\n==> [2022-01-13-13:54:48.018647] '/usr/bin/tar' '-oxf' '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/petsc-3.11.2.tar.gz'\n==> [2022-01-13-13:54:49.175287] Created stage in /var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp\n==> [2022-01-13-13:54:49.175758] petsc: Building petsc-3.11.2-4ijdxeechro2blhw7pffahpggngumnwm [Package]",
"post_context": "\n/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py:1781, in cache_extra_test_sources:\n 1778 if os.path.isdir(src_path):\n 1779 fsys.install_tree(src_path, dest_path)\n 1780 else:\n >> 1781 fsys.mkdirp(os.path.dirname(dest_path))",
"hash": "4ijdxeechro2blhw7pffahpggngumnwm"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1191,
"repeat_count": 0,
"start": 1185,
"end": 1196,
"text": "OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " File \"/p/vast1/koparasy/BUILD/head/spack/var/spack/repos/builtin/packages/petsc/package.py\", line 585, in setup_build_tests\n self.cache_extra_test_sources('src/snes/tutorials')\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py\", line 1782, in cache_extra_test_sources\n fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))",
"post_context": "==> [2022-01-13-14:03:15.147207] Flagging petsc-3.11.2-4ijdxeechro2blhw7pffahpggngumnwm as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-14:03:45.299010] Skip view update, this environment does not maintain a view\n==> [2022-01-13-14:03:45.304798] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'\n",
"hash": "4ijdxeechro2blhw7pffahpggngumnwm"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1192,
"repeat_count": 0,
"start": 1186,
"end": 1196,
"text": "==> [2022-01-13-14:03:15.147207] Flagging petsc-3.11.2-4ijdxeechro2blhw7pffahpggngumnwm as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " self.cache_extra_test_sources('src/snes/tutorials')\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py\", line 1782, in cache_extra_test_sources\n fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))\nOSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'",
"post_context": "==> [2022-01-13-14:03:45.299010] Skip view update, this environment does not maintain a view\n==> [2022-01-13-14:03:45.304798] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'\n",
"hash": "4ijdxeechro2blhw7pffahpggngumnwm"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1194,
"repeat_count": 0,
"start": 1188,
"end": 1196,
"text": "==> [2022-01-13-14:03:45.304798] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))\nOSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-14:03:15.147207] Flagging petsc-3.11.2-4ijdxeechro2blhw7pffahpggngumnwm as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-ly2hhum7dr4rlan64kgxgxai67na7azp/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-14:03:45.299010] Skip view update, this environment does not maintain a view",
"post_context": "",
"hash": "4ijdxeechro2blhw7pffahpggngumnwm"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 858,
"repeat_count": 0,
"start": 852,
"end": 865,
"text": ">> 447 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.1.2-jtjmprmizbcde5ky3rjkyqfsoscx7hyx/include\n -c par_mgr_setup.c\n 446 In file included from par_mgr.c:19:",
"post_context": " 448 20 | dLUstruct_t dslu_data_LU;\n 449 | ^~~~~~~~~~~\n >> 450 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 451 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 452 | ^~~~~~~~~~~~~~~~~~\n >> 453 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "4kl2q3guuvnx45tmi73wpxxdccdjan5o"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 861,
"repeat_count": 0,
"start": 855,
"end": 868,
"text": ">> 450 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " erlu-dist-5.1.2-jtjmprmizbcde5ky3rjkyqfsoscx7hyx/include\n -c par_mgr_setup.c\n 446 In file included from par_mgr.c:19:\n >> 447 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 448 20 | dLUstruct_t dslu_data_LU;\n 449 | ^~~~~~~~~~~",
"post_context": " 451 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 452 | ^~~~~~~~~~~~~~~~~~\n >> 453 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'\n 454 25 | dSOLVEstruct_t dslu_solve;\n 455 | ^~~~~~~~~~~~~~\n 456 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':",
"hash": "4kl2q3guuvnx45tmi73wpxxdccdjan5o"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 864,
"repeat_count": 0,
"start": 858,
"end": 871,
"text": ">> 453 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 447 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 448 20 | dLUstruct_t dslu_data_LU;\n 449 | ^~~~~~~~~~~\n >> 450 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 451 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 452 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 454 25 | dSOLVEstruct_t dslu_solve;\n 455 | ^~~~~~~~~~~~~~\n 456 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':\n 457 par_mgr.c:5523:4: warning: implicit declaration of function 'dScale\n PermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fu\n nction-declaration]",
"hash": "4kl2q3guuvnx45tmi73wpxxdccdjan5o"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 887,
"repeat_count": 0,
"start": 881,
"end": 894,
"text": ">> 495 make[1]: *** [par_mgr.o] Error 1",
"pre_context": " env_dir/linux-rhel7-broadwell/gcc-9.3.1/superlu-dist-5.1.2-jtjmprmi\n zbcde5ky3rjkyqfsoscx7hyx/include/superlu_ddefs.h:268:8: note: expec\n ted 'SOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument is\n of type 'int *'\n 493 268 | SOLVEstruct_t *, double *, SuperLUStat_t *, int *);\n 494 | ^~~~~~~~~~~~~~~",
"post_context": " 496 make[1]: *** Waiting for unfinished jobs....\n 497 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-develop-ydadiehlp3vbi2bff6gnr35ngqm3sohl/spack-src/src/parcsr_\n ls'\n >> 498 make: *** [all] Error 1\n",
"hash": "4kl2q3guuvnx45tmi73wpxxdccdjan5o"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 892,
"repeat_count": 0,
"start": 886,
"end": 899,
"text": ">> 498 make: *** [all] Error 1",
"pre_context": " 494 | ^~~~~~~~~~~~~~~\n >> 495 make[1]: *** [par_mgr.o] Error 1\n 496 make[1]: *** Waiting for unfinished jobs....\n 497 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-develop-ydadiehlp3vbi2bff6gnr35ngqm3sohl/spack-src/src/parcsr_\n ls'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-develop-ydadiehlp3vbi2bff6gnr35ngqm3sohl/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "4kl2q3guuvnx45tmi73wpxxdccdjan5o"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1165,
"repeat_count": 0,
"start": 1159,
"end": 1172,
"text": "==> [2022-01-13-13:45:24.191061] Error: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'",
"pre_context": "==> [2022-01-13-13:34:36.305023] '/usr/bin/curl' '--stderr' '-' '-s' '-f' '-r' '0-0' 'https://mirror.spack.io/_source-cache/archive/4d/4d244dd7d1565d6534e776445fcf6977a6ee2a8bb2be4a36ac1e0fc1f9ad9cfa.tar.gz'\n==> [2022-01-13-13:34:37.262471] '/usr/bin/curl' '-C' '-' '-o' '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/petsc-3.11.2.tar.gz.part' '-f' '-D' '-' '-L' 'https://mirror.spack.io/_source-cache/archive/4d/4d244dd7d1565d6534e776445fcf6977a6ee2a8bb2be4a36ac1e0fc1f9ad9cfa.tar.gz' '-sS' '--connect-timeout' '10'\n==> [2022-01-13-13:34:39.854193] Staging archive: /var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/petsc-3.11.2.tar.gz\n==> [2022-01-13-13:34:39.859294] '/usr/bin/tar' '-oxf' '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/petsc-3.11.2.tar.gz'\n==> [2022-01-13-13:34:41.052375] Created stage in /var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7\n==> [2022-01-13-13:34:41.052764] petsc: Building petsc-3.11.2-4znmpased3ab6zrj3mxa7orexb25zvm6 [Package]",
"post_context": "\n/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py:1781, in cache_extra_test_sources:\n 1778 if os.path.isdir(src_path):\n 1779 fsys.install_tree(src_path, dest_path)\n 1780 else:\n >> 1781 fsys.mkdirp(os.path.dirname(dest_path))",
"hash": "4znmpased3ab6zrj3mxa7orexb25zvm6"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1194,
"repeat_count": 0,
"start": 1188,
"end": 1199,
"text": "OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " File \"/p/vast1/koparasy/BUILD/head/spack/var/spack/repos/builtin/packages/petsc/package.py\", line 585, in setup_build_tests\n self.cache_extra_test_sources('src/snes/tutorials')\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py\", line 1782, in cache_extra_test_sources\n fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))",
"post_context": "==> [2022-01-13-13:45:24.191481] Flagging petsc-3.11.2-4znmpased3ab6zrj3mxa7orexb25zvm6 as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-13:52:03.642736] Skip view update, this environment does not maintain a view\n==> [2022-01-13-13:52:03.645165] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'\n",
"hash": "4znmpased3ab6zrj3mxa7orexb25zvm6"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1195,
"repeat_count": 0,
"start": 1189,
"end": 1199,
"text": "==> [2022-01-13-13:45:24.191481] Flagging petsc-3.11.2-4znmpased3ab6zrj3mxa7orexb25zvm6 as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " self.cache_extra_test_sources('src/snes/tutorials')\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py\", line 1782, in cache_extra_test_sources\n fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))\nOSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'",
"post_context": "==> [2022-01-13-13:52:03.642736] Skip view update, this environment does not maintain a view\n==> [2022-01-13-13:52:03.645165] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'\n",
"hash": "4znmpased3ab6zrj3mxa7orexb25zvm6"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1197,
"repeat_count": 0,
"start": 1191,
"end": 1199,
"text": "==> [2022-01-13-13:52:03.645165] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))\nOSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-13:45:24.191481] Flagging petsc-3.11.2-4znmpased3ab6zrj3mxa7orexb25zvm6 as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.2-dyalgkli7fx346szeblbv44svxciwdu7/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-13:52:03.642736] Skip view update, this environment does not maintain a view",
"post_context": "",
"hash": "4znmpased3ab6zrj3mxa7orexb25zvm6"
},
{
"phase": "N/A",
"source_file": " uperludist.cpp",
"source_line_no": "5",
"line_no": 1092,
"repeat_count": 0,
"start": 1086,
"end": 1099,
"text": "uperludist.cpp:57:29: error: expected constructor, destructor, or",
"pre_context": " sos2.dir/Amesos2_Superludist.cpp.o.d -o CMakeFiles/amesos2.dir/Ame\n sos2_Superludist.cpp.o -c /var/tmp/koparasy/spack-stage/spack-stag\n e-trilinos-12.12.1-lk5h5qu7pygwcvkgc6mxg3orp5v7dodi/spack-src/pack\n ages/amesos2/src/Amesos2_Superludist.cpp\n >> 2503 /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-lk5h5qu\n 7pygwcvkgc6mxg3orp5v7dodi/spack-src/packages/amesos2/src/Amesos2_S",
"post_context": " type conversion before '(' token\n 2504 57 | AMESOS2_SOLVER_EPETRA_INST(Superludist);\n 2505 | ^\n >> 2506 make[2]: *** [packages/amesos2/src/CMakeFiles/amesos2.dir/Amesos2_\n Superludist.cpp.o] Error 1\n 2507 make[2]: *** Waiting for unfinished jobs....",
"hash": "54hlswy2xatiyxmgy6t7gl4nu7itmtox"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1411,
"repeat_count": 0,
"start": 1405,
"end": 1418,
"text": ">> 2526 make: *** [all] Error 2",
"pre_context": " trilinos-12.12.1-lk5h5qu7pygwcvkgc6mxg3orp5v7dodi/spack-build-lk5h\n 5qu'\n 2524 [ 64%] Built target belosepetra\n 2525 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-\n trilinos-12.12.1-lk5h5qu7pygwcvkgc6mxg3orp5v7dodi/spack-build-lk5h\n 5qu'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-lk5h5qu7pygwcvkgc6mxg3orp5v7dodi/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "54hlswy2xatiyxmgy6t7gl4nu7itmtox"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 850,
"repeat_count": 0,
"start": 844,
"end": 857,
"text": ">> 441 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.1.3-zkj4mrznvjjgvgnqqldvga2lju5ofq6z/include -\n c par_mgr_setup.c\n 440 In file included from par_mgr.c:19:",
"post_context": " 442 20 | dLUstruct_t dslu_data_LU;\n 443 | ^~~~~~~~~~~\n >> 444 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 445 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 446 | ^~~~~~~~~~~~~~~~~~\n >> 447 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "5ornmuwnkb5t7qzawgvbikmpptyvphya"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 853,
"repeat_count": 0,
"start": 847,
"end": 860,
"text": ">> 444 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " erlu-dist-5.1.3-zkj4mrznvjjgvgnqqldvga2lju5ofq6z/include -\n c par_mgr_setup.c\n 440 In file included from par_mgr.c:19:\n >> 441 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 442 20 | dLUstruct_t dslu_data_LU;\n 443 | ^~~~~~~~~~~",
"post_context": " 445 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 446 | ^~~~~~~~~~~~~~~~~~\n >> 447 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'\n 448 25 | dSOLVEstruct_t dslu_solve;\n 449 | ^~~~~~~~~~~~~~\n 450 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':",
"hash": "5ornmuwnkb5t7qzawgvbikmpptyvphya"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 856,
"repeat_count": 0,
"start": 850,
"end": 863,
"text": ">> 447 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 441 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 442 20 | dLUstruct_t dslu_data_LU;\n 443 | ^~~~~~~~~~~\n >> 444 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 445 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 446 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 448 25 | dSOLVEstruct_t dslu_solve;\n 449 | ^~~~~~~~~~~~~~\n 450 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':\n 451 par_mgr.c:5394:4: warning: implicit declaration of function 'dScale\n PermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fu\n nction-declaration]",
"hash": "5ornmuwnkb5t7qzawgvbikmpptyvphya"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 879,
"repeat_count": 0,
"start": 873,
"end": 886,
"text": ">> 489 make[1]: *** [par_mgr.o] Error 1",
"pre_context": " env_dir/linux-rhel7-broadwell/gcc-9.3.1/superlu-dist-5.1.3-zkj4mrzn\n vjjgvgnqqldvga2lju5ofq6z/include/superlu_ddefs.h:249:8: note: expec\n ted 'SOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument is\n of type 'int *'\n 487 249 | SOLVEstruct_t *, double *, SuperLUStat_t *, int *);\n 488 | ^~~~~~~~~~~~~~~",
"post_context": " 490 make[1]: *** Waiting for unfinished jobs....\n 491 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.22.1-eu6455hidhmo4tmaev3jmg33tvsact5a/spack-src/src/parcsr_l\n s'\n >> 492 make: *** [all] Error 1\n",
"hash": "5ornmuwnkb5t7qzawgvbikmpptyvphya"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 884,
"repeat_count": 0,
"start": 878,
"end": 891,
"text": ">> 492 make: *** [all] Error 1",
"pre_context": " 488 | ^~~~~~~~~~~~~~~\n >> 489 make[1]: *** [par_mgr.o] Error 1\n 490 make[1]: *** Waiting for unfinished jobs....\n 491 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.22.1-eu6455hidhmo4tmaev3jmg33tvsact5a/spack-src/src/parcsr_l\n s'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-2.22.1-eu6455hidhmo4tmaev3jmg33tvsact5a/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "5ornmuwnkb5t7qzawgvbikmpptyvphya"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1165,
"repeat_count": 0,
"start": 1159,
"end": 1172,
"text": "==> [2022-01-13-13:43:46.320482] Error: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'",
"pre_context": "==> [2022-01-13-13:33:40.408784] '/usr/bin/curl' '--stderr' '-' '-s' '-f' '-r' '0-0' 'https://mirror.spack.io/_source-cache/archive/19/199ad9650a9f58603b49e7fff7cd003ceb03aa231e5d37d0bf0496c6348eca81.tar.gz'\n==> [2022-01-13-13:33:41.426305] '/usr/bin/curl' '-C' '-' '-o' '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/petsc-3.11.3.tar.gz.part' '-f' '-D' '-' '-L' 'https://mirror.spack.io/_source-cache/archive/19/199ad9650a9f58603b49e7fff7cd003ceb03aa231e5d37d0bf0496c6348eca81.tar.gz' '-sS' '--connect-timeout' '10'\n==> [2022-01-13-13:33:44.052330] Staging archive: /var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/petsc-3.11.3.tar.gz\n==> [2022-01-13-13:33:44.058781] '/usr/bin/tar' '-oxf' '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/petsc-3.11.3.tar.gz'\n==> [2022-01-13-13:33:45.177811] Created stage in /var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm\n==> [2022-01-13-13:33:45.178378] petsc: Building petsc-3.11.3-5zpjpcdr4tkx4fjbyjip4kgaxgnendw6 [Package]",
"post_context": "\n/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py:1781, in cache_extra_test_sources:\n 1778 if os.path.isdir(src_path):\n 1779 fsys.install_tree(src_path, dest_path)\n 1780 else:\n >> 1781 fsys.mkdirp(os.path.dirname(dest_path))",
"hash": "5zpjpcdr4tkx4fjbyjip4kgaxgnendw6"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1194,
"repeat_count": 0,
"start": 1188,
"end": 1199,
"text": "OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " File \"/p/vast1/koparasy/BUILD/head/spack/var/spack/repos/builtin/packages/petsc/package.py\", line 585, in setup_build_tests\n self.cache_extra_test_sources('src/snes/tutorials')\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py\", line 1782, in cache_extra_test_sources\n fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))",
"post_context": "==> [2022-01-13-13:43:46.320869] Flagging petsc-3.11.3-5zpjpcdr4tkx4fjbyjip4kgaxgnendw6 as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-13:47:46.752749] Skip view update, this environment does not maintain a view\n==> [2022-01-13-13:47:46.758327] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'\n",
"hash": "5zpjpcdr4tkx4fjbyjip4kgaxgnendw6"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1195,
"repeat_count": 0,
"start": 1189,
"end": 1199,
"text": "==> [2022-01-13-13:43:46.320869] Flagging petsc-3.11.3-5zpjpcdr4tkx4fjbyjip4kgaxgnendw6 as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " self.cache_extra_test_sources('src/snes/tutorials')\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py\", line 1782, in cache_extra_test_sources\n fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))\nOSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'",
"post_context": "==> [2022-01-13-13:47:46.752749] Skip view update, this environment does not maintain a view\n==> [2022-01-13-13:47:46.758327] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'\n",
"hash": "5zpjpcdr4tkx4fjbyjip4kgaxgnendw6"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1197,
"repeat_count": 0,
"start": 1191,
"end": 1199,
"text": "==> [2022-01-13-13:47:46.758327] ChildError: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'",
"pre_context": " fsys.copy(src_path, dest_path)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/llnl/util/filesystem.py\", line 376, in copy\n raise IOError(\"No such file or directory: '{0}'\".format(src))\nOSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-13:43:46.320869] Flagging petsc-3.11.3-5zpjpcdr4tkx4fjbyjip4kgaxgnendw6 as failed: OSError: No such file or directory: '/var/tmp/koparasy/spack-stage/spack-stage-petsc-3.11.3-fpypjq2dvqpedjrfdws2po6gcds3tdtm/spack-src/src/ksp/ksp/tutorials'\n==> [2022-01-13-13:47:46.752749] Skip view update, this environment does not maintain a view",
"post_context": "",
"hash": "5zpjpcdr4tkx4fjbyjip4kgaxgnendw6"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 862,
"repeat_count": 0,
"start": 856,
"end": 869,
"text": ">> 445 superlu.c:25:4: error: unknown type name 'LUstruct_t'",
"pre_context": " ultivector -I./../utilities -I./../krylov -I./../seq_mv -I./../parc\n sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-develop-gnwe2zzhagmfovqxzgb77un4qmt7y4qc/include -c su\n perlu.c",
"post_context": " 446 25 | LUstruct_t dslu_data_LU;\n 447 | ^~~~~~~~~~\n >> 448 superlu.c:29:4: error: unknown type name 'ScalePermstruct_t'\n 449 29 | ScalePermstruct_t dslu_ScalePermstruct;\n 450 | ^~~~~~~~~~~~~~~~~\n >> 451 superlu.c:30:4: error: unknown type name 'SOLVEstruct_t'",
"hash": "7cpeemmyrxm6h7vdsra4ctjrnenghda2"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 865,
"repeat_count": 0,
"start": 859,
"end": 872,
"text": ">> 448 superlu.c:29:4: error: unknown type name 'ScalePermstruct_t'",
"pre_context": " ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-develop-gnwe2zzhagmfovqxzgb77un4qmt7y4qc/include -c su\n perlu.c\n >> 445 superlu.c:25:4: error: unknown type name 'LUstruct_t'\n 446 25 | LUstruct_t dslu_data_LU;\n 447 | ^~~~~~~~~~",
"post_context": " 449 29 | ScalePermstruct_t dslu_ScalePermstruct;\n 450 | ^~~~~~~~~~~~~~~~~\n >> 451 superlu.c:30:4: error: unknown type name 'SOLVEstruct_t'\n 452 30 | SOLVEstruct_t dslu_solve;\n 453 | ^~~~~~~~~~~~~\n 454 superlu.c: In function 'hypre_SLUDistSetup':",
"hash": "7cpeemmyrxm6h7vdsra4ctjrnenghda2"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 868,
"repeat_count": 0,
"start": 862,
"end": 875,
"text": ">> 451 superlu.c:30:4: error: unknown type name 'SOLVEstruct_t'",
"pre_context": " >> 445 superlu.c:25:4: error: unknown type name 'LUstruct_t'\n 446 25 | LUstruct_t dslu_data_LU;\n 447 | ^~~~~~~~~~\n >> 448 superlu.c:29:4: error: unknown type name 'ScalePermstruct_t'\n 449 29 | ScalePermstruct_t dslu_ScalePermstruct;\n 450 | ^~~~~~~~~~~~~~~~~",
"post_context": " 452 30 | SOLVEstruct_t dslu_solve;\n 453 | ^~~~~~~~~~~~~\n 454 superlu.c: In function 'hypre_SLUDistSetup':\n 455 superlu.c:96:4: warning: implicit declaration of function 'ScalePer\n mstructInit'; did you mean 'dScalePermstructInit'? [-Wimplicit-func\n tion-declaration]",
"hash": "7cpeemmyrxm6h7vdsra4ctjrnenghda2"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 893,
"repeat_count": 0,
"start": 887,
"end": 900,
"text": ">> 540 make[1]: *** [superlu.o] Error 1",
"pre_context": " pected 'dSOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument\n is of type 'int *'\n 538 539 | extern void dSolveFinalize(superlu_dist_options_t *, dSOLVE\n struct_t *);\n 539 | ^~~~~~\n ~~~~~~~~~~",
"post_context": " 541 make[1]: *** Waiting for unfinished jobs....\n 542 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.18.2-ctcd6zbz4wiv4n5owdcatpjskgswam2p/spack-src/src/parcsr_l\n s'\n >> 543 make: *** [all] Error 1\n",
"hash": "7cpeemmyrxm6h7vdsra4ctjrnenghda2"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 898,
"repeat_count": 0,
"start": 892,
"end": 905,
"text": ">> 543 make: *** [all] Error 1",
"pre_context": " ~~~~~~~~~~\n >> 540 make[1]: *** [superlu.o] Error 1\n 541 make[1]: *** Waiting for unfinished jobs....\n 542 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.18.2-ctcd6zbz4wiv4n5owdcatpjskgswam2p/spack-src/src/parcsr_l\n s'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-2.18.2-ctcd6zbz4wiv4n5owdcatpjskgswam2p/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "7cpeemmyrxm6h7vdsra4ctjrnenghda2"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 855,
"repeat_count": 0,
"start": 849,
"end": 862,
"text": ">> 458 superlu.c:25:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " ultivector -I./../utilities -I./../krylov -I./../seq_mv -I./../parc\n sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.0.0-wvig6axg5vxfh7ibbrpvdiev6r4yi4y3/include -c supe\n rlu.c",
"post_context": " 459 25 | dLUstruct_t dslu_data_LU;\n 460 | ^~~~~~~~~~~\n >> 461 superlu.c:29:4: error: unknown type name 'dScalePermstruct_t'\n 462 29 | dScalePermstruct_t dslu_ScalePermstruct;\n 463 | ^~~~~~~~~~~~~~~~~~\n >> 464 superlu.c:30:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "7gvqupxi2yu2vfg4czif6j3arw44orgx"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 858,
"repeat_count": 0,
"start": 852,
"end": 865,
"text": ">> 461 superlu.c:29:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.0.0-wvig6axg5vxfh7ibbrpvdiev6r4yi4y3/include -c supe\n rlu.c\n >> 458 superlu.c:25:4: error: unknown type name 'dLUstruct_t'\n 459 25 | dLUstruct_t dslu_data_LU;\n 460 | ^~~~~~~~~~~",
"post_context": " 462 29 | dScalePermstruct_t dslu_ScalePermstruct;\n 463 | ^~~~~~~~~~~~~~~~~~\n >> 464 superlu.c:30:4: error: unknown type name 'dSOLVEstruct_t'\n 465 30 | dSOLVEstruct_t dslu_solve;\n 466 | ^~~~~~~~~~~~~~\n 467 superlu.c: In function 'hypre_SLUDistSetup':",
"hash": "7gvqupxi2yu2vfg4czif6j3arw44orgx"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 861,
"repeat_count": 0,
"start": 855,
"end": 868,
"text": ">> 464 superlu.c:30:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 458 superlu.c:25:4: error: unknown type name 'dLUstruct_t'\n 459 25 | dLUstruct_t dslu_data_LU;\n 460 | ^~~~~~~~~~~\n >> 461 superlu.c:29:4: error: unknown type name 'dScalePermstruct_t'\n 462 29 | dScalePermstruct_t dslu_ScalePermstruct;\n 463 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 465 30 | dSOLVEstruct_t dslu_solve;\n 466 | ^~~~~~~~~~~~~~\n 467 superlu.c: In function 'hypre_SLUDistSetup':\n 468 superlu.c:116:4: warning: implicit declaration of function 'dScaleP\n ermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fun\n ction-declaration]",
"hash": "7gvqupxi2yu2vfg4czif6j3arw44orgx"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 886,
"repeat_count": 0,
"start": 880,
"end": 893,
"text": ">> 553 make[1]: *** [superlu.o] Error 1",
"pre_context": " cted 'SOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument is\n of type 'int *'\n 551 271 | extern void dSolveFinalize(superlu_dist_options_t *, SOLVEs\n truct_t *);\n 552 | ^~~~~~\n ~~~~~~~~~",
"post_context": " 554 make[1]: *** Waiting for unfinished jobs....\n 555 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.19.0-e7l5nkrcbbq3p5yvltzm7jgrlgwfkpnb/spack-src/src/parcsr_l\n s'\n >> 556 make: *** [all] Error 1\n",
"hash": "7gvqupxi2yu2vfg4czif6j3arw44orgx"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 891,
"repeat_count": 0,
"start": 885,
"end": 898,
"text": ">> 556 make: *** [all] Error 1",
"pre_context": " ~~~~~~~~~\n >> 553 make[1]: *** [superlu.o] Error 1\n 554 make[1]: *** Waiting for unfinished jobs....\n 555 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.19.0-e7l5nkrcbbq3p5yvltzm7jgrlgwfkpnb/spack-src/src/parcsr_l\n s'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-2.19.0-e7l5nkrcbbq3p5yvltzm7jgrlgwfkpnb/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "7gvqupxi2yu2vfg4czif6j3arw44orgx"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 856,
"repeat_count": 0,
"start": 850,
"end": 863,
"text": ">> 458 superlu.c:25:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " ultivector -I./../utilities -I./../krylov -I./../seq_mv -I./../parc\n sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.2.2-b7ykzxaaetfsptvr5mmszuk4lwqhxgfk/include -c supe\n rlu.c",
"post_context": " 459 25 | dLUstruct_t dslu_data_LU;\n 460 | ^~~~~~~~~~~\n >> 461 superlu.c:29:4: error: unknown type name 'dScalePermstruct_t'\n 462 29 | dScalePermstruct_t dslu_ScalePermstruct;\n 463 | ^~~~~~~~~~~~~~~~~~\n >> 464 superlu.c:30:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "7p22irmhd6d25wabyuzqomy6qbydoyzs"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 859,
"repeat_count": 0,
"start": 853,
"end": 866,
"text": ">> 461 superlu.c:29:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.2.2-b7ykzxaaetfsptvr5mmszuk4lwqhxgfk/include -c supe\n rlu.c\n >> 458 superlu.c:25:4: error: unknown type name 'dLUstruct_t'\n 459 25 | dLUstruct_t dslu_data_LU;\n 460 | ^~~~~~~~~~~",
"post_context": " 462 29 | dScalePermstruct_t dslu_ScalePermstruct;\n 463 | ^~~~~~~~~~~~~~~~~~\n >> 464 superlu.c:30:4: error: unknown type name 'dSOLVEstruct_t'\n 465 30 | dSOLVEstruct_t dslu_solve;\n 466 | ^~~~~~~~~~~~~~\n 467 superlu.c: In function 'hypre_SLUDistSetup':",
"hash": "7p22irmhd6d25wabyuzqomy6qbydoyzs"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 862,
"repeat_count": 0,
"start": 856,
"end": 869,
"text": ">> 464 superlu.c:30:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 458 superlu.c:25:4: error: unknown type name 'dLUstruct_t'\n 459 25 | dLUstruct_t dslu_data_LU;\n 460 | ^~~~~~~~~~~\n >> 461 superlu.c:29:4: error: unknown type name 'dScalePermstruct_t'\n 462 29 | dScalePermstruct_t dslu_ScalePermstruct;\n 463 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 465 30 | dSOLVEstruct_t dslu_solve;\n 466 | ^~~~~~~~~~~~~~\n 467 superlu.c: In function 'hypre_SLUDistSetup':\n 468 superlu.c:116:4: warning: implicit declaration of function 'dScaleP\n ermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fun\n ction-declaration]",
"hash": "7p22irmhd6d25wabyuzqomy6qbydoyzs"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 887,
"repeat_count": 0,
"start": 881,
"end": 894,
"text": ">> 553 make[1]: *** [superlu.o] Error 1",
"pre_context": " cted 'SOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument is\n of type 'int *'\n 551 252 | extern void dSolveFinalize(superlu_dist_options_t *, SOLVEs\n truct_t *);\n 552 | ^~~~~~\n ~~~~~~~~~",
"post_context": " 554 make[1]: *** Waiting for unfinished jobs....\n 555 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.19.0-fipu6o7ib5riaofxakcvlbya3g4im6qf/spack-src/src/parcsr_l\n s'\n >> 556 make: *** [all] Error 1\n",
"hash": "7p22irmhd6d25wabyuzqomy6qbydoyzs"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 892,
"repeat_count": 0,
"start": 886,
"end": 899,
"text": ">> 556 make: *** [all] Error 1",
"pre_context": " ~~~~~~~~~\n >> 553 make[1]: *** [superlu.o] Error 1\n 554 make[1]: *** Waiting for unfinished jobs....\n 555 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.19.0-fipu6o7ib5riaofxakcvlbya3g4im6qf/spack-src/src/parcsr_l\n s'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-2.19.0-fipu6o7ib5riaofxakcvlbya3g4im6qf/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "7p22irmhd6d25wabyuzqomy6qbydoyzs"
},
{
"phase": "N/A",
"source_file": " uperludist.cpp",
"source_line_no": "5",
"line_no": 1094,
"repeat_count": 0,
"start": 1088,
"end": 1101,
"text": "uperludist.cpp:57:29: error: expected constructor, destructor, or",
"pre_context": " sos2.dir/Amesos2_Superludist.cpp.o.d -o CMakeFiles/amesos2.dir/Ame\n sos2_Superludist.cpp.o -c /var/tmp/koparasy/spack-stage/spack-stag\n e-trilinos-12.12.1-6boof7apdsdlqlzeufjmalbln2kh33dp/spack-src/pack\n ages/amesos2/src/Amesos2_Superludist.cpp\n >> 2503 /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-6boof7a\n pdsdlqlzeufjmalbln2kh33dp/spack-src/packages/amesos2/src/Amesos2_S",
"post_context": " type conversion before '(' token\n 2504 57 | AMESOS2_SOLVER_EPETRA_INST(Superludist);\n 2505 | ^\n >> 2506 make[2]: *** [packages/amesos2/src/CMakeFiles/amesos2.dir/Amesos2_\n Superludist.cpp.o] Error 1\n 2507 make[2]: *** Waiting for unfinished jobs....",
"hash": "a6prdgnjv2mho54mw5345xprjooeml64"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1870,
"repeat_count": 0,
"start": 1864,
"end": 1877,
"text": ">> 2544 make: *** [all] Error 2",
"pre_context": " trilinos-12.12.1-6boof7apdsdlqlzeufjmalbln2kh33dp/spack-build-6boo\n f7a'\n 2542 [ 65%] Built target belosepetra\n 2543 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-\n trilinos-12.12.1-6boof7apdsdlqlzeufjmalbln2kh33dp/spack-build-6boo\n f7a'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-6boof7apdsdlqlzeufjmalbln2kh33dp/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "a6prdgnjv2mho54mw5345xprjooeml64"
},
{
"phase": "N/A",
"source_file": " uperludist.cpp",
"source_line_no": "5",
"line_no": 1231,
"repeat_count": 0,
"start": 1225,
"end": 1238,
"text": "uperludist.cpp:57:29: error: expected constructor, destructor, or",
"pre_context": " sos2.dir/Amesos2_Superludist.cpp.o.d -o CMakeFiles/amesos2.dir/Ame\n sos2_Superludist.cpp.o -c /var/tmp/koparasy/spack-stage/spack-stag\n e-trilinos-12.12.1-aa6enk3qgpxvcdeuhb3lqrqygyuiz4fz/spack-src/pack\n ages/amesos2/src/Amesos2_Superludist.cpp\n >> 2505 /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-aa6enk3\n qgpxvcdeuhb3lqrqygyuiz4fz/spack-src/packages/amesos2/src/Amesos2_S",
"post_context": " type conversion before '(' token\n 2506 57 | AMESOS2_SOLVER_EPETRA_INST(Superludist);\n 2507 | ^\n >> 2508 make[2]: *** [packages/amesos2/src/CMakeFiles/amesos2.dir/Amesos2_\n Superludist.cpp.o] Error 1\n 2509 make[2]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-",
"hash": "ale4wsnxoztbm7sbplvvn2lnvc7zonvp"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1433,
"repeat_count": 0,
"start": 1427,
"end": 1440,
"text": ">> 2525 make: *** [all] Error 2",
"pre_context": " trilinos-12.12.1-aa6enk3qgpxvcdeuhb3lqrqygyuiz4fz/spack-build-aa6e\n nk3'\n 2523 [ 64%] Built target belostpetra\n 2524 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-\n trilinos-12.12.1-aa6enk3qgpxvcdeuhb3lqrqygyuiz4fz/spack-build-aa6e\n nk3'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-aa6enk3qgpxvcdeuhb3lqrqygyuiz4fz/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "ale4wsnxoztbm7sbplvvn2lnvc7zonvp"
},
{
"phase": "N/A",
"source_file": " uperludist.cpp",
"source_line_no": "5",
"line_no": 1142,
"repeat_count": 0,
"start": 1136,
"end": 1149,
"text": "uperludist.cpp:57:29: error: expected constructor, destructor, or",
"pre_context": " pp.o.d -o CMakeFiles/amesos2.dir/Amesos2_Superludist.cpp.o -c /var\n /tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-jyxc6ayxega\n gfoin6sm5l463kuikh45o/spack-src/packages/amesos2/src/Amesos2_Super\n ludist.cpp\n >> 2510 /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-jyxc6ay\n xegagfoin6sm5l463kuikh45o/spack-src/packages/amesos2/src/Amesos2_S",
"post_context": " type conversion before '(' token\n 2511 57 | AMESOS2_SOLVER_EPETRA_INST(Superludist);\n 2512 | ^\n >> 2513 make[2]: *** [packages/amesos2/src/CMakeFiles/amesos2.dir/Amesos2_\n Superludist.cpp.o] Error 1\n 2514 make[2]: *** Waiting for unfinished jobs....",
"hash": "db4j7cgk3ozwmvasvg77hknrsoggty72"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1611,
"repeat_count": 0,
"start": 1605,
"end": 1618,
"text": ">> 2541 make: *** [all] Error 2",
"pre_context": " trilinos-12.12.1-jyxc6ayxegagfoin6sm5l463kuikh45o/spack-build-jyxc\n 6ay'\n 2539 [ 64%] Built target belostpetra\n 2540 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-\n trilinos-12.12.1-jyxc6ayxegagfoin6sm5l463kuikh45o/spack-build-jyxc\n 6ay'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-jyxc6ayxegagfoin6sm5l463kuikh45o/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "db4j7cgk3ozwmvasvg77hknrsoggty72"
},
{
"phase": "N/A",
"source_file": " uperludist.cpp",
"source_line_no": "5",
"line_no": 1231,
"repeat_count": 0,
"start": 1225,
"end": 1238,
"text": "uperludist.cpp:57:29: error: expected constructor, destructor, or",
"pre_context": " sos2.dir/Amesos2_Superludist.cpp.o.d -o CMakeFiles/amesos2.dir/Ame\n sos2_Superludist.cpp.o -c /var/tmp/koparasy/spack-stage/spack-stag\n e-trilinos-12.12.1-loa7k6cdwle263mahgt6osaruacxtxft/spack-src/pack\n ages/amesos2/src/Amesos2_Superludist.cpp\n >> 2505 /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-loa7k6c\n dwle263mahgt6osaruacxtxft/spack-src/packages/amesos2/src/Amesos2_S",
"post_context": " type conversion before '(' token\n 2506 57 | AMESOS2_SOLVER_EPETRA_INST(Superludist);\n 2507 | ^\n >> 2508 make[2]: *** [packages/amesos2/src/CMakeFiles/amesos2.dir/Amesos2_\n Superludist.cpp.o] Error 1\n 2509 make[2]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-",
"hash": "diehd6fxln2nlhvno4q556m5fwdoaw6j"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1433,
"repeat_count": 0,
"start": 1427,
"end": 1440,
"text": ">> 2525 make: *** [all] Error 2",
"pre_context": " trilinos-12.12.1-loa7k6cdwle263mahgt6osaruacxtxft/spack-build-loa7\n k6c'\n 2523 [ 64%] Built target belostpetra\n 2524 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-\n trilinos-12.12.1-loa7k6cdwle263mahgt6osaruacxtxft/spack-build-loa7\n k6c'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-loa7k6cdwle263mahgt6osaruacxtxft/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "diehd6fxln2nlhvno4q556m5fwdoaw6j"
},
{
"phase": "N/A",
"source_file": " uperludist.cpp",
"source_line_no": "5",
"line_no": 1142,
"repeat_count": 0,
"start": 1136,
"end": 1149,
"text": "uperludist.cpp:57:29: error: expected constructor, destructor, or",
"pre_context": " d -o CMakeFiles/amesos2.dir/Amesos2_Superludist.cpp.o -c /var/tmp/\n koparasy/spack-stage/spack-stage-trilinos-12.12.1-ufaq5tycbin6snaj\n dr323rqascpittat/spack-src/packages/amesos2/src/Amesos2_Superludis\n t.cpp\n >> 2518 /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-ufaq5ty\n cbin6snajdr323rqascpittat/spack-src/packages/amesos2/src/Amesos2_S",
"post_context": " type conversion before '(' token\n 2519 57 | AMESOS2_SOLVER_EPETRA_INST(Superludist);\n 2520 | ^\n >> 2521 make[2]: *** [packages/amesos2/src/CMakeFiles/amesos2.dir/Amesos2_\n Superludist.cpp.o] Error 1\n 2522 make[2]: *** Waiting for unfinished jobs....",
"hash": "dsgvp4nnzvqzhcojdfmssl5b52tnt4yi"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1461,
"repeat_count": 0,
"start": 1455,
"end": 1468,
"text": ">> 2541 make: *** [all] Error 2",
"pre_context": " trilinos-12.12.1-ufaq5tycbin6snajdr323rqascpittat/spack-build-ufaq\n 5ty'\n 2539 [ 64%] Built target belosepetra\n 2540 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-\n trilinos-12.12.1-ufaq5tycbin6snajdr323rqascpittat/spack-build-ufaq\n 5ty'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-trilinos-12.12.1-ufaq5tycbin6snajdr323rqascpittat/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "dsgvp4nnzvqzhcojdfmssl5b52tnt4yi"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 845,
"repeat_count": 0,
"start": 839,
"end": 852,
"text": ">> 441 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.4.0-2qamht6r3iuyz33vli7g4drmh7utuyid/include -\n c par_mgr_setup.c\n 440 In file included from par_mgr.c:19:",
"post_context": " 442 20 | dLUstruct_t dslu_data_LU;\n 443 | ^~~~~~~~~~~\n >> 444 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 445 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 446 | ^~~~~~~~~~~~~~~~~~\n >> 447 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "e7qtlwbmm5h6khs2ukxcmfziwgyfq3wo"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 848,
"repeat_count": 0,
"start": 842,
"end": 855,
"text": ">> 444 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " erlu-dist-5.4.0-2qamht6r3iuyz33vli7g4drmh7utuyid/include -\n c par_mgr_setup.c\n 440 In file included from par_mgr.c:19:\n >> 441 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 442 20 | dLUstruct_t dslu_data_LU;\n 443 | ^~~~~~~~~~~",
"post_context": " 445 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 446 | ^~~~~~~~~~~~~~~~~~\n >> 447 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'\n 448 25 | dSOLVEstruct_t dslu_solve;\n 449 | ^~~~~~~~~~~~~~\n 450 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':",
"hash": "e7qtlwbmm5h6khs2ukxcmfziwgyfq3wo"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 851,
"repeat_count": 0,
"start": 845,
"end": 858,
"text": ">> 447 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 441 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 442 20 | dLUstruct_t dslu_data_LU;\n 443 | ^~~~~~~~~~~\n >> 444 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 445 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 446 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 448 25 | dSOLVEstruct_t dslu_solve;\n 449 | ^~~~~~~~~~~~~~\n 450 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':\n 451 par_mgr.c:5394:4: warning: implicit declaration of function 'dScale\n PermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fu\n nction-declaration]",
"hash": "e7qtlwbmm5h6khs2ukxcmfziwgyfq3wo"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 874,
"repeat_count": 0,
"start": 868,
"end": 881,
"text": ">> 489 make[1]: *** [par_mgr.o] Error 1",
"pre_context": " env_dir/linux-rhel7-broadwell/gcc-9.3.1/superlu-dist-5.4.0-2qamht6r\n 3iuyz33vli7g4drmh7utuyid/include/superlu_ddefs.h:249:8: note: expec\n ted 'SOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument is\n of type 'int *'\n 487 249 | SOLVEstruct_t *, double *, SuperLUStat_t *, int *);\n 488 | ^~~~~~~~~~~~~~~",
"post_context": " 490 make[1]: *** Waiting for unfinished jobs....\n 491 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.22.1-2flhxjz3xqf5y5sxylanbg4cw5ivkgzr/spack-src/src/parcsr_l\n s'\n >> 492 make: *** [all] Error 1\n",
"hash": "e7qtlwbmm5h6khs2ukxcmfziwgyfq3wo"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 879,
"repeat_count": 0,
"start": 873,
"end": 886,
"text": ">> 492 make: *** [all] Error 1",
"pre_context": " 488 | ^~~~~~~~~~~~~~~\n >> 489 make[1]: *** [par_mgr.o] Error 1\n 490 make[1]: *** Waiting for unfinished jobs....\n 491 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.22.1-2flhxjz3xqf5y5sxylanbg4cw5ivkgzr/spack-src/src/parcsr_l\n s'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-2.22.1-2flhxjz3xqf5y5sxylanbg4cw5ivkgzr/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "e7qtlwbmm5h6khs2ukxcmfziwgyfq3wo"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 851,
"repeat_count": 0,
"start": 845,
"end": 858,
"text": ">> 433 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.1.3-rpwatn23xj4kyoiitioqyhilh3emmrnn/include -c par_\n mgr_setup.c\n 432 In file included from par_mgr.c:19:",
"post_context": " 434 20 | dLUstruct_t dslu_data_LU;\n 435 | ^~~~~~~~~~~\n >> 436 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 437 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 438 | ^~~~~~~~~~~~~~~~~~\n >> 439 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "ehvu5henruckhlu6shjtshmayrxdvkft"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 854,
"repeat_count": 0,
"start": 848,
"end": 861,
"text": ">> 436 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " erlu-dist-5.1.3-rpwatn23xj4kyoiitioqyhilh3emmrnn/include -c par_\n mgr_setup.c\n 432 In file included from par_mgr.c:19:\n >> 433 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 434 20 | dLUstruct_t dslu_data_LU;\n 435 | ^~~~~~~~~~~",
"post_context": " 437 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 438 | ^~~~~~~~~~~~~~~~~~\n >> 439 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'\n 440 25 | dSOLVEstruct_t dslu_solve;\n 441 | ^~~~~~~~~~~~~~\n 442 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':",
"hash": "ehvu5henruckhlu6shjtshmayrxdvkft"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 857,
"repeat_count": 0,
"start": 851,
"end": 864,
"text": ">> 439 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 433 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 434 20 | dLUstruct_t dslu_data_LU;\n 435 | ^~~~~~~~~~~\n >> 436 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 437 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 438 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 440 25 | dSOLVEstruct_t dslu_solve;\n 441 | ^~~~~~~~~~~~~~\n 442 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':\n 443 par_mgr.c:5439:4: warning: implicit declaration of function 'dScale\n PermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fu\n nction-declaration]",
"hash": "ehvu5henruckhlu6shjtshmayrxdvkft"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 880,
"repeat_count": 0,
"start": 874,
"end": 887,
"text": ">> 481 make[1]: *** [par_mgr.o] Error 1",
"pre_context": " env_dir/linux-rhel7-broadwell/gcc-9.3.1/superlu-dist-5.1.3-rpwatn23\n xj4kyoiitioqyhilh3emmrnn/include/superlu_ddefs.h:249:8: note: expec\n ted 'SOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument is\n of type 'int *'\n 479 249 | SOLVEstruct_t *, double *, SuperLUStat_t *, int *);\n 480 | ^~~~~~~~~~~~~~~",
"post_context": " 482 make[1]: *** Waiting for unfinished jobs....\n 483 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.20.0-kzbwei45ffur74whaaxm4zsq47breboo/spack-src/src/parcsr_l\n s'\n >> 484 make: *** [all] Error 1\n",
"hash": "ehvu5henruckhlu6shjtshmayrxdvkft"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 885,
"repeat_count": 0,
"start": 879,
"end": 892,
"text": ">> 484 make: *** [all] Error 1",
"pre_context": " 480 | ^~~~~~~~~~~~~~~\n >> 481 make[1]: *** [par_mgr.o] Error 1\n 482 make[1]: *** Waiting for unfinished jobs....\n 483 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-2.20.0-kzbwei45ffur74whaaxm4zsq47breboo/spack-src/src/parcsr_l\n s'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-2.20.0-kzbwei45ffur74whaaxm4zsq47breboo/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "ehvu5henruckhlu6shjtshmayrxdvkft"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 855,
"repeat_count": 0,
"start": 849,
"end": 862,
"text": ">> 446 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.1.3-zkj4mrznvjjgvgnqqldvga2lju5ofq6z/include\n -c par_mgr.c\n 445 In file included from par_mgr.c:19:",
"post_context": " 447 20 | dLUstruct_t dslu_data_LU;\n 448 | ^~~~~~~~~~~\n >> 449 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 450 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 451 | ^~~~~~~~~~~~~~~~~~\n >> 452 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "euuxlv7gxjjznxxz5b6zbirus6y23pqj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 858,
"repeat_count": 0,
"start": 852,
"end": 865,
"text": ">> 449 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " erlu-dist-5.1.3-zkj4mrznvjjgvgnqqldvga2lju5ofq6z/include\n -c par_mgr.c\n 445 In file included from par_mgr.c:19:\n >> 446 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 447 20 | dLUstruct_t dslu_data_LU;\n 448 | ^~~~~~~~~~~",
"post_context": " 450 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 451 | ^~~~~~~~~~~~~~~~~~\n >> 452 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'\n 453 25 | dSOLVEstruct_t dslu_solve;\n 454 | ^~~~~~~~~~~~~~\n 455 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':",
"hash": "euuxlv7gxjjznxxz5b6zbirus6y23pqj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 861,
"repeat_count": 0,
"start": 855,
"end": 868,
"text": ">> 452 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 446 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 447 20 | dLUstruct_t dslu_data_LU;\n 448 | ^~~~~~~~~~~\n >> 449 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 450 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 451 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 453 25 | dSOLVEstruct_t dslu_solve;\n 454 | ^~~~~~~~~~~~~~\n 455 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':\n 456 par_mgr.c:5523:4: warning: implicit declaration of function 'dScale\n PermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fu\n nction-declaration]",
"hash": "euuxlv7gxjjznxxz5b6zbirus6y23pqj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 884,
"repeat_count": 0,
"start": 878,
"end": 891,
"text": ">> 494 make[1]: *** [par_mgr.o] Error 1",
"pre_context": " env_dir/linux-rhel7-broadwell/gcc-9.3.1/superlu-dist-5.1.3-zkj4mrzn\n vjjgvgnqqldvga2lju5ofq6z/include/superlu_ddefs.h:249:8: note: expec\n ted 'SOLVEstruct_t *' {aka 'struct <anonymous> *'} but argument is\n of type 'int *'\n 492 249 | SOLVEstruct_t *, double *, SuperLUStat_t *, int *);\n 493 | ^~~~~~~~~~~~~~~",
"post_context": " 495 make[1]: *** Waiting for unfinished jobs....\n 496 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-develop-nzqqp6lx3glzjfabb2dtsrvvwbchm5f5/spack-src/src/parcsr_\n ls'\n >> 497 make: *** [all] Error 1\n",
"hash": "euuxlv7gxjjznxxz5b6zbirus6y23pqj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 889,
"repeat_count": 0,
"start": 883,
"end": 896,
"text": ">> 497 make: *** [all] Error 1",
"pre_context": " 493 | ^~~~~~~~~~~~~~~\n >> 494 make[1]: *** [par_mgr.o] Error 1\n 495 make[1]: *** Waiting for unfinished jobs....\n 496 make[1]: Leaving directory `/tmp/koparasy/spack-stage/spack-stage-h\n ypre-develop-nzqqp6lx3glzjfabb2dtsrvvwbchm5f5/spack-src/src/parcsr_\n ls'",
"post_context": "\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-hypre-develop-nzqqp6lx3glzjfabb2dtsrvvwbchm5f5/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/build_environment.py\", line 1035, in _setup_pkg_and_run",
"hash": "euuxlv7gxjjznxxz5b6zbirus6y23pqj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 844,
"repeat_count": 0,
"start": 838,
"end": 851,
"text": ">> 440 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'",
"pre_context": " sr_mv -I./../distributed_matrix -I./../matrix_matrix -I./../IJ_mv -\n I./../parcsr_block_mv -I/p/vast1/koparasy/BUILD/spack_cluster_insta\n ller/quartz/petsc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/sup\n erlu-dist-5.4.0-cbjigxkc7zr4h2mz2iilovowhhca4qn6/include -\n c par_mgr.c\n 439 In file included from par_mgr.c:19:",
"post_context": " 441 20 | dLUstruct_t dslu_data_LU;\n 442 | ^~~~~~~~~~~\n >> 443 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 444 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 445 | ^~~~~~~~~~~~~~~~~~\n >> 446 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"hash": "fnukuiqyzwxxv6v754ecbc5x5lkfglr4"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 847,
"repeat_count": 0,
"start": 841,
"end": 854,
"text": ">> 443 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'",
"pre_context": " erlu-dist-5.4.0-cbjigxkc7zr4h2mz2iilovowhhca4qn6/include -\n c par_mgr.c\n 439 In file included from par_mgr.c:19:\n >> 440 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 441 20 | dLUstruct_t dslu_data_LU;\n 442 | ^~~~~~~~~~~",
"post_context": " 444 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 445 | ^~~~~~~~~~~~~~~~~~\n >> 446 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'\n 447 25 | dSOLVEstruct_t dslu_solve;\n 448 | ^~~~~~~~~~~~~~\n 449 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':",
"hash": "fnukuiqyzwxxv6v754ecbc5x5lkfglr4"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 850,
"repeat_count": 0,
"start": 844,
"end": 857,
"text": ">> 446 dsuperlu.h:25:4: error: unknown type name 'dSOLVEstruct_t'",
"pre_context": " >> 440 dsuperlu.h:20:4: error: unknown type name 'dLUstruct_t'\n 441 20 | dLUstruct_t dslu_data_LU;\n 442 | ^~~~~~~~~~~\n >> 443 dsuperlu.h:24:4: error: unknown type name 'dScalePermstruct_t'\n 444 24 | dScalePermstruct_t dslu_ScalePermstruct;\n 445 | ^~~~~~~~~~~~~~~~~~",
"post_context": " 447 25 | dSOLVEstruct_t dslu_solve;\n 448 | ^~~~~~~~~~~~~~\n 449 par_mgr.c: In function 'hypre_MGRDirectSolverSetup':\n 450 par_mgr.c:5404:4: warning: implicit declaration of function 'dScale\n PermstructInit'; did you mean 'ScalePermstructInit'? [-Wimplicit-fu\n nction-declaration]",
"hash": "fnukuiqyzwxxv6v754ecbc5x5lkfglr4"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,