Displaying 2 results from an estimated 2 matches for "llvmdynamiclibrary".
2010 Oct 07
0
[LLVMdev] Using multiple ExecutionEngines for better parallelism?
Is is possible since LLVM 2.7 to create multiple ExecutionEngine in the same
process.
Olivier.
On Thu, Oct 7, 2010 at 6:41 PM, George Brewster <g at brewster.org> wrote:
> Hi,
> I'm working on an application that compiles using LLVM from multiple
> threads. Currently, I'm doing this using one ExecutionEngine, but I've
> observed that this does not seem to scale
2010 Oct 07
2
[LLVMdev] Using multiple ExecutionEngines for better parallelism?
Hi,
I'm working on an application that compiles using LLVM from multiple
threads. Currently, I'm doing this using one ExecutionEngine, but I've
observed that this does not seem to scale well past a couple cores. I'd
like to be able to get as much parallelism as possible in the
compilation, and was wondering about using one ExecutionEngine per thread.
The only information