Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like a function that can generate a pseudo-random sequence of values, but for that sequence to be repeatable every run. The data I want has to be reasonably well randomly distributed over a given range, it doesn't have to be perfect.

I want to write some code which will have performance tests run on it, based on random data. I would like that data to be the same for every test run, on every machine, but I don't want to have to ship the random data with the tests for storage reasons (it might end up being many megabytes).

The library for the random module doesn't appear to say that the same seed will always give the same sequence on any machine.

EDIT: If you're going to suggest I seed the data (as I said above), please provide the documentation that says the approach valid, and will work on a range of machines/implementations.

EDIT: CPython 2.7.1 and PyPy 1.7 on Mac OS X and CPython 2.7.1 and CPython 2.52=.2 Ubuntu appear to give the same results. Still, no docs that stipulate this in black and white.

Any ideas?

share|improve this question
1  
Have you tried generating a sequence with a given seed multiple times? – bdares Jan 26 '12 at 19:00
I only have one computer and one operating system, so I can't reliably test this. – Joe Jan 26 '12 at 19:03
As I think the fundamentally question is "for what?" If cipher - it's very bad idea and don't do it. You must write "for what". – skippy Jan 26 '12 at 19:05
@skippy: please read his question. He clearly says he wants them for performance tests based on random data, which is a perfectly sensible thing to want. – DSM Jan 26 '12 at 19:07

5 Answers

up vote 3 down vote accepted

The documentation does not explicitly say that providing a seed will always guarantee the same results, but that is guaranteed with Python's implementation of random based on the algorithm that is used.

According to the documentation, Python uses the Mersenne Twister as the core generator. Once this algorithm is seeded it does not get any external output which would change subsequent calls, so give it the same seed and you will get the same results.

Of course you can also observe this by setting a seed and generating large lists of random numbers and verifying that they are the same, but I understand not wanting to trust that alone.

I have not checked that other Python implementations besides CPython but I highly doubt they would implement the random module using an entirely different algorithm.

share|improve this answer
That's what I thought. I will probably end up doing this as the least-worst solution. – Joe Jan 26 '12 at 19:12
Even if they used a completely different algorithm, if you gave the same seed to the same pseudo random algorithm it'll spit out the same sequence of numbers - you would run into problems if you wanted to test on two different implementations of python that used a different algorithm but that's about it. But as I understand the docs they guarantee the underlying algorithm too, so that's all fine. – Voo Jan 26 '12 at 19:16

Specify a seed to the random number generator. If you provide the same seed, your random numbers should also be the same.

http://docs.python.org/library/random.html#random.seed

share|improve this answer
That's what I thought, but as I said in the question, I cannot see any documentation that backs this up. – Joe Jan 26 '12 at 18:58
1  
Have you tried using the same seed and observing the output? – Oleksi Jan 26 '12 at 19:00
2  
@Oleksi - only on this implementation of Python on this operating system on this machine. My requirements are that it behaves the same over different implementations (for starters, the docs seem to suggest that the random seed is generated in a C module. What about PyPy?) – Joe Jan 26 '12 at 19:05
3  
@Joe It's not defined because that's part of the formal definition of a seed. There's no pseudo random algorithm that will give different results with the same seed, that's just impossible. I assume they could mention it, but they probably thought it was obvious to everyone. – Voo Jan 26 '12 at 19:11
show 2 more comments

Using random.seed(...) You can generate a repeatable sequence. A demonstration:

import random

random.seed(321)
list1 = [random.randint(1,10) for x in range(5)]

random.seed(321)
list2 = [random.randint(1,10) for x in range(5)]

assert(list1==list2)

This works because random.seed(...) is not truly random: it's pseudo-random, whereby successive numbers are produced by permuting some state machine, given an initial starting condition, the 'seed'.

share|improve this answer

If the quality of the random numbers isn't as critical as the repeatability-across-platforms, you can use one of the traditional linear congruential generators:

class lcg(object):
    def __init__( self, seed=1 ):
        self.state = seed

    def random(self):
        self.state = (self.state * 1103515245 + 12345) & 0x7FFFFFFF
        return self.state

Since this is coded in your program using integer arithmetic, it should be deterministically repeatable across any reasonable platform.

share|improve this answer
Brilliant, I'll take a look at that. – Joe Jan 26 '12 at 20:06

I just tried the following:

import random
random.seed(1)
random.random()
random.random()
random.random()

random.seed(1)
random.random()
random.random()
random.random()

I entered each line at the CLI at various speeds over multiple times. Produced the same values each time.

share|improve this answer
Me too. Then I came here to ask the question to confirm it was correct. – Joe Jan 26 '12 at 19:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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