ScriptIntrinsicBLAS.CHER2K Method

Definition

CHER2K performs one of the hermitian rank 2k operations C := alphaABH + conjg( alpha )BAH + betaC or C := alphaAH*B + conjg( alpha )*BHA + betaC

[Android.Runtime.Register("CHER2K", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void CHER2K (int Uplo, int Trans, Android.Renderscripts.Float2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B, float beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("CHER2K", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.CHER2K : int * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * 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
Float2

The scalar alpha.

A
Allocation

The input allocation contains matrix A, supported elements type Element#F32_2.

B
Allocation

The input allocation contains matrix B, supported elements type Element#F32_2.

beta
Single

The scalar beta.

C
Allocation

The input allocation contains matrix C, supported elements type Element#F32_2.

Attributes

Remarks

CHER2K performs one of the hermitian rank 2k operations C := alpha*A*B**H + conjg( alpha )*B*A**H + beta*C or C := alpha*A**H*B + conjg( alpha )*B**H*A + beta*C

Details: http://www.netlib.org/lapack/explore-html/d1/d82/cher2k_8f.html

Java documentation for android.renderscript.ScriptIntrinsicBLAS.CHER2K(int, int, android.renderscript.Float2, android.renderscript.Allocation, android.renderscript.Allocation, float, android.renderscript.Allocation).

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.

Applies to