I'm in the process of working on programming project that involves some pretty extensive Monte Carlo simulation in Python, and as such the generation of a tremendous number of random numbers. Very nearly all of them, if not all of them, will be able to be generated by Python's built in random module.

I'm something of a coding newbie, and unfamiliar with efficient and inefficient ways to do things. Is it faster to generate say, all the random numbers as a list, and then iterate through that list, or generate a new random number each time a function is called, which will be in a very large loop?

Or some other, undoubtedly more clever method?

link|improve this question

If you are using Linux, reading a bunch of numbers /dev/random into a file, and using thereafter, would be faster and the numbers will be of potentially better quality. Not that Python's random generator is bad or anything. – ktdrv Nov 2 '11 at 23:26
1  
@kaloyan: If the OP uses random.SystemRandom instead of the random module, then that would utilized /dev/urandom on *nix and CryptGenRandom on Windows. Which is more than sufficient. – Bryan Ross Nov 3 '11 at 0:08
@BryanRoss: True, unless the OP also wants reproducibility. – ktdrv Nov 3 '11 at 0:37
1  
A much faster method is to use NumPy's random.randint method. Generating an array of 1 million random integers in Numpy (on my rather old machine) took 45ms, versus 5.5s in a Python loop. – joshayers Nov 3 '11 at 4:21
1  
How often are you going to use them? Or - how extensive (slow) is your Monte Carlo simulation? If each run takes 24 hours, then it doesn't really matter if generating 1M numbers, takes milliseconds or seconds. Only optimize something if it matters... – John C Nov 3 '11 at 15:16
show 4 more comments
feedback

migrated from programmers.stackexchange.com Nov 2 '11 at 23:16

This question came from our site for professional programmers interested in conceptual questions about software development.

1 Answer

up vote 3 down vote accepted

Generate a random number each time. Since the inner workings of the loop only care about a single random number, generate and use it inside the loop.

Example:

# do this:
import random

for x in xrange(SOMEVERYLARGENUMBER):
    n = random.randint(1,1000) # whatever your range of random numbers is
    # Do stuff with n

# don't do this:
import random

# This list comprehension generates random numbers in a list
numbers = [random.randint(1,1000) for x in xrange(SOMEVERYLARGENUMBER)]

for n in numbers:
    # Do stuff with n

Obviously, in practical terms it really doesn't matter, unless you're dealing with billions and billions of iterations, but why bother generating all those numbers if you're only going to be using one at a time?

link|improve this answer
5  
Important sidenote: If you generate billions of numbers and store them in a list, you will eventually run out of memory. If you generate those numbers on demand, this is not an issue. So for large amounts of numbers you have to generate them when needed. – hochl Nov 2 '11 at 23:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.