Re: Version after Version
- From: "Frank de Groot" <franciad@xxxxxxxxx>
- Date: Sat, 29 Oct 2005 14:36:27 +0200
"Maarten Wiltink" <maarten@xxxxxxxxxxxxxxxxxx> wrote in message
news:436360ab$0$11076$e4fe514c@xxxxxxxxxxxxxxxxx
>
> I tend to do my operations one method call at a time, not MxN bits at a
> time.
Are you saing that when you need to, say, add 1000 numbers in an array, thay
you do this:
for i := 0 to High(anArray) do
AddNextNumber(anArray, i);
That would be insane.
I am sure you are not *that* stupid.
What you say is nonsensical. Every time you do more than on 32-bit operation
on an array for example, you can make things much faster by loading 64 bits
at a time from memory (as my dual-cpu, dual-core 275 machine does),
operating on those 64 bits and write them back in one operation, to 64-bit
wide memory.
When you can't imagine that applications do operations on data structures in
memory, when your own applications don't do such a thing, merely do a few
"method calls" here & there and for the rest waiting for user input, I feel
for you.
But please don't think that all desktop software is like yours. Most isn't.
Some of the software I recently bought is ISObuster (or something). It
extracts ISO images (a kind of decompressing). This benefits greatly from
64-bits. Other software I bought is
ASPack, it is an EXE compressor I use. This would benefit greatly from
64-bits. Other software I bought is Ghost install, to make installs of my
1.5 GB install package. The compression engine would benefit greatly from 64
bits.
Other software I bought is Absolute Database. I use ZIP compression (LZW) of
some fields in my 2 GB of databases. This would benefit greatly from
64-bits.
Etcetera, etcetera. You truly haven't got the slightest clue what you're
talking about. EVERYTHING benefits GREATLY from 64 bits.
I want to go as far as prediction that a software company has no future if
they do not start the transition to 64 bits NOW.
.
- Follow-Ups:
- Re: Version after Version
- From: Maarten Wiltink
- Re: Version after Version
- From: J French
- Re: Version after Version
- References:
- Version after Version
- From: ProfitMaxTrading.com
- Re: Version after Version
- From: Frank de Groot
- Re: Version after Version
- From: J French
- Re: Version after Version
- From: Frank de Groot
- Re: Version after Version
- From: Marc Rohloff
- Re: Version after Version
- From: Frank de Groot
- Re: Version after Version
- From: Marc Rohloff
- Re: Version after Version
- From: Frank de Groot
- Re: Version after Version
- From: Maarten Wiltink
- Version after Version
- Prev by Date: Re: Version after Version
- Next by Date: Re: Version after Version
- Previous by thread: Re: Version after Version
- Next by thread: Re: Version after Version
- Index(es):
Relevant Pages
|