POV-Ray : Newsgroups : povray.off-topic : How far we have come Server Time
7 Sep 2024 15:27:11 EDT (-0400)
  How far we have come (Message 4 to 13 of 33)  
<<< Previous 3 Messages Goto Latest 10 Messages Next 10 Messages >>>
From: Warp
Subject: Re: How far we have come
Date: 13 Jul 2008 17:36:57
Message: <487a7579@news.povray.org>
Darren New <dne### [at] sanrrcom> wrote:
> Warp wrote:
> >   Is there *any* programming language designed after the early 80's which
> > actually cares about memory usage?

> Ada?

  1983.

> FORTH?

  1970's.

> Sure, languages like Java waste memory if you allocate each integer as a 
> separate object, so you make an array of integers to hold your bitmap, 
> and deal with the minor pain that architectural decision entails.

  What if you want objects with two or three integers inside them?
Or an integer and a floating point value?

-- 
                                                          - Warp


Post a reply to this message

From: Darren New
Subject: Re: How far we have come
Date: 13 Jul 2008 18:08:45
Message: <487a7ced$1@news.povray.org>
Warp wrote:
>> Ada?
>   1983.

Ada-95, then? ;-)

>> FORTH?
>   1970's.

Oh. Yeah, OK, it was around a lot longer than I knew. Standardized a lot 
later, tho.  Thanks. :-)

>> Sure, languages like Java waste memory if you allocate each integer as a 
>> separate object, so you make an array of integers to hold your bitmap, 
>> and deal with the minor pain that architectural decision entails.
> 
>   What if you want objects with two or three integers inside them?
> Or an integer and a floating point value?

You still put it in an array, or two parallel arrays. Or use C# instead. 
Don't attribute Java's limitations to every safe/GCed language :-)

I think the basic problem is that after the early 80's, people weren't 
designing programming languages based on 8-bit processors with 16-bit 
address spaces. I mean, C and FORTRAN were considered terribly wasteful 
of resources back when 1K of RAM was a lot of memory. :-)

I guess most people doing that stuff figured memory-restricted languages 
were pretty much a solved problem. Pick from C, Fortran, COBOL, Ada, 
FORTH, Assembler, Pascal, BASIC, APL, LISP, Algol, PL/1, C++, ... as you 
like. Why make another like that? What's missing? All those languages 
ran comfortably in and could do considerable (for the time) computation 
on a 64K machine. If you don't have the memory to run Excel, write it in 
APL. If you don't have the memory to run Perl, write it in COBOL. If 
Prolog is too big, use LISP.

It seems obvious to me that if one is interesting in developing new 
languages, it's a good idea to target the machines with new 
capabilities. You want to solve in your language the kinds of problems 
that don't come up when you only have small machines, like how to 
efficiently organize terabytes of data spread over a dozen cities in a 
way that you never, ever have an outage.

Of course, you also have things like befunge, brainfuck, intercal, and 
all the other joke languages which can nevertheless be interpreted with 
a handful of memory. :-)  I suspect this isn't what you meant, tho.

And of course you have problems that push the limits of big machines 
too. Video games, artificial intelligence, physics simulations (of 
various accuracies), data mining (say, google), etc. But a lot of those 
kinds of problems can be broken into a more-core part that you write in 
a difficult efficient language and a less-core part that you write in a 
more powerful less efficient language. Which is kind of the same all the 
way down the stack - C is a lot easier than VHDL to get some piece of 
functionality out of, but you might need a dozen C instructions to do 
what one custom VHDL blob of gates could do in a couple of clock cycles. 
Why is software less reliable than hardware? One reason is that software 
is used to do the stuff that is far too complex to do in hardware. Why 
do people build languages like Java or Erlang or Haskel that compile 
down to C? To build the systems you couldn't build in C because it's too 
low-level conceptually, lacking vital flexibility.

-- 
Darren New / San Diego, CA, USA (PST)
  Helpful housekeeping hints:
   Check your feather pillows for holes
    before putting them in the washing machine.


Post a reply to this message

From: andrel
Subject: Re: How far we have come
Date: 13 Jul 2008 18:49:51
Message: <487A86C7.1030100@hotmail.com>
On 13-Jul-08 22:34, Warp wrote:
> Orchid XP v8 <voi### [at] devnull> wrote:
>> I just realised something. The Haskell program I wrote the other day? 
>> It's 1.5 MB in size. This single executable program is actually *too 
>> big* to fit on a single [high-density] floppy disk.
> 
>   Is there *any* programming language designed after the early 80's which
> actually cares about memory usage?

