次の方法で共有


ScriptIntrinsicBLAS.SGEMM メソッド

定義

SGEMM は行列行列演算 C := alpha*op(A)op(B) + betaC のいずれかを実行します。op(X) は op(X) = X または 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

パラメーター

TransA
Int32

行列 A に適用される転置の型。

TransB
Int32

行列 B に適用される転置の型。

alpha
Single

スカラー アルファ。

A
Allocation

入力の割り当てには、サポートされている要素の種類 Element#F32である行列 A が含まれています。

B
Allocation

入力の割り当てには、サポートされている要素の種類 Element#F32であるマトリックス B が含まれています。

beta
Single

スカラー ベータ。

C
Allocation

入力の割り当てには、サポートされている要素の種類 Element#F32であるマトリックス C が含まれています。

属性

注釈

SGEMM は行列行列演算 C := alpha*op(A)*op(B) + beta*C のいずれかを実行します。op(X) は op(X) = X または op(X) = X**T のいずれかです。

詳細: http://www.netlib.org/lapack/explore-html/d4/de2/sgemm_8f.html

の Java ドキュメントandroid.renderscript.ScriptIntrinsicBLAS.SGEMM(int, int, float, android.renderscript.Allocation, android.renderscript.Allocation, float, android.renderscript.Allocation)

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象