To see the actual error, and stack trace, you need to follow the suggestion: start Julia on debug level 2, e.g., julia -g2 my_script.jl
or just julia -g2
to get a REPL. The reason is that these messages and traces are embedded in the generated code (we don’t have stack unwinding), and thus have a fairly large cost in performance.
3 Likes