ScriptIntrinsicBLAS.CSYRK 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.
CSYRK performs one of the symmetric rank k operations C := alphaAAT + betaC or C := alphaATA + betaC
[Android.Runtime.Register("CSYRK", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Float2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void CSYRK (int Uplo, int Trans, Android.Renderscripts.Float2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Float2? beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("CSYRK", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Float2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.CSYRK : int * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation -> unit
Parameters
- Uplo
- Int32
Specifies whether the upper or lower triangular part of C is to be referenced.
- Trans
- Int32
The type of transpose applied to the operation.
- alpha
- Float2
The scalar alpha.
The input allocation contains matrix A, supported elements type Element#F32_2
.
- beta
- Float2
The scalar beta.
The input allocation contains matrix C, supported elements type Element#F32_2
.
- Attributes
Remarks
CSYRK performs one of the symmetric rank k operations C := alpha*A*A**T + beta*C or C := alpha*A**T*A + beta*C
Details: http://www.netlib.org/lapack/explore-html/d3/d6a/csyrk_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.