ScriptIntrinsicBLAS.SSYRK 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.
SSYRK performs one of the symmetric rank k operations C := alphaAAT + betaC or C := alphaATA + betaC
[Android.Runtime.Register("SSYRK", "(IIFLandroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void SSYRK (int Uplo, int Trans, float alpha, Android.Renderscripts.Allocation? A, float beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("SSYRK", "(IIFLandroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.SSYRK : int * int * single * Android.Renderscripts.Allocation * single * 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
- Single
The scalar alpha.
The input allocation contains matrix A, supported elements type Element#F32
.
- beta
- Single
The scalar beta.
The input allocation contains matrix C, supported elements type Element#F32
.
- Attributes
Remarks
SSYRK 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/d0/d40/ssyrk_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.