Delphi and Kylix

Moderators: pritaeas
Number of threads: 7264
Number of posts: 19073

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Using a 64bit CPU... Posted by hadipardis on 10 Jun 2006 at 10:51 PM
I wrote a Delphi program in which we need to access to memory a lot.But unfortunately, it is very time consuming on my Pentium 4 (2.8GHz 512MB ) To speed up it someone advices me to a 64bit CPU. But do you agree with them? Thanks
Report
Re: Using a 64bit CPU... Posted by zibadian on 10 Jun 2006 at 11:16 PM
: I wrote a Delphi program in which we need to access to memory a lot.But unfortunately, it is very time consuming on my Pentium 4 (2.8GHz 512MB ) To speed up it someone advices me to a 64bit CPU. But do you agree with them? Thanks
:
That won't help, because your program is probably getting slow due to the latency (http://en.wikipedia.org/wiki/RAM_latency) to get its data from the memory. The best way to tackly this problem is to design another algorithm, which doesn't need to access the memory so much.
Report
Re: Using a 64bit CPU... Posted by hadipardis on 11 Jun 2006 at 2:41 AM
: : I wrote a Delphi program in which we need to access to memory a lot.But unfortunately, it is very time consuming on my Pentium 4 (2.8GHz 512MB ) To speed up it someone advices me to a 64bit CPU. But do you agree with them? Thanks
: :
: That won't help, because your program is probably getting slow due to the latency (http://en.wikipedia.org/wiki/RAM_latency) to get its data from the memory. The best way to tackly this problem is to design another algorithm, which doesn't need to access the memory so much.
:
Thanks. You are right. But please consider the following codes:
//Code #1
var M,N:array of array of byte;
 T:integer;
 ...
begin
 SetLength(M,640,640);
 SetLength(N,640,640);

 //Fill each array with some data
 FillMatrix(M);
 FillMatrix(N);

 T:=Gettickcount;
 //Do some operations with M
  Operate(M);
 
//Do some operations with N
  Operate(N);
 
  showmessage(inttostr(Gettickcount-T)); // T=800 msec
end;

In the above code, the whole process takes about 800msec. Intresting is that if I change Operate(N) to Operate(M), the whole process takes about 650msec !!! In his case we have the following code:
//Code #1
var M,N:array of array of byte;
 T:integer;
 ...
begin
 SetLength(M,640,640);
 SetLength(N,640,640);

 //Fill each array with some data
 FillMatrix(M);
 FillMatrix(N);

 T:=Gettickcount;
 //Do some operations with M
  Operate(M);
 
//Do some operations with M
  Operate(M);
 
  showmessage(inttostr(Gettickcount-T)); // T=650 msec
end;

But I am wondering why this happen?!! Do you know its reason? I have another question too. Please consider the following codes:
 //code 3
 var i,t:integer;
 ...
 t:=i;

 //code 4
 var t:integer;
 M:array[0..20] of array[0..20] of integer;
 ...
 t:=M[10,10];

Which one is faster? (Code 3 or Code 4)
Report
Re: Using a 64bit CPU... Posted by zibadian on 11 Jun 2006 at 3:35 AM
: : : I wrote a Delphi program in which we need to access to memory a lot.But unfortunately, it is very time consuming on my Pentium 4 (2.8GHz 512MB ) To speed up it someone advices me to a 64bit CPU. But do you agree with them? Thanks
: : :
: : That won't help, because your program is probably getting slow due to the latency (http://en.wikipedia.org/wiki/RAM_latency) to get its data from the memory. The best way to tackly this problem is to design another algorithm, which doesn't need to access the memory so much.
: :
: Thanks. You are right. But please consider the following codes:
:
: //Code #1
: var M,N:array of array of byte;
:  T:integer;
:  ...
: begin
:  SetLength(M,640,640);
:  SetLength(N,640,640);
: 
:  //Fill each array with some data
:  FillMatrix(M);
:  FillMatrix(N);
: 
:  T:=Gettickcount;
:  //Do some operations with M
:   Operate(M);
:  
: //Do some operations with N
:   Operate(N);
:  
:   showmessage(inttostr(Gettickcount-T)); // T=800 msec
: end;
: 

: In the above code, the whole process takes about 800msec. Intresting is that if I change Operate(N) to Operate(M), the whole process takes about 650msec !!! In his case we have the following code:
:
: //Code #1
: var M,N:array of array of byte;
:  T:integer;
:  ...
: begin
:  SetLength(M,640,640);
:  SetLength(N,640,640);
: 
:  //Fill each array with some data
:  FillMatrix(M);
:  FillMatrix(N);
: 
:  T:=Gettickcount;
:  //Do some operations with M
:   Operate(M);
:  
: //Do some operations with M
:   Operate(M);
:  
:   showmessage(inttostr(Gettickcount-T)); // T=650 msec
: end;
: 

: But I am wondering why this happen?!! Do you know its reason? I have another question too. Please consider the following codes:
:
:  //code 3
:  var i,t:integer;
:  ...
:  t:=i;
: 

:
:  //code 4
:  var t:integer;
:  M:array[0..20] of array[0..20] of integer;
:  ...
:  t:=M[10,10];
: 

: Which one is faster? (Code 3 or Code 4)
:
I don't know the answer to the first question, but it might have to do with the L1 cache or with the optimalization of the compiler.
The answer to your second question is: Code 3. Because in Code 4 the compiler needs to calculate the memory location based on the indexes. The assignment itself is equally fast.
Report
Re: Using a 64bit CPU... Posted by IDK on 11 Jun 2006 at 6:55 AM
: : : : I wrote a Delphi program in which we need to access to memory a lot.But unfortunately, it is very time consuming on my Pentium 4 (2.8GHz 512MB ) To speed up it someone advices me to a 64bit CPU. But do you agree with them? Thanks
: : : :
: : : That won't help, because your program is probably getting slow due to the latency (http://en.wikipedia.org/wiki/RAM_latency) to get its data from the memory. The best way to tackly this problem is to design another algorithm, which doesn't need to access the memory so much.
: : :
: : Thanks. You are right. But please consider the following codes:
: :
: : //Code #1
: : var M,N:array of array of byte;
: :  T:integer;
: :  ...
: : begin
: :  SetLength(M,640,640);
: :  SetLength(N,640,640);
: : 
: :  //Fill each array with some data
: :  FillMatrix(M);
: :  FillMatrix(N);
: : 
: :  T:=Gettickcount;
: :  //Do some operations with M
: :   Operate(M);
: :  
: : //Do some operations with N
: :   Operate(N);
: :  
: :   showmessage(inttostr(Gettickcount-T)); // T=800 msec
: : end;
: : 

: : In the above code, the whole process takes about 800msec. Intresting is that if I change Operate(N) to Operate(M), the whole process takes about 650msec !!! In his case we have the following code:

It's becouse of the cache. The computer transparently loads ram memmory into cache that's a lot faster, but smaller than ram.

I would recomend optimising operate.



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.