Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Languages Misc > Re: ANN: Seed7 ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 10 of 18 Topic 1135 of 1217
Post > Topic >>

Re: ANN: Seed7 Release 2008-04-20

by thomas.mertes@[EMAIL PROTECTED] Apr 27, 2008 at 06:58 AM

On 25 Apr., 19:30, Mensanator <mensana...@[EMAIL PROTECTED]
> wrote:
> On Apr 25, 7:01 am, thomas.mer...@[EMAIL PROTECTED]
 wrote:
> > On 25 Apr., 09:46, Mensanator <mensana...@[EMAIL PROTECTED]
> wrote:
> > > On Apr 25, 1:30 am, thomas.mer...@[EMAIL PROTECTED]
 wrote:
> > > > Can you give me an update.
>
> > > Trying to convert Sedgewick algorithm from C
> > > to Seed7.
>
> > > Quick question. I define an empty array using
>
> > >   var array cycle: cycle_stats is 0 times cycle.value
>
> > > and then expand it one index at a time as needed by
>
> > >   cycle_stats &:= [](attractor_stats)
>
> > This is possible, but it costs time to extend the array.
>
> I expected that. I only do it s****adically and because I
> have no way of predicting how big the array has to be.
> It could be half a dozen or several hundred depending
> on the idiosyncrasies of the Collatz function.
>
> > You can request a bigger array at any time with:
>
> >   cycle_stats := number times cycle.value;
>
> Ah, that's what I was looking for, didn't know you could
> do that dynamically.
>
> > where 'number' is an integer variable. But note that
> > such a statement replaces the whole array (The old
> > content of the array is lost). There is also the possibility
> > to increase an array:
>
> >   cycle_stats &:= 1000 times cycle.value;
>
> > This way 1000 additional elements are added at the end of
> > the array.
>
> > > For the Sedgewick algorithm, the array gets created
> > > as a fixed size M, but M is passed as a command line
> > > parameter, so I can't do
>
> > >   var array cycle: cycle_stats is M times cycle.value
>
> > > because M is unknown at compile time? Is that right?
>
> > To use M in the declaration it must be known at compile
> > time. But you can declare it with:
>
> >   var array cycle: cycle_stats is 0 times cycle.value;
>
> > and use the statement
>
> >   cycle_stats := M times cycle.value;
>
> Thanks, that's exactly what I need. Apparently, the Sedgewick
> algorithm needs to be tuned for optimum performance. Otherwise
> you'll get a fault if the table is too small or performance
> degradtion if too large.

Why is there a problem when the table is too large?
Does the program start thra****ng?

> So the table size pretty much has to
> be a command line parameter.
>
> > to bring it to bigger size. This way M can be unknown
> > at compile time.
>
> > > Is there a way to create the entire array (M times)
> > > in the program body instead of the variable declaration?
> > > Without doing [](attractor_stats) M times?
>
> > See above: cycle_stats := M times cycle.value;
>
> > > Also, working on my web page to summarize all this,
> > > list the Seed7 programs, do some timing comparisons,
> > > etc.
>
> > > I notice the latest Seed7 seems much improved over
> > > the previous one.
>
> > I improved the built-in bigInteger sup****t (the one
> > without GMP) to use bigdigits of 32 bit size. Before
> > the size of a bigdigit was 16 bits.
>
> > > I _thought_ the Brent algorithm
> > > was rather slow in Seed7, but I didn't log it very
> > > carefully and now it doesn't seem so bad. It may turn
> > > out that Brent & Sedgewick are closer than I thought.
>
> > > Trouble is, I don't have two of the same kind of fruit.
>
> > > I've got attractors.c (naive cycle detection)
> > >          efd.py       (Brent)
> > >          ecd001.sd7   (Brent) old Seed7
> > >          ecd001.sd7   (Brent) current Seed7 with GMP
> > >          ecd001.sd7   (Brent) current Seed7 without GMP
> > >          ccd020.c     (Sedgewick)
>
> > > And I'm trying to do testing and decide what to do
> > > next. Nothing can touch the C programs, but Brent
> > > in C isn't as much faster than I thought originally,
> > > 39 sec for Seed7 vs 4.7 sec for C. How much of that
> > > is due to the algorithm vs the language? Should I
> > > make a Brent version in C along with a Sedgewick
> > > version of Seed7?
>
> > IMHO: For a comparison of language implementation speeds
> > the same algorithm needs to be used.
>
> Right. I need to focus on what I'm trying to accomplish and
> that's NOT a language benchmark.

No problem. If you think something in Seed7 is too slow tell
me about it: I can profile compiled Seed7 programs.

> What I want is a do***entary
> on how I solved the problem, part of which will feature Seed7
> (and give me an excuse to list all the sample sources in Seed7).

Great.

> I think when all the tradeoffs are considered, everything will
> come out looking good.

Greetings Thomas Mertes

Seed7 Homepage:  http://seed7.sourceforge.net
Seed7 - The extensible programming language: User defined statements
and operators, abstract data types, templates without special
syntax, OO with interfaces and multiple dispatch, statically typed,
interpreted or compiled, ****table, runs under linux/unix/windows.
 




 18 Posts in Topic:
ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-04-20 13:51:24 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-21 21:26:26 
Re: ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-04-21 23:46:18 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-22 10:09:21 
Re: ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-04-24 23:30:21 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-25 00:46:36 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-25 00:53:31 
Re: ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-04-25 05:01:18 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-25 10:30:31 
Re: ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-04-27 06:58:56 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-27 12:05:47 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-27 16:30:41 
Re: ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-04-28 01:19:50 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-04-28 14:15:23 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-05-03 00:43:47 
Re: ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-05-07 00:48:44 
Re: ANN: Seed7 Release 2008-04-20
thomas.mertes@[EMAIL PROT  2008-05-07 01:24:46 
Re: ANN: Seed7 Release 2008-04-20
Mensanator <mensanator  2008-05-07 10:46:17 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Fri Jul 25 23:43:25 CDT 2008.