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;
}
+
int main(int argc, char **argv)
{
unsigned int w;
// sleep(2);
start = std::chrono::system_clock::now();
for(int i=0;i<1000;i++) {
- int volatile tt=t;
- matS2=matrix_multiply(&gf, matInvGs, matCs, tt, tt, tt, len, w);
+
+ matS2=matrix_multiply(&gf, matInvGs, matCs, t, t, t, len, w, i);
+
}
end = std::chrono::system_clock::now();
elapsed_seconds = end-start;