Example #1
0
 public static void cscmm(Transpose TransA, int m, int n, int k,
                          double alpha,
                          double[] val, int offsetval,
                          int[] indx, int offsetindx,
                          int[] pntrb, int offsetpntrb,
                          //int[] pntre, int offsetpntre,
                          double[] b, int offsetb, int ldb,
                          double beta,
                          double[] c, int offsetc, int ldc)
 {
     Provider.dcscmm(TransA, m, n, k, alpha, val, offsetval, indx, offsetindx, pntrb, offsetpntrb, b, offsetb, ldb, beta, c, offsetc, ldc);
 }