ScriptIntrinsicBLAS.CGEMM Método

Definição

O CGEMM executa uma das operações de matriz C := alpha*op(A)op(B) + betaC em que op(X) é um de op(X) = X ou op(X) = XT ou op(X) = XH

[Android.Runtime.Register("CGEMM", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;Landroid/renderscript/Float2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void CGEMM(int TransA, int TransB, Android.Renderscripts.Float2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B, Android.Renderscripts.Float2? beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("CGEMM", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;Landroid/renderscript/Float2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.CGEMM : int * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation -> unit

Parâmetros

TransA
Int32

O tipo de transposição aplicado à matriz A.

TransB
Int32

O tipo de transposição aplicado à matriz B.

alpha
Float2

O alfa escalar.

A
Allocation

A alocação de entrada contém a matriz A, tipo Element#F32_2de elementos com suporte.

B
Allocation

A alocação de entrada contém a matriz B, tipo Element#F32_2de elementos com suporte.

beta
Float2

O beta escalar.

C
Allocation

A alocação de entrada contém matriz C, tipo Element#F32_2de elementos com suporte.

Atributos

Comentários

O CGEMM executa uma das operações de matriz C := alpha*op(A)*op(B) + beta*C em que op(X) é uma de op(X) = X ou op(X) = X**T ou op(X) = X**H

Detalhes: http://www.netlib.org/lapack/explore-html/d6/d5b/cgemm_8f.html

Documentação Java para android.renderscript.ScriptIntrinsicBLAS.CGEMM(int, int, android.renderscript.Float2, android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Float2, android.renderscript.Allocation).

Partes desta página são modificações baseadas no trabalho criado e compartilhado pelo Android Open Source Project e usadas de acordo com os termos descritos na Licença de Atribuição Creative Commons 2.5.

Aplica-se a