X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org From: Adam Dinwoodie To: "cygwin AT cygwin DOT com" Subject: RE: Is there a source of moderately random data with good speed in Cygwin? Date: Wed, 27 Feb 2013 15:33:23 +0000 Deferred-Delivery: Wed, 27 Feb 2013 15:33:00 +0000 Message-ID: References: <1212475491 DOT 20130227184011 AT mtu-net DOT ru> In-Reply-To: <1212475491.20130227184011@mtu-net.ru> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id r1RFXhq4012362 Andrey Repin wrote: > I was need to pipe some bytes through application and watch it's reaction. > But with /dev/urandom the stream speed is only about 40Mb/sec. Using > /dev/zero, however, makes it 3 orders of magnitude faster (~35Gb/s), but for > technical reasons, using monotonous sequence is highly undesirable. Is there > any more performant source of non-monotonous byte sequences available to > Cygwin? I would be pretty happy even with sequential bytes, I think. Only two > reservations are good performance (something around 100 Mb/sec or more would > suffice) and a degree of randomness. You want a source of data that's non-monotonous but faster than /dev/urandom. I don't see how this is a Cygwin issue at all, and thus I don't think it belongs on this list. Nonetheless, I suspect the easiest solution is to write a short C program to produce your output, along the lines of (untested): #include int main () { unsigned char c; for (c = 0;; c++) putchar(c); } Alternatively, pre-cache some output and use that: head --bytes=1G >/var/cache/randomdata ./myapp <(while :;do cat /var/cache/randomdata; done) -- Adam Dinwoodie Messages posted to this list are made in a personal capacity. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple