printf("\n");
}
-mylong *matrix_multiply(gf_t *gf, mylong *m1, mylong *m2, int r1, int c1, int r2, int c2, int w)
+mylong *matrix_multiply(gf_t *gf, mylong *m1, mylong *m2, int r1, int c1, int r2, int c2, int w, int iii)
{
mylong *product;
- int i, j, k;
+ int i=iii, j, k;
product = (mylong *) malloc(sizeof(mylong)*r1*c2);
for (i = 0; i < r1*c2; i++) product[i] = 0;
// sleep(2);
start = std::chrono::system_clock::now();
for(int i=0;i<1000;i++) {
- float tt=i;
- tt=t;
- int tt2=tt;
- matS2=matrix_multiply(&gf, matInvGs, matCs, tt2, tt2, tt2, len, w);
+
+ matS2=matrix_multiply(&gf, matInvGs, matCs, t, t, t, len, w, i);
}
end = std::chrono::system_clock::now();