ScriptIntrinsicBLAS.SGEMM Method

Definition

SGEMM 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) = X**T

[Android.Runtime.Register("SGEMM", "(IIFLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void SGEMM (int TransA, int TransB, float alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B, float beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("SGEMM", "(IIFLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.SGEMM : int * int * single * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * single * 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
Single

The scalar alpha.

A
Allocation

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

B
Allocation

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

beta
Single

The scalar beta.

C
Allocation

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

Attributes

Remarks

SGEMM 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

Details: http://www.netlib.org/lapack/explore-html/d4/de2/sgemm_8f.html

Java documentation for android.renderscript.ScriptIntrinsicBLAS.SGEMM(int, int, float, 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