Precompilation or sysimg building not working as expected

Our company has a medium size Julia app that we run from the command line. Because every time we run we start a new julia instance we have a good amount of overheard in loading the libraries we use and priming the JIT compiler.

Our app starts with essentially one function call. If I just call this function twice during the same run of julia the first call takes around 20 seconds and the second takes 0.1 seconds. What I want is for the first call to take the same amount of time as the second call, is this an achievable goal?

I tried using the precompile statement, which gave me some speedup, but not what I wanted. (The 20 seconds quoted above is actually with precompile statement enabled)

I also tried building a new system image with the included script. This works much better, reducing the time down to 1.6 seconds.

Is there any way to get the first run all the way down to the second run time of 0.1, or is that just asking too much?

1 Like

When you say you’re using the precompile statement, do you mean the __precompile__() at the top of your module, or are you explicitly calling precompile(myfunction, (MyInputType, MyOtherInputType))?

__precompile__() at the top of my module.

I’d suggest trying the second form. For example:

precompile(min, (Int, Int))

SnoopCompile can also help you figure out exactly which precompile() calls you’ll need. But the first thing to try would just be whatever your 20-second function is.

1 Like

By the way, the reason this is necessary is that, as I understand it, __precompile__() can’t generally know what input types to compile your functions for, since that would require knowing exactly what input types the user might supply to your functions (which it can’t possibly know ahead of time). But if you do know, then you can supply those input types when you call precompile(...).

2 Likes

I will try with the function, but in the module where we call __precompile__() we also exercise our app with real world inputs in an attempt to prime the JIT compiler, which I think serves the same purpose as calling the function with arguments.

Assuming you mean contrib/build_sysimg.jl, did you specify a custom userimg file?

Alternatively, try putting your precompile calls in base/userimg.jl and rebuild through the usual process (make, no need to run build_sysimg).

The build_sysimg code and output look ok on OS X, but isn’t part of the standard build process and I don’t think it’s really tested. So there might be some subtleties missing on some platforms.

A no-op run (time julia -e "") on my system is close to .25s, so you might not be able to get a first run down to 0.1s.

I did specify a customer userimg file, it is just one line: using $MyModule

The function form did not significantly speed up the operation. It is looking like 1.6 seconds is the best I can hope for now. (Much better than the original 20 seconds!)

@jminardi out of curiosity, what was the change that got you down from 20s to 1.6s?

I build a sysimg with my module included. See here:

http://docs.julialang.org/en/stable/devdocs/sysimg/

I can’t get this working … I’m looking to regenerate sys.so

I’ve been trying to regenerate a system image for the last 3 days with a few changes and using “core2” (v1.03)… but for the life of me, nothing is successful.
— getting random errors …

  1. FYI - might want to include Libdl in build_sysimg.jl…
    • couldn’t get this working (build_sysimg)… eventually extracted the commands being run(), and seemed to be able to generate a sys.o, but the final cc command produces a sys.so file that is too small and fails when replacing the sys.so… not sure if /…/lib/* libraries aren’t being linked somehow… ran:
      cd /…/shared/julia/base
      julia -C core2 --output-ji …/…/…/lib/julia/basecompiler.ji --output-o …/…/…/lib/julia/basecompiler.o compiler/compiler.jl
      julia -C core2 --output-ji …/…/…/lib/julia/sys.ji --output-o sys.o -J …/…/…/lib/julia/basecompiler.ji --startup-file=no sysimg.jl
      cc -L…/…/…/lib -shared -ljulia -o sys.so sys.o

but sys.so is way too small…

  1. PackageCompiler errors out trying to replace a directory… could dig deeper… but not sure that this is the correct tool for generating sys.so – limited documentation…
  • copied base dir…
  • build_shared_lib(“sysimg.jl”, “sysx”)
  • ERROR: LoadError: cannot replace module Base during compilation
    … are we able to use this for a system image?

Is there a process for generating a system image (sys.so) in v1.03 – that works :wink:

Thanks