Displaying 1 result from an estimated 1 matches for "compile_lay".
Did you mean:
compile_by
2019 Jul 18
2
Eager compilation and relocatable dynamic linkable code-generation
...tutorial mentions that "*will defer compilation of the module until
any of its definitions is looked up*".
Does that mean to force eager compilation, i have to keep track of all
functions added to the Module and do a lookup? I want the module to be
compiled fully after I do add module to compile_layer. What is the best way
to achieve this? Or should I not use ORC API at all?
2. I want to compile on one process and want to ship the machine code to
another process and load it for execution (with no lazy compilation where
an uncompiled function will trigger compilation to remote process which as...