Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function AddProduct(X: TOpenCLMatrix; Y: TOpenCLMatrix; Z: TOpenCLMatrix): clMatrix; | Computes X + Y*Z |
| 2 | function AddProduct(X: TOpenCLVector; Y: TOpenCLVector; Z: TOpenCLVector): clVector; | Computes X + Y*Z |
Overload 1: function AddProduct(X: TOpenCLMatrix; Y: TOpenCLMatrix; Z: TOpenCLMatrix): clMatrix;
Computes X + Y*Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | Y | TOpenCLMatrix | source TOpenCLMatrix |
| 3 | Z | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls clMatrix.AddProduct
Overload 2: function AddProduct(X: TOpenCLVector; Y: TOpenCLVector; Z: TOpenCLVector): clVector;
Computes X + Y*Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
| 2 | Y | TOpenCLVector | source TOpenCLVector |
| 3 | Z | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls clVector.AddProduct