Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Log2(X: TOpenCLMatrix): clMatrix; | Result = the Log2 function from the source and return the result |
| 2 | function Log2(X: TOpenCLValue): clValue; | Result = the Log2 function from the source and return the result |
| 3 | function Log2(X: TOpenCLVector): clVector; | Result = the Log2 function from the source and return the result |
Overload 1: function Log2(X: TOpenCLMatrix): clMatrix;
Compute the Log2 function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls clMatrix.Log2
Overload 2: function Log2(X: TOpenCLValue): clValue;
Compute the Log2 function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Remarks:
Internally calls clValue.Log2
Examples
var a,b: clValue;
begin
b.Copy(8);
a.Log2(b);
end;
Overload 3: function Log2(X: TOpenCLVector): clVector;
Compute the Log2 function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls clVector.Log2