ScriptIntrinsicBLAS.SGEMM Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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.
L’allocation d’entrée contient la matrice A, type Element#F32
d’éléments pris en charge.
L’allocation d’entrée contient la matrice B, type Element#F32
d’éléments pris en charge.
- beta
- Single
Bêta scalaire.
L’allocation d’entrée contient la matrice C, type Element#F32
d’é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
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.