search for: fpms

Displaying 4 results from an estimated 4 matches for "fpms".

Did you mean: dpms
2014 Jan 15
3
[LLVMdev] Loop unrolling a function
...lang with no optimizations enabled. My initial plan was to first run the IndVarSimplify pass (as suggested here<http://llvm.org/docs/Passes.html#loop-unroll-unroll-loops>) and then the LoopUnroll pass on the function. I tried using a FunctionPassManager to do this, even though the docs state FPMs are used with FunctionPasses and not LoopPasses, which didn't complain but had no effect on the function. Is adding LoopPasses to a FPM supposed to be a no-op? Is this supposed to work and I'm not running the right combination of passes to get loop unrolling? I also tried creating a LoopIn...
2014 Jan 15
2
[LLVMdev] Loop unrolling a function
...s enabled. > > My initial plan was to first run the IndVarSimplify pass (as suggested > here <http://llvm.org/docs/Passes.html#loop-unroll-unroll-loops>) and > then the LoopUnroll pass on the function. I tried using a > FunctionPassManager to do this, even though the docs state FPMs are used > with FunctionPasses and not LoopPasses, which didn't complain but had no > effect on the function. Is adding LoopPasses to a FPM supposed to be a > no-op? Is this supposed to work and I'm not running the right combination > of passes to get loop unrolling? > > I...
2004 Sep 01
1
Festival TTS & mbrola ?
Hello Asterisk, noticed that the mbrola really adds a extra dimension to tts; anyone got any experience with running this together with the festival and * ? -- Best regards, Danny mailto:dannyz@belgonet.com belGOnet.com a Euro-pictures division - internet solutions place princesse elisabeth 9/11 - 1030 Brussels - Belgium Tel : +32-(0)2-215.67.65 -
2010 Aug 12
1
[LLVMdev] Optimization pass questions
On Aug 11, 2010, at 5:57 PM, Tanya Lattner wrote: > Have you read this document? > http://llvm.org/docs/WritingAnLLVMPass.html#passtype Yes, but I didn't find it as instructive as I'd hoped. The only two examples of pass sets I can find are the Kaleidoscope tutorial and StandardPasses.h (corresponding, I assume, to what llvm-gcc does). Just looking at the two of these, some