ScriptIntrinsicBLAS.CSYMM 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.
CSYMM effectue l’une des opérations matrice-matrice C := alphaAB + bêtaC ou C := alphaBA + bêtaC
[Android.Runtime.Register("CSYMM", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;Landroid/renderscript/Float2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void CSYMM (int Side, int Uplo, Android.Renderscripts.Float2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B, Android.Renderscripts.Float2? beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("CSYMM", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;Landroid/renderscript/Float2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.CSYMM : int * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation -> unit
Paramètres
- Side
- Int32
Spécifie si la matrice symétrique A apparaît à gauche ou à droite.
- Uplo
- Int32
Spécifie si la partie triangulaire supérieure ou inférieure doit être référencée.
- alpha
- Float2
Alpha scalaire.
L’allocation d’entrée contient la matrice A, type Element#F32_2
d’éléments pris en charge.
L’allocation d’entrée contient la matrice B, type Element#F32_2
d’éléments pris en charge.
- beta
- Float2
Bêta scalaire.
L’allocation d’entrée contient la matrice C, type Element#F32_2
d’éléments pris en charge.
- Attributs
Remarques
CSYMM effectue l’une des opérations matrice-matrice C := alpha*A*B + beta*C ou C := alpha*B*A + beta*C
Détails : http://www.netlib.org/lapack/explore-html/db/d59/csymm_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.