public static void csrmm(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.dcsrmm(TransA, m, n, k, alpha, val, offsetval, indx, offsetindx, pntrb, offsetpntrb, b, offsetb, ldb, beta, c, offsetc, ldc); }