Matrix.BlockInit Method

Overload List

#SignatureDescription
1procedure BlockInit;Initializes block processing.
2procedure BlockInit(const Src: TMtxVecBase);Initializes block processing.
3procedure BlockInit(const Src: TMtxVecBase; ABlockSize: Integer);Initializes block processing.
4procedure BlockInit(ABlockSize: Integer);

Overload 1: procedure BlockInit;

Initializes block processing.

Result: stored in self (calling object)

Remarks:

Initializes block processing. Because the size of the CPU cache is limited, significant performance gains can be obtained by splitting long vectors in to a series of short ones, which can all fit in the CPU cache entirely. The BlockInit method is to be used together with Matrix.BlockNext and methods to initialize a block processing while loop. BlockInit will call Matrix.SetSubRange to obtain subrange of the data in TVec. The Matrix.Length of the subranged Matrix is determined by the global Math387.MtxVecBlockSize variable declared in Math387 unit. Default value of MtxVecBlockSize is preset to 800 Matrix elements for double precision and 1600 elements for single precision. BlockInit supports nested calls and from witihin a blocked while loop you can call procedures and functions which are also blocked. If you use block processing, typical performance gains will range from 2 to a maximum of 6. Block processing can not be used, or it is difficult to apply, in cases where Matrix elements are not independent of each other. The block processing while loop must be written like this:

a.BlockInit;
while not A.BlockEnd do
begin
  // .... user defined function
a.BlockNext.
end;
Examples
procedure ParetoPDF(const X: Matrix; a, b: double;var Res: Matrix); overload;
begin
    Res.Size(X);
    Res.Power(X,-(a+1));
    Res.Mul(Power(b,a)*a);;
end;
procedure ParetoPDF(const X: Matrix; a, b: double; var Res: Matrix); overload;
begin
    Res.Size(X);
    Res.BlockInit;
    X.BlockInit;
    while not X.BlockEnd do
    begin
        Res.Power(X,-(a+1));
        Res.Mul(Power(b,a)*a);
        Res.BlockNext;
        X.BlockNext;
    end;
end;
See Also: Matrix.BlockNext, Matrix.BlockEnd

Overload 2: procedure BlockInit(const Src: TMtxVecBase);

Initializes block processing.

#NameTypeDescription
1SrcTMtxVecBase

Result: stored in self (calling object)

Overload 3: procedure BlockInit(const Src: TMtxVecBase; ABlockSize: Integer);

Initializes block processing.

#NameTypeDescription
1SrcTMtxVecBase
2ABlockSizeInteger

Result: stored in self (calling object)

Remarks:

Block processing can be applied on possibly already subranged Src object. Src may not be freed or go out of scope until block processing loop has finished. There would be no error raised other than AV.

Overload 4: procedure BlockInit(ABlockSize: Integer);

#NameTypeDescription
1ABlockSizeInteger

Result: stored in self (calling object)