POV-Ray?


Post a reply to this message

From: Warp
Subject: Re: How far we have come
Date: 13 Jul 2008 19:14:26
Message: <487a8c52@news.povray.org>
andrel <a_l### [at] hotmailcom> wrote:
> >   Is there *any* programming language designed after the early 80's which
> > actually cares about memory usage?

> POV-Ray?

  Except that POV-Ray isn't a programming language but a renderer.

-- 
                                                          - Warp


Post a reply to this message

From: Mueen Nawaz
Subject: Re: How far we have come
Date: 13 Jul 2008 21:12:06
Message: <487aa7e6@news.povray.org>
Warp wrote:
>   Is there *any* programming language designed after the early 80's which
> actually cares about memory usage?

HTML

(Dodges tomatos!)


-- 
----> If you cut here, you'll ruin your monitor. <----


                     /\  /\               /\  /
                    /  \/  \ u e e n     /  \/  a w a z
                        >>>>>>mue### [at] nawazorg<<<<<<
                                    anl


Post a reply to this message

From: Chambers
Subject: Re: How far we have come
Date: 14 Jul 2008 00:29:13
Message: <487ad619$1@news.povray.org>
Orchid XP v8 wrote:
> You remember the days when programmers struggled to fit as much program 
> as possible into 64 KB of RAM?
> 
> I just realised something. The Haskell program I wrote the other day? 
> It's 1.5 MB in size. This single executable program is actually *too 
> big* to fit on a single [high-density] floppy disk.
> 
> The worrying part is, it doesn't even *do* anything! It's just a wrapper 
> around a seperate program...
> 

Have you ever heard of premature optimization?

Don't bother solving a problem until it's a problem.  Sure, modern 
programs use WAY more resources than older ones... but is it even a problem?

Unless you're running out of memory on your computer, don't even try to 
optimize it for size.

Let's face it: on a modern computer with, say, 3Gb of RAM, if you have a 
program that's running out of memory, are you going to care about
a) The data structures using up 4Gb of RAM that you need to optimize, or
b) The default libraries linked in using .0015 Gb of RAM?

...Chambers


Post a reply to this message

From: Chambers
Subject: Re: How far we have come
Date: 14 Jul 2008 00:29:50
Message: <487ad63e$1@news.povray.org>
Mueen Nawaz wrote:
> Warp wrote:
>>   Is there *any* programming language designed after the early 80's which
>> actually cares about memory usage?
> 
> HTML
> 
> (Dodges tomatos!)
> 
> 

If you mean, it's designed to care about using AS MUCH AS POSSIBLE? ;)

...Chambers


Post a reply to this message

From: andrel
Subject: Re: How far we have come
Date: 14 Jul 2008 01:43:21
Message: <487AE7B2.8070600@hotmail.com>
On 14-Jul-08 1:14, Warp wrote:
> andrel <a_l### [at] hotmailcom> wrote:
>>>   Is there *any* programming language designed after the early 80's which
>>> actually cares about memory usage?
> 
>> POV-Ray?
> 
>   Except that POV-Ray isn't a programming language but a renderer.
> 
it is both.


Post a reply to this message

From: Orchid XP v8
Subject: Re: How far we have come
Date: 14 Jul 2008 03:12:13
Message: <487afc4d@news.povray.org>
Darren New wrote:

>>> FORTH?
>>   1970's.
> 
> Oh. Yeah, OK, it was around a lot longer than I knew. Standardized a lot 
> later, tho.  Thanks. :-)

I can't believe a computer expert wouldn't know that. I mean, FORTH is 
only, like, the most important programming language *ever*! Next you'll 
be telling me you don't know who Babbage is...







[I'm only kidding of couse...]

-- 
http://blog.orphi.me.uk/
http://www.zazzle.com/MathematicalOrchid*


Post a reply to this message

From: Chambers
Subject: Re: How far we have come
Date: 14 Jul 2008 06:06:29
Message: <487b2525$1@news.povray.org>
Orchid XP v8 wrote:
> Darren New wrote:
> 
>>>> FORTH?
>>>   1970's.
>>
>> Oh. Yeah, OK, it was around a lot longer than I knew. Standardized a 
>> lot later, tho.  Thanks. :-)
> 
> I can't believe a computer expert wouldn't know that. I mean, FORTH is 
> only, like, the most important programming language *ever*! Next you'll 
> be telling me you don't know who Babbage is...

Didn't he write programs with the alphabet soup his wife Ada made for him?

...Chambers


Post a reply to this message

<<< Previous 3 Messages Goto Latest 10 Messages Next 10 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.