-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-22b5d93b2b.log
1711 lines (1700 loc) · 81.6 KB
/
1.6.0-DEV-22b5d93b2b.log
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
Julia Version 1.6.0-DEV.1069
Commit 22b5d93b2b (2020-09-28 17:33 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-10.0.1 (ORCJIT, skylake-avx512)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed CEnum ──────────────────────── v0.2.0
Installed Zlib_jll ───────────────────── v1.2.11+16
Installed DataStructures ─────────────── v0.17.20
Installed ClimateMachine ─────────────── v0.1.0
Installed QuadGK ─────────────────────── v2.4.1
Installed ExprTools ──────────────────── v0.1.2
Installed OffsetArrays ───────────────── v1.3.0
Installed CUDAapi ────────────────────── v3.1.0
Installed MPI ────────────────────────── v0.14.3
Installed Requires ───────────────────── v1.0.3
Installed OpenMPI_jll ────────────────── v4.0.2+2
Installed GenericSchur ───────────────── v0.4.0
Installed CUDAdrv ────────────────────── v6.0.0
Installed TranscodingStreams ─────────── v0.9.5
Installed Coverage ───────────────────── v1.1.1
Installed CoverageTools ──────────────── v1.1.0
Installed EzXML ──────────────────────── v1.1.0
Installed DiffResults ────────────────── v1.0.2
Installed Rmath_jll ──────────────────── v0.2.2+1
Installed SortingAlgorithms ──────────── v0.3.1
Installed Libiconv_jll ───────────────── v1.16.0+6
Installed CompilerSupportLibraries_jll ─ v0.3.3+0
Installed ForwardDiff ────────────────── v0.10.12
Installed JLD2 ───────────────────────── v0.1.14
Installed Distributions ──────────────── v0.23.8
Installed Literate ───────────────────── v2.7.0
Installed CUDAnative ─────────────────── v2.10.2
Installed HTTP ───────────────────────── v0.8.19
Installed MicrosoftMPI_jll ───────────── v10.1.2+3
Installed Conda ──────────────────────── v1.4.1
Installed GaussQuadrature ────────────── v0.5.4
Installed MPICH_jll ──────────────────── v3.3.2+10
Installed VersionParsing ─────────────── v1.2.0
Installed AbstractFFTs ───────────────── v0.5.0
Installed Missings ───────────────────── v0.4.4
Installed FileIO ─────────────────────── v1.4.3
Installed CLIMAParameters ────────────── v0.1.8
Installed TextWrap ───────────────────── v1.0.1
Installed RootSolvers ────────────────── v0.2.0
Installed TimerOutputs ───────────────── v0.5.6
Installed CommonSubexpressions ───────── v0.3.0
Installed PDMats ─────────────────────── v0.10.1
Installed NNlib ──────────────────────── v0.6.6
Installed CFTime ─────────────────────── v0.1.0
Installed Mocking ────────────────────── v0.7.1
Installed URIParser ──────────────────── v0.4.1
Installed Intervals ──────────────────── v1.4.2
Installed SpecialFunctions ───────────── v0.10.3
Installed Parsers ────────────────────── v1.0.10
Installed OpenSpecFun_jll ────────────── v0.5.3+3
Installed Polynomials ────────────────── v1.1.9
Installed GenericSVD ─────────────────── v0.3.0
Installed OrderedCollections ─────────── v1.3.1
Installed MbedTLS_jll ────────────────── v2.16.8+0
Installed GPUArrays ──────────────────── v2.0.1
Installed LightXML ───────────────────── v0.9.0
Installed XML2_jll ───────────────────── v2.9.10+2
Installed DataAPI ────────────────────── v1.3.0
Installed MbedTLS ────────────────────── v1.0.2
Installed Adapt ──────────────────────── v1.1.0
Installed StaticArrays ───────────────── v0.12.4
Installed JSON ───────────────────────── v0.21.1
Installed BinaryProvider ─────────────── v0.5.10
Installed DocStringExtensions ────────── v0.8.3
Installed CondaBinDeps ───────────────── v0.2.0
Installed MacroTools ─────────────────── v0.5.5
Installed WriteVTK ───────────────────── v1.7.3
Installed LLVM ───────────────────────── v1.7.0
Installed StatsBase ──────────────────── v0.33.1
Installed StatsFuns ──────────────────── v0.9.5
Installed FillArrays ─────────────────── v0.8.14
Installed ArgParse ───────────────────── v1.1.0
Installed Combinatorics ──────────────── v1.0.2
Installed DoubleFloats ───────────────── v1.1.13
Installed NCDatasets ─────────────────── v0.10.4
Installed BinDeps ────────────────────── v1.0.1
Installed KernelAbstractions ─────────── v0.2.3
Installed NaNMath ────────────────────── v0.3.4
Installed CuArrays ───────────────────── v1.7.3
Installed MatrixFactorizations ───────── v0.5.2
Installed Rmath ──────────────────────── v0.6.1
Installed TimeZones ──────────────────── v1.4.0
Installed LazyArrays ─────────────────── v0.16.16
Installed CodecZlib ──────────────────── v0.7.0
Installed IniFile ────────────────────── v0.5.0
Installed RecipesBase ────────────────── v1.1.0
Installed ArrayLayouts ───────────────── v0.3.8
Installed Quadmath ───────────────────── v0.5.4
Installed Cassette ───────────────────── v0.3.3
Installed DiffRules ──────────────────── v1.0.1
Updating `~/.julia/environments/v1.6/Project.toml`
[777c4786] + ClimateMachine v0.1.0
Updating `~/.julia/environments/v1.6/Manifest.toml`
[621f4979] + AbstractFFTs v0.5.0
[79e6a3ab] + Adapt v1.1.0
[c7e460c6] + ArgParse v1.1.0
[4c555306] + ArrayLayouts v0.3.8
[9e28174c] + BinDeps v1.0.1
[b99e7846] + BinaryProvider v0.5.10
[fa961155] + CEnum v0.2.0
[179af706] + CFTime v0.1.0
[6eacf6c3] + CLIMAParameters v0.1.8
[3895d2a7] + CUDAapi v3.1.0
[c5f51814] + CUDAdrv v6.0.0
[be33ccc6] + CUDAnative v2.10.2
[7057c7e9] + Cassette v0.3.3
[777c4786] + ClimateMachine v0.1.0
[944b1d66] + CodecZlib v0.7.0
[861a8166] + Combinatorics v1.0.2
[bbf7d656] + CommonSubexpressions v0.3.0
[e66e0078] + CompilerSupportLibraries_jll v0.3.3+0
[8f4d0f93] + Conda v1.4.1
[a9693cdc] + CondaBinDeps v0.2.0
[a2441757] + Coverage v1.1.1
[c36e975a] + CoverageTools v1.1.0
[3a865a2d] + CuArrays v1.7.3
[9a962f9c] + DataAPI v1.3.0
[864edb3b] + DataStructures v0.17.20
[163ba53b] + DiffResults v1.0.2
[b552c78f] + DiffRules v1.0.1
[31c24e10] + Distributions v0.23.8
[ffbed154] + DocStringExtensions v0.8.3
[497a8b3b] + DoubleFloats v1.1.13
[e2ba6199] + ExprTools v0.1.2
[8f5d6c58] + EzXML v1.1.0
[5789e2e9] + FileIO v1.4.3
[1a297f60] + FillArrays v0.8.14
[f6369f11] + ForwardDiff v0.10.12
[0c68f7d7] + GPUArrays v2.0.1
[d54b0c1a] + GaussQuadrature v0.5.4
[01680d73] + GenericSVD v0.3.0
[c145ed77] + GenericSchur v0.4.0
[cd3eb016] + HTTP v0.8.19
[83e8ac13] + IniFile v0.5.0
[d8418881] + Intervals v1.4.2
[033835bb] + JLD2 v0.1.14
[682c06a0] + JSON v0.21.1
[63c18a36] + KernelAbstractions v0.2.3
[929cbde3] + LLVM v1.7.0
[5078a376] + LazyArrays v0.16.16
[94ce4f54] + Libiconv_jll v1.16.0+6
[9c8b4983] + LightXML v0.9.0
[98b081ad] + Literate v2.7.0
[da04e1cc] + MPI v0.14.3
[7cb0a576] + MPICH_jll v3.3.2+10
[1914dd2f] + MacroTools v0.5.5
[a3b82374] + MatrixFactorizations v0.5.2
[739be429] + MbedTLS v1.0.2
[c8ffd9c3] + MbedTLS_jll v2.16.8+0
[9237b28f] + MicrosoftMPI_jll v10.1.2+3
[e1d29d7a] + Missings v0.4.4
[78c3b35d] + Mocking v0.7.1
[85f8d34a] + NCDatasets v0.10.4
[872c559c] + NNlib v0.6.6
[77ba4419] + NaNMath v0.3.4
[6fe1bfb0] + OffsetArrays v1.3.0
[fe0851c0] + OpenMPI_jll v4.0.2+2
[efe28fd5] + OpenSpecFun_jll v0.5.3+3
[bac558e1] + OrderedCollections v1.3.1
[90014a1f] + PDMats v0.10.1
[69de0a69] + Parsers v1.0.10
[f27b6e38] + Polynomials v1.1.9
[1fd47b50] + QuadGK v2.4.1
[be4d8f0f] + Quadmath v0.5.4
[3cdcf5f2] + RecipesBase v1.1.0
[ae029012] + Requires v1.0.3
[79098fc4] + Rmath v0.6.1
[f50d1b31] + Rmath_jll v0.2.2+1
[7181ea78] + RootSolvers v0.2.0
[a2af1166] + SortingAlgorithms v0.3.1
[276daf66] + SpecialFunctions v0.10.3
[90137ffa] + StaticArrays v0.12.4
[2913bbd2] + StatsBase v0.33.1
[4c63d2b9] + StatsFuns v0.9.5
[b718987f] + TextWrap v1.0.1
[f269a46b] + TimeZones v1.4.0
[a759f4b9] + TimerOutputs v0.5.6
[3bb67fe8] + TranscodingStreams v0.9.5
[30578b45] + URIParser v0.4.1
[81def892] + VersionParsing v1.2.0
[64499a7a] + WriteVTK v1.7.3
[02c8fc9c] + XML2_jll v2.9.10+2
[83775a58] + Zlib_jll v1.2.11+16
[56f22d72] + Artifacts
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[4607b0f0] + SuiteSparse
[fa267f1f] + TOML
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building MPI ───────→ `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/0fc37a7feb384b51bd6e841ea6cfc424623aab74/build.log`
Building Conda ─────→ `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/7a58bb32ce5d85f8bf7559aa7c2842f9aecf52fc/build.log`
Building NNlib ─────→ `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/d9f196d911f55aeaff11b11f681b135980783824/build.log`
Building NCDatasets → `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/31ce6711bc8fa173d97c59066e78caa2846ed200/build.log`
Building TimeZones ─→ `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/2c48caca8f3912857973590a9757e1f86cbbff81/build.log`
Testing ClimateMachine
Status `/tmp/jl_ZeNbY0/Project.toml`
[79e6a3ab] Adapt v1.1.0
[c7e460c6] ArgParse v1.1.0
[6eacf6c3] CLIMAParameters v0.1.8
[3895d2a7] CUDAapi v3.1.0
[c5f51814] CUDAdrv v6.0.0
[be33ccc6] CUDAnative v2.10.2
[777c4786] ClimateMachine v0.1.0
[861a8166] Combinatorics v1.0.2
[a2441757] Coverage v1.1.1
[3a865a2d] CuArrays v1.7.3
[31c24e10] Distributions v0.23.8
[ffbed154] DocStringExtensions v0.8.3
[497a8b3b] DoubleFloats v1.1.13
[5789e2e9] FileIO v1.4.3
[f6369f11] ForwardDiff v0.10.12
[d54b0c1a] GaussQuadrature v0.5.4
[033835bb] JLD2 v0.1.14
[63c18a36] KernelAbstractions v0.2.3
[5078a376] LazyArrays v0.16.16
[98b081ad] Literate v2.7.0
[da04e1cc] MPI v0.14.3
[85f8d34a] NCDatasets v0.10.4
[bac558e1] OrderedCollections v1.3.1
[7181ea78] RootSolvers v0.2.0
[276daf66] SpecialFunctions v0.10.3
[90137ffa] StaticArrays v0.12.4
[64499a7a] WriteVTK v1.7.3
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[44cfe95a] Pkg
[de0858da] Printf
[9a3f8284] Random
[10745b16] Statistics
[8dfed614] Test
Status `/tmp/jl_ZeNbY0/Manifest.toml`
[621f4979] AbstractFFTs v0.5.0
[79e6a3ab] Adapt v1.1.0
[c7e460c6] ArgParse v1.1.0
[4c555306] ArrayLayouts v0.3.8
[9e28174c] BinDeps v1.0.1
[b99e7846] BinaryProvider v0.5.10
[fa961155] CEnum v0.2.0
[179af706] CFTime v0.1.0
[6eacf6c3] CLIMAParameters v0.1.8
[3895d2a7] CUDAapi v3.1.0
[c5f51814] CUDAdrv v6.0.0
[be33ccc6] CUDAnative v2.10.2
[7057c7e9] Cassette v0.3.3
[777c4786] ClimateMachine v0.1.0
[944b1d66] CodecZlib v0.7.0
[861a8166] Combinatorics v1.0.2
[bbf7d656] CommonSubexpressions v0.3.0
[e66e0078] CompilerSupportLibraries_jll v0.3.3+0
[8f4d0f93] Conda v1.4.1
[a9693cdc] CondaBinDeps v0.2.0
[a2441757] Coverage v1.1.1
[c36e975a] CoverageTools v1.1.0
[3a865a2d] CuArrays v1.7.3
[9a962f9c] DataAPI v1.3.0
[864edb3b] DataStructures v0.17.20
[163ba53b] DiffResults v1.0.2
[b552c78f] DiffRules v1.0.1
[31c24e10] Distributions v0.23.8
[ffbed154] DocStringExtensions v0.8.3
[497a8b3b] DoubleFloats v1.1.13
[e2ba6199] ExprTools v0.1.2
[8f5d6c58] EzXML v1.1.0
[5789e2e9] FileIO v1.4.3
[1a297f60] FillArrays v0.8.14
[f6369f11] ForwardDiff v0.10.12
[0c68f7d7] GPUArrays v2.0.1
[d54b0c1a] GaussQuadrature v0.5.4
[01680d73] GenericSVD v0.3.0
[c145ed77] GenericSchur v0.4.0
[cd3eb016] HTTP v0.8.19
[83e8ac13] IniFile v0.5.0
[d8418881] Intervals v1.4.2
[033835bb] JLD2 v0.1.14
[682c06a0] JSON v0.21.1
[63c18a36] KernelAbstractions v0.2.3
[929cbde3] LLVM v1.7.0
[5078a376] LazyArrays v0.16.16
[94ce4f54] Libiconv_jll v1.16.0+6
[9c8b4983] LightXML v0.9.0
[98b081ad] Literate v2.7.0
[da04e1cc] MPI v0.14.3
[7cb0a576] MPICH_jll v3.3.2+10
[1914dd2f] MacroTools v0.5.5
[a3b82374] MatrixFactorizations v0.5.2
[739be429] MbedTLS v1.0.2
[c8ffd9c3] MbedTLS_jll v2.16.8+0
[9237b28f] MicrosoftMPI_jll v10.1.2+3
[e1d29d7a] Missings v0.4.4
[78c3b35d] Mocking v0.7.1
[85f8d34a] NCDatasets v0.10.4
[872c559c] NNlib v0.6.6
[77ba4419] NaNMath v0.3.4
[6fe1bfb0] OffsetArrays v1.3.0
[fe0851c0] OpenMPI_jll v4.0.2+2
[efe28fd5] OpenSpecFun_jll v0.5.3+3
[bac558e1] OrderedCollections v1.3.1
[90014a1f] PDMats v0.10.1
[69de0a69] Parsers v1.0.10
[f27b6e38] Polynomials v1.1.9
[1fd47b50] QuadGK v2.4.1
[be4d8f0f] Quadmath v0.5.4
[3cdcf5f2] RecipesBase v1.1.0
[ae029012] Requires v1.0.3
[79098fc4] Rmath v0.6.1
[f50d1b31] Rmath_jll v0.2.2+1
[7181ea78] RootSolvers v0.2.0
[a2af1166] SortingAlgorithms v0.3.1
[276daf66] SpecialFunctions v0.10.3
[90137ffa] StaticArrays v0.12.4
[2913bbd2] StatsBase v0.33.1
[4c63d2b9] StatsFuns v0.9.5
[b718987f] TextWrap v1.0.1
[f269a46b] TimeZones v1.4.0
[a759f4b9] TimerOutputs v0.5.6
[3bb67fe8] TranscodingStreams v0.9.5
[30578b45] URIParser v0.4.1
[81def892] VersionParsing v1.2.0
[64499a7a] WriteVTK v1.7.3
[02c8fc9c] XML2_jll v2.9.10+2
[83775a58] Zlib_jll v1.2.11+16
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[b77e0a4c] InteractiveUtils
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[4607b0f0] SuiteSparse
[fa267f1f] TOML
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
Testing Running tests...
Starting tests for InputOutput
Starting tests for Writers
ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined
Stacktrace:
[1] include(mod::Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
InputOutput: Error During Test at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/InputOutput/runtests.jl:3
Got exception outside of a @test
LoadError: Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
[7] include(fname::String)
@ Base.MainInclude ./client.jl:444
[8] macro expansion
@ ./timing.jl:233 [inlined]
[9] include_test(_module::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:8
[10] macro expansion
@ ~/.julia/packages/ClimateMachine/CCjXq/test/InputOutput/runtests.jl:7 [inlined]
[11] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113 [inlined]
[12] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/InputOutput/runtests.jl:4
[13] include(fname::String)
@ Base.MainInclude ./client.jl:444
[14] macro expansion
@ ./timing.jl:233 [inlined]
[15] include_test(_module::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:8
[16] macro expansion
@ ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:29 [inlined]
[17] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113 [inlined]
[18] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:15
[19] include(fname::String)
@ Base.MainInclude ./client.jl:444
[20] top-level scope
@ none:6
[21] eval(m::Module, e::Any)
@ Core ./boot.jl:360
[22] exec_options(opts::Base.JLOptions)
@ Base ./client.jl:261
[23] _start()
@ Base ./client.jl:485
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/InputOutput/Writers/runtests.jl:5
Completed tests for InputOutput, 88 seconds elapsed
Starting tests for Utilities
Starting tests for TicToc
ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined
Stacktrace:
[1] include(mod::Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
Utilities: Error During Test at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Utilities/runtests.jl:3
Got exception outside of a @test
LoadError: Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
[7] include(fname::String)
@ Base.MainInclude ./client.jl:444
[8] macro expansion
@ ./timing.jl:233 [inlined]
[9] include_test(_module::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:8
[10] macro expansion
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Utilities/runtests.jl:7 [inlined]
[11] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113 [inlined]
[12] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Utilities/runtests.jl:4
[13] include(fname::String)
@ Base.MainInclude ./client.jl:444
[14] macro expansion
@ ./timing.jl:233 [inlined]
[15] include_test(_module::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:8
[16] macro expansion
@ ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:29 [inlined]
[17] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113 [inlined]
[18] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:15
[19] include(fname::String)
@ Base.MainInclude ./client.jl:444
[20] top-level scope
@ none:6
[21] eval(m::Module, e::Any)
@ Core ./boot.jl:360
[22] exec_options(opts::Base.JLOptions)
@ Base ./client.jl:261
[23] _start()
@ Base ./client.jl:485
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Utilities/TicToc/runtests.jl:2
Completed tests for Utilities, 9 seconds elapsed
Starting tests for Common
Starting tests for MoistThermodynamics
ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined
Stacktrace:
[1] include(mod::Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
Common: Error During Test at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Common/runtests.jl:3
Got exception outside of a @test
LoadError: Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
[7] include(fname::String)
@ Base.MainInclude ./client.jl:444
[8] macro expansion
@ ./timing.jl:233 [inlined]
[9] include_test(_module::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:8
[10] macro expansion
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Common/runtests.jl:7 [inlined]
[11] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113 [inlined]
[12] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Common/runtests.jl:4
[13] include(fname::String)
@ Base.MainInclude ./client.jl:444
[14] macro expansion
@ ./timing.jl:233 [inlined]
[15] include_test(_module::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:8
[16] macro expansion
@ ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:29 [inlined]
[17] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113 [inlined]
[18] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/runtests.jl:15
[19] include(fname::String)
@ Base.MainInclude ./client.jl:444
[20] top-level scope
@ none:6
[21] eval(m::Module, e::Any)
@ Core ./boot.jl:360
[22] exec_options(opts::Base.JLOptions)
@ Base ./client.jl:261
[23] _start()
@ Base ./client.jl:485
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Common/MoistThermodynamics/runtests.jl:2
Completed tests for Common, 9 seconds elapsed
Starting tests for Arrays
┌ Info: Running MPI test...
│ file = "/home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/basics.jl"
└ ntasks = 1
ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined
Stacktrace:
[1] include(mod::Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
ERROR: LoadError: Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/basics.jl:3
MPIStateArrays reductions: Error During Test at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
Test threw exception
Expression: mpiexec() do cmd
run(`$cmd $oversubscribe -n $ntasks $(Base.julia_cmd()) --startup-file=no --project=$(Base.active_project()) $file`)
true
end
failed process: Process(`/home/pkgeval/.julia/artifacts/2fcd463fb9498f362be9d1c4ef70a63c920b0e96/bin/mpiexec -n 1 /opt/julia/bin/julia -Cnative -J/opt/julia/lib/julia/sys.so --depwarn=yes --check-bounds=yes -g1 --startup-file=no --startup-file=no --project=/tmp/jl_ZeNbY0/Project.toml /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/basics.jl`, ProcessExited(1)) [1]
Stacktrace:
[1] pipeline_error
@ ./process.jl:525 [inlined]
[2] run(::Cmd; wait::Bool)
@ Base ./process.jl:440
[3] run
@ ./process.jl:438 [inlined]
[4] (::var"#2#3"{Int64, String})(cmd::String)
@ Main ./none:0
[5] (::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}})()
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:79
[6] withenv(::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}}, ::Pair{String, String}, ::Vararg{Pair{String, String}, N} where N)
@ Base ./env.jl:161
[7] mpiexec(f::var"#2#3"{Int64, String}; adjust_PATH::Bool, adjust_LIBPATH::Bool)
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:78
[8] mpiexec
@ ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:61 [inlined]
[9] macro expansion
@ ./timing.jl:174 [inlined]
[10] runmpi(file::String; ntasks::Int64)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
[11] runmpi(file::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:4
[12] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:5
[13] top-level scope
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113
[14] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:5
15.613758 seconds (1.52 M allocations: 81.568 MiB, 0.34% gc time)
┌ Info: Running MPI test...
│ file = "/home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/broadcasting.jl"
└ ntasks = 1
ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined
Stacktrace:
[1] include(mod::Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
ERROR: LoadError: Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/broadcasting.jl:3
MPIStateArrays reductions: Error During Test at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
Test threw exception
Expression: mpiexec() do cmd
run(`$cmd $oversubscribe -n $ntasks $(Base.julia_cmd()) --startup-file=no --project=$(Base.active_project()) $file`)
true
end
failed process: Process(`/home/pkgeval/.julia/artifacts/2fcd463fb9498f362be9d1c4ef70a63c920b0e96/bin/mpiexec -n 1 /opt/julia/bin/julia -Cnative -J/opt/julia/lib/julia/sys.so --depwarn=yes --check-bounds=yes -g1 --startup-file=no --startup-file=no --project=/tmp/jl_ZeNbY0/Project.toml /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/broadcasting.jl`, ProcessExited(1)) [1]
Stacktrace:
[1] pipeline_error
@ ./process.jl:525 [inlined]
[2] run(::Cmd; wait::Bool)
@ Base ./process.jl:440
[3] run
@ ./process.jl:438 [inlined]
[4] (::var"#2#3"{Int64, String})(cmd::String)
@ Main ./none:0
[5] (::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}})()
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:79
[6] withenv(::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}}, ::Pair{String, String}, ::Vararg{Pair{String, String}, N} where N)
@ Base ./env.jl:161
[7] mpiexec(f::var"#2#3"{Int64, String}; adjust_PATH::Bool, adjust_LIBPATH::Bool)
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:78
[8] mpiexec
@ ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:61 [inlined]
[9] macro expansion
@ ./timing.jl:174 [inlined]
[10] runmpi(file::String; ntasks::Int64)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
[11] runmpi(file::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:4
[12] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:6
[13] top-level scope
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113
[14] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:5
12.652526 seconds (4.69 k allocations: 343.688 KiB)
┌ Info: Running MPI test...
│ file = "/home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl"
└ ntasks = 1
ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined
Stacktrace:
[1] include(mod::Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
ERROR: LoadError: Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl:4
MPIStateArrays reductions: Error During Test at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
Test threw exception
Expression: mpiexec() do cmd
run(`$cmd $oversubscribe -n $ntasks $(Base.julia_cmd()) --startup-file=no --project=$(Base.active_project()) $file`)
true
end
failed process: Process(`/home/pkgeval/.julia/artifacts/2fcd463fb9498f362be9d1c4ef70a63c920b0e96/bin/mpiexec -n 1 /opt/julia/bin/julia -Cnative -J/opt/julia/lib/julia/sys.so --depwarn=yes --check-bounds=yes -g1 --startup-file=no --startup-file=no --project=/tmp/jl_ZeNbY0/Project.toml /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl`, ProcessExited(1)) [1]
Stacktrace:
[1] pipeline_error
@ ./process.jl:525 [inlined]
[2] run(::Cmd; wait::Bool)
@ Base ./process.jl:440
[3] run
@ ./process.jl:438 [inlined]
[4] (::var"#2#3"{Int64, String})(cmd::String)
@ Main ./none:0
[5] (::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}})()
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:79
[6] withenv(::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}}, ::Pair{String, String}, ::Vararg{Pair{String, String}, N} where N)
@ Base ./env.jl:161
[7] mpiexec(f::var"#2#3"{Int64, String}; adjust_PATH::Bool, adjust_LIBPATH::Bool)
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:78
[8] mpiexec
@ ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:61 [inlined]
[9] macro expansion
@ ./timing.jl:174 [inlined]
[10] runmpi(file::String; ntasks::Int64)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
[11] runmpi(file::String)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:4
[12] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:7
[13] top-level scope
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113
[14] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:5
12.559335 seconds (4.69 k allocations: 344.016 KiB)
┌ Info: Running MPI test...
│ file = "/home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl"
└ ntasks = 3
ERROR: ERROR: LoadError: LoadError: LoadError: LoadError: ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined
Stacktrace:
[1] include(UndefVarError: MP_n_0 not defined
Stacktrace:
[1] mod::include(mod::Module, _path::String)
@ UndefVarError: MP_n_0 not defined
Stacktrace:
[1] Base ./includeBase.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
(Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
mod::ERROR: ERROR: Module, _path::String)
@ Base ./Base.jl:389
[2] include(x::String)
@ ClimateMachine ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
[3] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:15
[4] include
@ ./Base.jl:389 [inlined]
[5] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String)
@ Base ./loading.jl:1144
[6] top-level scope
@ none:1
[7] eval
@ ./boot.jl:360 [inlined]
[8] eval(x::Expr)
@ Base.MainInclude ./client.jl:446
[9] top-level scope
@ none:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/Atmos/Parameterizations/CloudPhysics/Microphysics.jl:1
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/src/ClimateMachine.jl:1
LoadError: LoadError: ERROR: LoadError: Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] error(Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] Failed to precompile ClimateMachine [777c4786-024f-11e9-21a3-85d5d4106250] to /home/pkgeval/.julia/compiled/v1.6/ClimateMachine/QNtDh_C8XVm.ji.
Stacktrace:
[1] errors::error((s::s::String)
@ String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl:4
Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl:4
String)
@ Base ./error.jl:33
[2] compilecache(pkg::Base.PkgId, path::String, show_errors::Bool)
@ Base ./loading.jl:1279
[3] compilecache
@ ./loading.jl:1232 [inlined]
[4] _require(pkg::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:953
[5] require(uuidkey::Base.PkgId, cache::Base.TOMLCache)
@ Base ./loading.jl:846
[6] require(into::Module, mod::Symbol)
@ Base ./loading.jl:833
in expression starting at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl:4
MPIStateArrays reductions: Error During Test at /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
Test threw exception
Expression: mpiexec() do cmd
run(`$cmd $oversubscribe -n $ntasks $(Base.julia_cmd()) --startup-file=no --project=$(Base.active_project()) $file`)
true
end
failed process: Process(`/home/pkgeval/.julia/artifacts/2fcd463fb9498f362be9d1c4ef70a63c920b0e96/bin/mpiexec -n 3 /opt/julia/bin/julia -Cnative -J/opt/julia/lib/julia/sys.so --depwarn=yes --check-bounds=yes -g1 --startup-file=no --startup-file=no --project=/tmp/jl_ZeNbY0/Project.toml /home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/reductions.jl`, ProcessExited(1)) [1]
Stacktrace:
[1] pipeline_error
@ ./process.jl:525 [inlined]
[2] run(::Cmd; wait::Bool)
@ Base ./process.jl:440
[3] run
@ ./process.jl:438 [inlined]
[4] (::var"#2#3"{Int64, String})(cmd::String)
@ Main ./none:0
[5] (::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}})()
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:79
[6] withenv(::MPICH_jll.var"#8#9"{var"#2#3"{Int64, String}}, ::Pair{String, String}, ::Vararg{Pair{String, String}, N} where N)
@ Base ./env.jl:161
[7] mpiexec(f::var"#2#3"{Int64, String}; adjust_PATH::Bool, adjust_LIBPATH::Bool)
@ MPICH_jll ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:78
[8] mpiexec
@ ~/.julia/packages/MPICH_jll/ekpo2/src/wrappers/x86_64-linux-gnu-libgfortran4.jl:61 [inlined]
[9] macro expansion
@ ./timing.jl:174 [inlined]
[10] runmpi(file::String; ntasks::Int64)
@ Main ~/.julia/packages/ClimateMachine/CCjXq/test/testhelpers.jl:21
[11] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:8
[12] top-level scope
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1113
[13] top-level scope
@ ~/.julia/packages/ClimateMachine/CCjXq/test/Arrays/runtests.jl:5
19.888486 seconds (4.46 k allocations: 326.719 KiB)
┌ Info: Running MPI test...
│ file = "/home/pkgeval/.julia/packages/ClimateMachine/CCjXq/test/Arrays/varsindex.jl"
└ ntasks = 1
ERROR: LoadError: LoadError: UndefVarError: MP_n_0 not defined