From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,3a6a9f1d654285ba X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!feeder1-2.proxad.net!proxad.net!feeder2-2.proxad.net!newsfeed.arcor.de!newsspool4.arcor-online.net!news.arcor.de.POSTED!not-for-mail From: "Dmitry A. Kazakov" Subject: Re: Ada Shootout program for K-Nucleotide (patches) Newsgroups: comp.lang.ada User-Agent: 40tude_Dialog/2.0.15.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Reply-To: mailbox@dmitry-kazakov.de Organization: cbb software GmbH References: <4a743343$0$32674$9b4e6d93@newsspool2.arcor-online.net> <0c18b36c-7af0-454c-8208-9b0416111a1f@w41g2000yqb.googlegroups.com> <87fxc9e0mg.fsf@nbi.dk> <4a76cd4f$0$31329$9b4e6d93@newsspool4.arcor-online.net> <87bpmxdqfo.fsf@nbi.dk> <2bae762e-0d8a-4389-843a-466e87f59fd1@a37g2000prf.googlegroups.com> <4a786b15$0$30230$9b4e6d93@newsspool1.arcor-online.net> <67e76046-62d4-4c0e-bdd8-8d00cdf93bca@l35g2000pra.googlegroups.com> <4a79f712$0$31874$9b4e6d93@newsspool3.arcor-online.net> <7a5aea9c-1ade-4d73-98ef-08d226823161@z31g2000yqd.googlegroups.com> <4a7a0826$0$31862$9b4e6d93@newsspool3.arcor-online.net> Date: Thu, 6 Aug 2009 09:51:51 +0200 Message-ID: <11qfwkl5qgfu4$.1m5r7ewcngdg2$.dlg@40tude.net> NNTP-Posting-Date: 06 Aug 2009 09:51:51 CEST NNTP-Posting-Host: ee96c31b.newsspool3.arcor-online.net X-Trace: DXC=8_GDVV8_BGb;iVb[J9ZZP`McF=Q^Z^V3h4Fo<]lROoRa^YC2XCjHcbi@\:2[B7LWfmDNcfSJ;bb[eIRnRBaCd On Thu, 06 Aug 2009 00:31:00 +0200, Georg Bauhaus wrote: > Ludovic Brenta wrote: >> Georg Bauhaus wrote on comp.lang.ada: >>> + procedure Print (Item : String) is >>> + Data : char_array renames To_C (Item & ASCII.LF); >>> + begin >>> + if fputs (Data'Address, stdout) < 0 then >>> + raise Ada.IO_Exceptions.Device_Error; >>> + end if; >>> + end Print; >> >> I'm curious to know how the following performs: >> >> Stdout : constant Ada.Text_IO.Text_Streams.Stream_Access := >> Ada.Text_IO.Text_Streams.Stream (Ada.Text_IO.Standard_Output); >> >> procedure Print (Item : String) is >> begin >> String'Write (Stdout, Item); >> Character'Write (Stdout, ASCII.LF); >> end Print; > > Terribly slow. Requesting only a tenth of the required amount > (i.e. N = 2500000) has taken ~30s. By extrapolation the full > set is produced only after ~5m. That's almost 20x slower > than the original Ada.Text_IO. > > (The RM explains that String'Write calls procedure > Character'Write for each component of the String...) Newer GNATs use blocks of 256 characters or so, I don't remember the figure. But as Jeff has suggested, you could use raw stream Write from Ada.Streams. -- Regards, Dmitry A. Kazakov http://www.dmitry-kazakov.de