ScriptIntrinsicBLAS.SGER Method

Definition

SGER performs the rank 1 operation A := alphaxy**T + A

[Android.Runtime.Register("SGER", "(FLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void SGER (float alpha, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Allocation? Y, int incY, Android.Renderscripts.Allocation? A);
[<Android.Runtime.Register("SGER", "(FLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.SGER : single * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation -> unit

Parameters

alpha
Single

The scalar alpha.

X
Allocation

The input allocation contains vector x, supported elements type Element#F32.

incX
Int32

The increment for the elements of vector x, must be larger than zero.

Y
Allocation

The input allocation contains vector y, supported elements type Element#F32.

incY
Int32

The increment for the elements of vector y, must be larger than zero.

A
Allocation

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

Attributes

Remarks

SGER performs the rank 1 operation A := alpha*x*y**T + A

Details: http://www.netlib.org/lapack/explore-html/db/d5c/sger_8f.html

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