ScriptIntrinsicBLAS.ZGEMM Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
ZGEMM performs one of the matrix-matrix operations C := alpha*op(A)op(B) + betaC where op(X) is one of op(X) = X or op(X) = XT or op(X) = XH
[Android.Runtime.Register("ZGEMM", "(IILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;Landroid/renderscript/Double2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void ZGEMM (int TransA, int TransB, Android.Renderscripts.Double2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B, Android.Renderscripts.Double2? beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("ZGEMM", "(IILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;Landroid/renderscript/Double2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.ZGEMM : int * int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation -> unit
Parameters
- TransA
- Int32
The type of transpose applied to matrix A.
- TransB
- Int32
The type of transpose applied to matrix B.
- alpha
- Double2
The scalar alpha.
The input allocation contains matrix A, supported elements type Element#F64_2
.
The input allocation contains matrix B, supported elements type Element#F64_2
.
- beta
- Double2
The scalar beta.
The input allocation contains matrix C, supported elements type Element#F64_2
.
- Attributes
Remarks
ZGEMM performs one of the matrix-matrix operations C := alpha*op(A)*op(B) + beta*C where op(X) is one of op(X) = X or op(X) = X**T or op(X) = X**H
Details: http://www.netlib.org/lapack/explore-html/d7/d76/zgemm_8f.html
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.