julia> versioninfo()
Julia Version 1.7.0
Commit 3bf9d17731 (2021-11-30 12:12 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) CPU E5-2660 v3 @ 2.60GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-12.0.1 (ORCJIT, haswell)
I get 1000s of lines of this repeated over and over
intersect_union at /buildworker/worker/package_linux64/build/src/subtype.c:2154
intersect_all at /buildworker/worker/package_linux64/build/src/subtype.c:3196
intersect_aside at /buildworker/worker/package_linux64/build/src/subtype.c:2131
intersect_var at /buildworker/worker/package_linux64/build/src/subtype.c:2334
intersect at /buildworker/worker/package_linux64/build/src/subtype.c:3053
intersect_union at /buildworker/worker/package_linux64/build/src/subtype.c:2154
until eventually it spits this out
jfptr__start_43127.clone_1 at /opt/julia-1.7.0/lib/julia/sys.so (unknown line)
_jl_invoke at /buildworker/worker/package_linux64/build/src/gf.c:2247 [inlined]
jl_apply_generic at /buildworker/worker/package_linux64/build/src/gf.c:2429
jl_apply at /buildworker/worker/package_linux64/build/src/julia.h:1788 [inlined]
true_main at /buildworker/worker/package_linux64/build/src/jlapi.c:559
jl_repl_entrypoint at /buildworker/worker/package_linux64/build/src/jlapi.c:701
main at /buildworker/worker/package_linux64/build/cli/loader_exe.c:42
__libc_start_main at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
_start at julia (unknown line)
1-element CSV.File:
CSV.Row: (Number = 2.0,)
In fact you don’t even need a CSV file, or a function
CSV.File(""; delim = "; ", types = Float64)
does the same at eventually pops out ERROR: ArgumentError: "" is not a valid file or doesn't exist after 1000s of the same error message
using CSV, Symbolics works OK
as does using CSV, HybridArrays
The stacktrace, however, suggests some kind of internal compiler failure. I’d report an issue to JuliaLang/julia with the exact versions of OS, julia, etc. to reproduce.
Have you been using HybridArrays, Symbolics as well? I don’t see them in your screenshot.
I only get the error when these are both active too, combining CSV with either one of these works fine (It was quite difficult to find this combination as the original project had many more dependencies).