From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=0.8 required=3.0 tests=BAYES_50,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.6 X-Received: by 2002:ac8:584f:: with SMTP id h15mr26213135qth.362.1625715990496; Wed, 07 Jul 2021 20:46:30 -0700 (PDT) X-Received: by 2002:a25:690e:: with SMTP id e14mr36259137ybc.277.1625715990227; Wed, 07 Jul 2021 20:46:30 -0700 (PDT) Path: eternal-september.org!reader02.eternal-september.org!feeder1.feed.usenet.farm!feed.usenet.farm!news-out.netnews.com!news.alt.net!fdc3.netnews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 7 Jul 2021 20:46:29 -0700 (PDT) In-Reply-To: <5a1cegtfm5ibqej3ldebpc4g99ujniqt9u@4ax.com> Injection-Info: google-groups.googlegroups.com; posting-host=36.85.88.151; posting-account=oy9pPgoAAACICsEVtbydIrxpi9tsYOGl NNTP-Posting-Host: 36.85.88.151 References: <5a1cegtfm5ibqej3ldebpc4g99ujniqt9u@4ax.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Not good for Ada endorsement From: Richard Iswara Injection-Date: Thu, 08 Jul 2021 03:46:30 +0000 Content-Type: text/plain; charset="UTF-8" X-Received-Bytes: 2097 Xref: reader02.eternal-september.org comp.lang.ada:62349 List-Id: On Thursday, July 8, 2021 at 2:49:48 AM UTC+7, Doctor Who wrote: > On Wed, 07 Jul 2021 20:21:26 +0100, Simon Wright > wrote: > >Doctor Who writes: > > > >> It makes no sense comparing languages with the same algorithm, > > > >I think it makes little sense to compare languages with _different_ > >algorithms. > it depends if you are comparing algorithms or comparing languages ... It is supposed to be a basic Sieve of Erastosthenes searching primes under 1 million. Odd number search only, can be multi threaded and skip ahead. See the rules at: https://github.com/plummerssoftwarellc/Primes/blob/drag-race/CONTRIBUTING.md#rules. Indirectly it is a comparison of implementation and tools benchmarking. Looking at the gpr file, there is no compile switch used, not even an "-o2" switch.