]> AND Private Git Repository - Cipher_code.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
aze
authorRaphaël Couturier <raphael.couturier@univ-fcomte.fr>
Mon, 24 Feb 2020 21:36:54 +0000 (22:36 +0100)
committerRaphaël Couturier <raphael.couturier@univ-fcomte.fr>
Mon, 24 Feb 2020 21:36:54 +0000 (22:36 +0100)
IDA_new/ida_gf65_paper3.cpp

index 678047b23b6975b2d8237e3ee1dea0275a6034ae..969244268d478f89ebddb14eced3718a5723da1c 100644 (file)
@@ -58,10 +58,10 @@ void display(mylong *mat, int r, int c) {
  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;
@@ -631,10 +631,8 @@ int main(int argc, char **argv)
 //  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();