Hi!
I am running a Julia code on university’s HPC and actually it works fine unless I run the same code using two different nodes at the same time. I get this precompilation error, which I don’t how to solve. I guess it has something to do that both processes are using the same Pkg collection, meaning that they are precompiling same modules/packages. Thanks for your help
┌ Warning: Module DataStructures with build ID 9970418894265805 is missing from the cache.
│ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
└ @ Base loading.jl:941
┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
│ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
└ @ Base loading.jl:963
┌ Warning: Module DataStructures with build ID 9970419130506598 is missing from the cache.
│ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
└ @ Base loading.jl:941
┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
│ exception = ArgumentError: Invalid header in cache file /home/userAAA/.julia/compiled/v1.0/PDMats/wuzEE.ji.
└ @ Base loading.jl:963
┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
│ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
└ @ Base loading.jl:963
ERROR: LoadError: MethodError: no method matching getindex(::ErrorException, ::Int64)
Stacktrace:
[1] _include_from_serialized(::String, ::Array{Any,1}) at ./loading.jl:615
[2] _require_from_serialized(::String) at ./loading.jl:678
[3] _require(::Base.PkgId) at ./logging.jl:317
[4] require(::Base.PkgId) at ./loading.jl:852
[5] macro expansion at ./logging.jl:311 [inlined]
[6] require(::Module, ::Symbol) at ./loading.jl:834
[7] include at ./boot.jl:317 [inlined]
[8] include_relative(::Module, ::String) at ./loading.jl:1038
[9] include(::Module, ::String) at ./sysimg.jl:29
[10] top-level scope at none:2
[11] eval at ./boot.jl:319 [inlined]
[12] eval(::Expr) at ./client.jl:389
[13] top-level scope at ./none:3
in expression starting at /home/userAAA/.julia/packages/TVPVARPkg/yr0dR/src/TVPVARPkg.jl:10
┌ Warning: The call to compilecache failed to create a usable precompiled cache file for TVPVARPkg [da917d6a-ac4c-11e8-3f88-f9a7edfdbf5e]
│ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/TVPVARPkg/lg9Wo.ji.
└ @ Base loading.jl:963
┌ Warning: The call to compilecache failed to create a usable precompiled cache file for TVPVARPkg [da917d6a-ac4c-11e8-3f88-f9a7edfdbf5e]
│ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/TVPVARPkg/lg9Wo.ji.
└ @ Base loading.jl:963
┌ Warning: The call to compilecache failed to create a usable precompiled cache file for TVPVARPkg [da917d6a-ac4c-11e8-3f88-f9a7edfdbf5e]
│ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/TVPVARPkg/lg9Wo.ji.
└ @ Base loading.jl:963
ERROR: LoadError: On worker 2:
Failed to precompile TVPVARPkg [da917d6a-ac4c-11e8-3f88-f9a7edfdbf5e] to /home/userAAA/.julia/compiled/v1.0/TVPVARPkg/lg9Wo.ji.
error at ./error.jl:33
macro expansion at ./logging.jl:313 [inlined]
compilecache at ./loading.jl:1184
_require at ./logging.jl:311
require at ./loading.jl:852
macro expansion at ./logging.jl:311 [inlined]
require at ./loading.jl:834
eval at ./boot.jl:319
#116 at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/process_messages.jl:276
run_work_thunk at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/process_messages.jl:56
run_work_thunk at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/process_messages.jl:65
#102 at ./task.jl:259
#remotecall_wait#154(::Base.Iterators.Pairs{Union{},Union{},Tuple{},NamedTuple{(),Tuple{}}}, ::Function, ::Function, ::Distributed.Worker, ::Module, ::Vararg{Any,N} where N) at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/remotecall.jl:407
remotecall_wait(::Function, ::Distributed.Worker, ::Module, ::Vararg{Any,N} where N) at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/remotecall.jl:398
#remotecall_wait#157(::Base.Iterators.Pairs{Union{},Union{},Tuple{},NamedTuple{(),Tuple{}}}, ::Function, ::Function, ::Int64, ::Module, ::Vararg{Any,N} where N) at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/remotecall.jl:419
remotecall_wait(::Function, ::Int64, ::Module, ::Vararg{Any,N} where N) at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/remotecall.jl:419
(::getfield(Distributed, Symbol("##163#165")){Module,Expr})() at ./task.jl:259
...and 4 more exception(s).
Stacktrace:
[1] sync_end(::Array{Any,1}) at ./task.jl:226
[2] remotecall_eval(::Module, ::Array{Int64,1}, ::Expr) at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/macros.jl:207
[3] top-level scope at /opt/pkgs/update/julia/usr/share/julia/stdlib/v1.0/Distributed/src/macros.jl:190
[4] include at ./boot.jl:317 [inlined]
[5] include_relative(::Module, ::String) at ./loading.jl:1038
[6] include(::Module, ::String) at ./sysimg.jl:29
[7] exec_options(::Base.JLOptions) at ./client.jl:229
[8] _start() at ./client.jl:421
in expression starting at /share/home/userAAA/TVPVAR/runjuliafile24.jl:8
From worker 20: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d]
From worker 20: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/OrderedCollections/LtT3J.ji.
From worker 20: └ @ Base loading.jl:963
From worker 22: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 22: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 22: └ @ Base loading.jl:963
From worker 7: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 7: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/DataStructures/xKiwJ.ji.
From worker 7: └ @ Base loading.jl:963
From worker 8: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 8: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 8: └ @ Base loading.jl:963
From worker 5: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 5: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 5: └ @ Base loading.jl:963
From worker 17: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 17: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 17: └ @ Base loading.jl:963
From worker 24: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 24: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 24: └ @ Base loading.jl:963
From worker 6: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 6: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 6: └ @ Base loading.jl:963
From worker 2: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 2: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 2: └ @ Base loading.jl:963
From worker 23: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 23: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/DataStructures/xKiwJ.ji.
From worker 23: └ @ Base loading.jl:963
From worker 21: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 21: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 21: └ @ Base loading.jl:963
From worker 16: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 16: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 16: └ @ Base loading.jl:963
From worker 3: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 3: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 3: └ @ Base loading.jl:963
From worker 14: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 14: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 14: └ @ Base loading.jl:963
From worker 18: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 18: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 18: └ @ Base loading.jl:963
From worker 9: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 9: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 9: └ @ Base loading.jl:963
From worker 11: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 11: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 11: └ @ Base loading.jl:963
From worker 15: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 15: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 15: └ @ Base loading.jl:963
From worker 10: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 10: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 10: └ @ Base loading.jl:963
From worker 19: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 19: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 19: └ @ Base loading.jl:963
From worker 13: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 13: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 13: └ @ Base loading.jl:963
From worker 12: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8]
From worker 12: │ exception = Required dependency OrderedCollections [bac558e1-5e72-5ebc-8fee-abe8a469f55d] failed to load from a cache file.
From worker 12: └ @ Base loading.jl:963
From worker 22: ┌ Warning: Module DataStructures with build ID 9970418621322988 is missing from the cache.
From worker 22: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 22: └ @ Base loading.jl:941
From worker 8: ┌ Warning: Module DataStructures with build ID 9970418662337312 is missing from the cache.
From worker 8: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 8: └ @ Base loading.jl:941
From worker 11: ┌ Warning: Module DataStructures with build ID 9970419080070126 is missing from the cache.
From worker 11: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 11: └ @ Base loading.jl:941
From worker 18: ┌ Warning: Module DataStructures with build ID 9970419007174339 is missing from the cache.
From worker 18: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 18: └ @ Base loading.jl:941
From worker 17: ┌ Warning: Module DataStructures with build ID 9970418851608119 is missing from the cache.
From worker 17: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 17: └ @ Base loading.jl:941
From worker 2: ┌ Warning: Module DataStructures with build ID 9970418905781229 is missing from the cache.
From worker 2: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 2: └ @ Base loading.jl:941
From worker 23: ┌ Warning: Module DataStructures with build ID 9970418929452802 is missing from the cache.
From worker 23: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 23: └ @ Base loading.jl:941
From worker 5: ┌ Warning: Module DataStructures with build ID 9970418823865619 is missing from the cache.
From worker 5: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 5: └ @ Base loading.jl:941
From worker 7: ┌ Warning: Module DataStructures with build ID 9970418628162347 is missing from the cache.
From worker 7: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 7: └ @ Base loading.jl:941
From worker 19: ┌ Warning: Module DataStructures with build ID 9970419130506598 is missing from the cache.
From worker 19: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 19: └ @ Base loading.jl:941
From worker 24: ┌ Warning: Module DataStructures with build ID 9970418868039756 is missing from the cache.
From worker 24: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 24: └ @ Base loading.jl:941
From worker 14: ┌ Warning: Module DataStructures with build ID 9970418998683742 is missing from the cache.
From worker 14: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 14: └ @ Base loading.jl:941
From worker 6: ┌ Warning: Module DataStructures with build ID 9970418880434497 is missing from the cache.
From worker 6: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 6: └ @ Base loading.jl:941
From worker 16: ┌ Warning: Module DataStructures with build ID 9970418939477061 is missing from the cache.
From worker 16: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 16: └ @ Base loading.jl:941
From worker 21: ┌ Warning: Module DataStructures with build ID 9970418929829611 is missing from the cache.
From worker 21: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 21: └ @ Base loading.jl:941
From worker 9: ┌ Warning: Module DataStructures with build ID 9970419055074413 is missing from the cache.
From worker 9: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 9: └ @ Base loading.jl:941
From worker 3: ┌ Warning: Module DataStructures with build ID 9970418981895496 is missing from the cache.
From worker 3: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 3: └ @ Base loading.jl:941
From worker 10: ┌ Warning: Module DataStructures with build ID 9970419124250537 is missing from the cache.
From worker 10: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 10: └ @ Base loading.jl:941
From worker 13: ┌ Warning: Module DataStructures with build ID 9970419228495416 is missing from the cache.
From worker 13: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 13: └ @ Base loading.jl:941
From worker 15: ┌ Warning: Module DataStructures with build ID 9970419113775101 is missing from the cache.
From worker 15: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 15: └ @ Base loading.jl:941
From worker 12: ┌ Warning: Module DataStructures with build ID 9970419237442372 is missing from the cache.
From worker 12: │ This may mean DataStructures [864edb3b-99cc-5e75-8d2d-829cb0a9cfe8] does not support precompilation but is imported by a module that does.
From worker 12: └ @ Base loading.jl:941
From worker 20: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 20: │ exception = Required dependency SortingAlgorithms [a2af1166-a08f-5f64-846c-94a0d3cef48c] failed to load from a cache file.
From worker 20: └ @ Base loading.jl:963
From worker 4: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 4: │ exception = Required dependency SortingAlgorithms [a2af1166-a08f-5f64-846c-94a0d3cef48c] failed to load from a cache file.
From worker 4: └ @ Base loading.jl:963
From worker 22: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 22: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/StatsBase/EZjIG.ji.
From worker 22: └ @ Base loading.jl:963
From worker 8: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 8: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/StatsBase/EZjIG.ji.
From worker 8: └ @ Base loading.jl:963
From worker 11: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 11: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/StatsBase/EZjIG.ji.
From worker 11: └ @ Base loading.jl:963
From worker 6: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 6: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/StatsBase/EZjIG.ji.
From worker 6: └ @ Base loading.jl:963
From worker 19: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 19: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/StatsBase/EZjIG.ji.
From worker 19: └ @ Base loading.jl:963
From worker 14: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 14: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/StatsBase/EZjIG.ji.
From worker 14: └ @ Base loading.jl:963
From worker 3: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsBase [2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91]
From worker 3: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/StatsBase/EZjIG.ji.
From worker 3: └ @ Base loading.jl:963
From worker 18: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 18: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 18: └ @ Base loading.jl:963
From worker 2: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 2: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 2: └ @ Base loading.jl:963
From worker 23: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 23: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 23: └ @ Base loading.jl:963
From worker 7: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 7: │ exception = ArgumentError: Invalid header in cache file /home/userAAA/.julia/compiled/v1.0/PDMats/wuzEE.ji.
From worker 7: └ @ Base loading.jl:963
From worker 17: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 17: │ exception = ArgumentError: Invalid header in cache file /home/userAAA/.julia/compiled/v1.0/PDMats/wuzEE.ji.
From worker 17: └ @ Base loading.jl:963
From worker 24: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 24: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 24: └ @ Base loading.jl:963
From worker 5: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 5: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 5: └ @ Base loading.jl:963
From worker 16: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 16: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 16: └ @ Base loading.jl:963
From worker 9: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 9: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 9: └ @ Base loading.jl:963
From worker 21: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 21: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 21: └ @ Base loading.jl:963
From worker 10: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 10: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 10: └ @ Base loading.jl:963
From worker 15: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for PDMats [90014a1f-27ba-587c-ab20-58faa44d9150]
From worker 15: │ exception = Required dependency Arpack [7d9fca2a-8960-54d3-9f78-7d1dccf2cb97] failed to load from a cache file.
From worker 15: └ @ Base loading.jl:963
From worker 4: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for SpecialFunctions [276daf66-3868-5448-9aa4-cd146d93841b]
From worker 4: │ exception = ArgumentError: Invalid checksum in cache file /home/userAAA/.julia/compiled/v1.0/SpecialFunctions/78gOt.ji.
From worker 4: └ @ Base loading.jl:963
From worker 13: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa]
From worker 13: │ exception = ArgumentError: Invalid header in cache file /home/userAAA/.julia/compiled/v1.0/Rmath/0iTqX.ji.
From worker 13: └ @ Base loading.jl:963
From worker 24: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 24: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 24: └ @ Base loading.jl:963
From worker 20: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 20: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 20: └ @ Base loading.jl:963
From worker 2: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 2: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 2: └ @ Base loading.jl:963
From worker 16: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 16: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 16: └ @ Base loading.jl:963
From worker 12: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 12: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 12: └ @ Base loading.jl:963
From worker 11: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 11: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 11: └ @ Base loading.jl:963
From worker 18: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 18: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 18: └ @ Base loading.jl:963
From worker 7: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 7: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 7: └ @ Base loading.jl:963
From worker 23: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
From worker 23: │ exception = Required dependency Rmath [79098fc4-a85e-5d69-aa6a-4863f24498fa] failed to load from a cache file.
From worker 23: └ @ Base loading.jl:963
From worker 8: ┌ Warning: The call to compilecache failed to create a usable precompiled cache file for StatsFuns [4c63d2b9-4356-54db-8cca-17b64c39e42c]
and so on