My question is regarding types/kinds of application improvements. I would like to improve my thread speed(I can not improve thread's complexity). My question is if instead of integer/longint as parameters to functions I will use byte as type will this change/improve my speed?
Instead of sending arrays, sending pointers to these arrays would this technique improve my speed?
What other tricks can I use to improve my thread's speed(except complexity)
The above code it is a simplification of what I use.
Type TArray = array of integer;
Type PArray = ^TArray;
Procedure TMyThread.ProcessFunction(iNr:integer; vArray:PArray);
begin
vArray^[iNr-2]:=5;
//......
end;
Procedure TMyThread.Execute;
var vArray:TArray;
i,iNr:integer;
begin
Randomize;
While Not Terminated do
begin
iNr:=Random(240);
SetLength(vArray,iNr);
for i:=0 to iNr-1 do
vArray[i]:=i+2
ProcessFunction(iNr,@Array);
end;
end;
Is there any method to improve this?
TArrayalready is a reference. Your code can access the array out of bounds. You need to ask a real question with a concrete and realistic example. Asking about performance in such a nebulous way is pointless. – David Heffernan Jan 7 at 19:15Some people, when confronted with a problem, think “I know, I'll use threading.” Now they have two problems.– Wouter van Nifterick Jan 8 at 0:29