ScriptIntrinsicBLAS.DGEMM 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.
DGEMM effectue l’une des opérations matrice-matrice C := alpha*op(A)op(B) + beta Cwhere op(X) is one of op(X) = X or op(X) = X**T
[Android.Runtime.Register("DGEMM", "(IIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void DGEMM(int TransA, int TransB, double alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B, double beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("DGEMM", "(IIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.DGEMM : int * int * double * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * double * 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
- Double
Alpha scalaire.
L’allocation d’entrée contient la matrice A, type Element#F64d’éléments pris en charge.
L’allocation d’entrée contient la matrice B, type Element#F64d’éléments pris en charge.
- beta
- Double
Bêta scalaire.
L’allocation d’entrée contient la matrice C, type Element#F64d’éléments pris en charge.
- Attributs
Remarques
DGEMM effectue l’une des opérations matrice-matrice C := alpha*op(A)*op(B) + beta*C where op(X) is one of op(X) = X or op(X) = X**T
Détails : http://www.netlib.org/lapack/explore-html/d7/d2b/dgemm_8f.html
Les parties de cette page sont des modifications basées sur le travail créé et partagé par Android Open Source et utilisées en fonction des termes décrits dans la Creative Commons 2.5 Attribution License.