Langue

ScriptIntrinsicBLAS.DGEMM Méthode

Définition

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.

A
Allocation

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

B
Allocation

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

beta
Double

Bêta scalaire.

C
Allocation

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

Java documentation pour android.renderscript.ScriptIntrinsicBLAS.DGEMM(int, int, double, android.renderscript.Allocation, android.renderscript.Allocation, double, android.renderscript.Allocation).

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.

S’applique à