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

I need to generate uncompressible data (therefore pseudorandom), and have been trying with the code below. But it's only producing about 10MB/s of data. I need about 100-200 MB/s. Do you have any advice?

if ($length > 8*1024*1024){ //Default max string length in php.
    while (($length - $bytesGenerated)>8*1024*1024){
        $bytesGenerated = $bytesGenerated + (8*1024*1024);
        print(openssl_random_pseudo_bytes(8*1024*1024));
    }
}
print(openssl_random_pseudo_bytes($length - $bytesGenerated));
share|improve this question
3  
Can I ask why you need so much random data that's generated on the fly (as in why can't you pre-generate it and then stream it)? – ircmaxell Aug 30 '10 at 12:57

4 Answers

up vote 5 down vote accepted

if you are working under linux you could just read from /dev/urandom, its kernels fast pseudorandom generator.

on the other way you could use openssl rand and pipe that into php.

share|improve this answer
U sure it can give you 200Mb/sec? I vote for 10-20Mv/sec max ) – BarsMonster Aug 30 '10 at 12:55
Regarding the speed of /dev/urandom a quick google tells me I should expect atleast 20MB/s – Robert Foss Aug 30 '10 at 23:02
Google told me it's 3.5Mb/sec :-) dd if=/dev/urandom of=foo bs=1M count=100000 100000+0 records in 100000+0 records out 104857600000 bytes (105 GB) copied, 30104.4 s, 3.5 MB/s – BarsMonster Aug 31 '10 at 9:18

Do you need cryptographic-safe pseudo random numbers? Otherwise you could try to implement a Linear feedback shift register

share|improve this answer
1  
I'd use "high quality" rather than "real" in this context: try defining when a messy looking stream is "really" pseudo-random... But if real time generation is a requirement ask if you really need a cryptographic quality stream. Crappy and fast may be the way to go... – dmckee Aug 30 '10 at 13:09
You're right of course. – Silfverstrom Aug 30 '10 at 13:13
1  
No way PHP implementation would give 200Mb/sec. Just impossible, until PHP would feature JIT compiler :-) – BarsMonster Aug 30 '10 at 13:18
Yeah i think it's a tough task to do in PHP. Maybe by writing a c-extension – Silfverstrom Aug 30 '10 at 13:20

That's gonna be hard on PHP, even with accelerators. I would write C++ module specifically for that feature (but even on C++ it's not very easy).

share|improve this answer

At peak theoretical maximum performance on a 3GHz CPU (x86), you would have a budget of just under 4 CPU instructions per random byte, if you were trying to hit 200MB/s. Real-world performance is going to be considerably less than this. I'd posit that this is going to be extremely difficult in any language. You're well into the kinds of speeds which tend to employ dedicated hardware accelerator (i.e. you're attempting to do 1.56Gbit per second). In networking or video applications, there is a considerable amount of external hardware dedicated to permitting this kind of throughput. An extremely efficient implementation in C or assembly might allow you to hit this constraint, but you're really hitting the limits of what is possible using just general-purpose hardware.

I would consider either pre-generating the data (as has already been suggested) or employing some kind of hardware crypto-accelerator in order to hit anything resembling these kinds of throughputs. I found this list of crypto accelerator hardware vendors.

As a final thought, you did in fact mean 200 mega bytes per second, right? If you meant mega bits then this problem is much more easily solvable.

share|improve this answer
The amounts are that considerable but speed is of the essence. A cached solution would be fine. /dev/urandom @ ~20MB/s is going to be fine for the time being. A 4cored x64 CPU would alleviate the raw performance issues, however the system would be strained (if at all possible). (bytes intended) – Robert Foss Aug 30 '10 at 23: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.