Displaying 2 results from an estimated 2 matches for "7385f3ed".
2008 Apr 02
0
[LLVMdev] Additional Optimization I'm Missing?
thanks for the help, I suppose I'm yet not use to thinking of rounding
errors 84 iterations out :)
yours,
Bobby Powers
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080402/7385f3ed/attachment.html>
2008 Mar 31
5
[LLVMdev] Additional Optimization I'm Missing?
Hello, I'm working on using the LLVM JIT for a little project of mine,
amazing work first off! I have a question about optimization passes. I
initially have this function I've created, in python it looks like this:
OS_end = 50OS_start = 0OS_timestep = 1birth_rate = .3population =
30.0for time in range(OS_start, OS_end, OS_timestep):
births = birth_rate * population
deaths = 0.1