Partager via


ScriptIntrinsicBLAS.SGEMM Méthode

Définition

SGEMM effectue l’une des opérations matrice-matrice C := alpha*op(A)op(B) + bêtaC où op(X) est l’un des op(X) = X ou 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

Paramètres

TransA
Int32

Type de transposer appliqué à la matrice A.

TransB
Int32

Type de transposer appliqué à la matrice B.

alpha
Single

Alpha scalaire.

A
Allocation

L’allocation d’entrée contient la matrice A, type Element#F32d’éléments pris en charge.

B
Allocation

L’allocation d’entrée contient la matrice B, type Element#F32d’éléments pris en charge.

beta
Single

Bêta scalaire.

C
Allocation

L’allocation d’entrée contient la matrice C, type Element#F32d’éléments pris en charge.

Attributs

Remarques

SGEMM effectue l’une des opérations de matrice C := alpha*op(A)*op(B) + bêta*C où op(X) est l’un des op(X) = X ou op(X) = X**T

Détails : http://www.netlib.org/lapack/explore-html/d4/de2/sgemm_8f.html

Documentation Java pour android.renderscript.ScriptIntrinsicBLAS.SGEMM(int, int, float, android.renderscript.Allocation, android.renderscript.Allocation, float, android.renderscript.Allocation).

Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.

S’applique à