コード例 #1
0
ファイル: axpy.cs プロジェクト: 0xCM/z0
 public static extern void cblas_caxpy(int n, ref ComplexF32 a, ref ComplexF32 x, int incx, ref ComplexF32 y, int incy);
コード例 #2
0
ファイル: gemm.cs プロジェクト: 0xCM/arrows
 public static extern void cblas_cgemm(BlasLayout Layout, BlasTrans TransA, BlasTrans TransB, int M, int N, int K,
                                       ref ComplexF32 alpha, ref ComplexF32 A, int lda, ref ComplexF32 B, int ldb, ref ComplexF32 beta, ref ComplexF32 C, int ldc);
コード例 #3
0
 public static extern ulong cblas_icamin(int n, ref ComplexF32 X, int incX);
コード例 #4
0
ファイル: nrm2.cs プロジェクト: 0xCM/z0
 public static extern float  cblas_scnrm2(int n, ref ComplexF32 X, int incX);